Files
languageservices/languageservice/src/context-providers/descriptionsSchema.json
T

30 lines
603 B
JSON
Raw Normal View History

2023-01-10 17:44:48 -08:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"$comment": "Ignore this, just to make VS Code happy"
}
},
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"versions": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"required": [
"description"
]
}
}
}