monaco-yaml/test/fixtures/customMultipleSchemaSequences.json
2018-12-14 18:00:45 +08:00

23 lines
507 B
JSON

{
"schemaSequence": [
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Person object",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of this person"
},
"age": {
"type": "number",
"description": "The age of this person"
}
},
"required": ["name", "age"]
},
{
"$ref": "http://json.schemastore.org/bowerrc"
}
]
}