codtracker-js/node_modules/mdn-data/api/inheritance.schema.json
2025-04-02 06:50:39 -04:00

29 lines
512 B
JSON

{
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"inherits": {
"oneOf": [
{
"type": "null"
},
{
"type": "string",
"minLength": 1
}
]
},
"implements": {
"minItems": 0,
"uniqueItems": true,
"items": {
"type": "string"
}
}
},
"required": ["inherits", "implements"]
}
}