source: trip-planner-front/node_modules/mdn-data/css/types.schema.json@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 622 bytes
Line 
1{
2 "type": "object",
3 "additionalProperties": {
4 "type": "object",
5 "additionalProperties": false,
6 "properties": {
7 "groups": {
8 "type": "array",
9 "minitems": 1,
10 "uniqueItems": true,
11 "items": {
12 "$ref": "definitions.json#/groupList"
13 }
14 },
15 "status": {
16 "enum": [
17 "standard",
18 "nonstandard",
19 "experimental"
20 ]
21 },
22 "mdn_url": {
23 "type": "string",
24 "pattern": "^https://developer.mozilla.org/docs/Web/CSS/"
25 }
26 },
27 "required": [
28 "groups",
29 "status"
30 ]
31 }
32}
Note: See TracBrowser for help on using the repository browser.