1{ 2 "$id": "test", 3 "$schema": "http://json-schema.org/draft-07/schema#", 4 "description": "Test description", 5 "properties": { 6 "test": { 7 "description": "Sample property", 8 "examples": [ 9 "hello", 10 "world" 11 ], 12 "type": "string" 13 } 14 }, 15 "required": [ 16 "test" 17 ], 18 "type": "object" 19} 20