mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-24 20:31:58 +00:00
23 lines
507 B
JSON
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"
|
|
}
|
|
]
|
|
}
|