diff options
Diffstat (limited to 'vanilla/node_modules/mdn-data/api/inheritance.schema.json')
| -rw-r--r-- | vanilla/node_modules/mdn-data/api/inheritance.schema.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vanilla/node_modules/mdn-data/api/inheritance.schema.json b/vanilla/node_modules/mdn-data/api/inheritance.schema.json new file mode 100644 index 0000000..706abbc --- /dev/null +++ b/vanilla/node_modules/mdn-data/api/inheritance.schema.json @@ -0,0 +1,31 @@ +{ + "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" + ] + } +} |
