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