source: trip-planner-front/node_modules/mdn-data/css/selectors.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: 690 bytes
Line 
1{
2 "type": "object",
3 "additionalProperties": {
4 "type": "object",
5 "additionalProperties": false,
6 "properties": {
7 "syntax": {
8 "type": "string"
9 },
10 "groups": {
11 "type": "array",
12 "minitems": 1,
13 "uniqueItems": true,
14 "items": {
15 "$ref": "definitions.json#/groupList"
16 }
17 },
18 "status": {
19 "enum": [
20 "standard",
21 "nonstandard",
22 "experimental"
23 ]
24 },
25 "mdn_url": {
26 "type": "string",
27 "pattern": "^https://developer.mozilla.org/docs/Web/CSS/"
28 }
29 },
30 "required": [
31 "syntax",
32 "groups",
33 "status"
34 ]
35 }
36}
Note: See TracBrowser for help on using the repository browser.