Files
languageservices/languageservice/src/context-providers/descriptionsSchema.json
T
Christopher Schleiden 2a3d63551f Rename folders
2023-02-22 15:52:40 -08:00

30 lines
603 B
JSON

{
"$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"
]
}
}
}