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