diff options
Diffstat (limited to 'vanilla/node_modules/mdn-data/css/functions.schema.json')
| -rw-r--r-- | vanilla/node_modules/mdn-data/css/functions.schema.json | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/vanilla/node_modules/mdn-data/css/functions.schema.json b/vanilla/node_modules/mdn-data/css/functions.schema.json new file mode 100644 index 0000000..26fd45c --- /dev/null +++ b/vanilla/node_modules/mdn-data/css/functions.schema.json @@ -0,0 +1,45 @@ +{ + "definitions": { + "status": { + "enum": [ + "standard", + "nonstandard", + "experimental", + "obsolete" + ] + }, + "mdn_url": { + "type": "string", + "pattern": "^https://developer.mozilla.org/docs/" + } + }, + "type": "object", + "additionalProperties": { + "type": "object", + "additionalProperties": false, + "required": [ + "syntax", + "groups", + "status" + ], + "properties": { + "syntax": { + "type": "string" + }, + "groups": { + "type": "array", + "minitems": 1, + "uniqueItems": true, + "items": { + "$ref": "definitions.json#/groupList" + } + }, + "status": { + "$ref": "#/definitions/status" + }, + "mdn_url": { + "$ref": "#/definitions/mdn_url" + } + } + } +} |
