summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/annotation-model/definitions/choiceSet.json
blob: ffe21a0f0e0d4c902b24fdc7fa872be895dfcd2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "choiceSet.json",
  "title": "Definitions: Choice, Composite, List, Independents.",
  "description": "Schemas in #/definitions detect or validate keys/objects used in describing Choice, Composite, List, Independents (Sections 3.2.7 and 3.2.8).",
  "definitions":
  {

    "itemsDetected" :
    {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Definition: items",
      "description": "True when the object includes items key and value of items is an array containing at least 1 item, which can be a specificResource, an externalWebResource, a uri, a textualBody or another choice/set (Sections 3.2.7 and 3.2.8).",
      "type": "object",
      "properties" :
      {
        "items" :
        {
          "type" : "array",
          "minItems": 1,
          "items": {
            "oneOf":
              [
              { "$ref": "specificResource.json#/definitions/specificeResourceDetected" },
              { "$ref": "bodyTarget.json#/definitions/externalWebResourceDetected" },
              { "$ref": "bodyTarget.json#/definitions/textualBodyFound" },
                { "$ref": "id.json#/definitions/stringUri" },
                { "allOf":
                  [
                  { "$ref" : "#/definitions/choiceOrSetTypeDefinition" },
                  { "$ref": "#/definitions/itemsDetected"  }
                  ]
                }
              ]
          }
        }
      },
      "required": [ "items" ]
    },

    "choiceTypeDefinition":
    {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Definition: Choice type",
      "description": "True when object has type key and object's type is 'Choice' (Section 3.2.7)",
      "type": "object",
      "properties":
      {
        "type":
        {
          "type": "string",
          "enum": ["Choice"]
        }
      },
      "required": [ "type" ]
    },

    "compositeTypeDefinition":
    {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Definition: Composite type",
      "description": "True when object has type key and object's type is 'Composite' (Section 3.2.7)",
      "type": "object",
      "properties":
      {
        "type":
        {
          "type": "string",
          "enum": ["Composite"]
        }
      },
      "required": [ "type" ]
    },

    "listTypeDefinition":
    {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Definition: List type",
      "description": "True when object has type key and object's type is 'List' (Section 3.2.7)",
      "type": "object",
      "properties":
      {
        "type":
        {
          "type": "string",
          "enum": ["List"]
        }
      },
      "required": [ "type" ]
    },

    "independentsTypeDefinition":
    {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Definition: Independents type",
      "description": "True when object has type key and object's type is 'Independents' (Section 3.2.7)",
      "type": "object",
      "properties":
      {
        "type":
        {
          "type": "string",
          "enum": ["Independents"]
        }
      },
      "required": [ "type" ]
    },

    "choiceOrSetTypeDefinition":
    {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Definition: Choice or Set type",
      "description": "True when object has type key and object's type is any of 'Choice', 'Composite', 'List', 'Independents' (Section 3.2.7)",
      "type": "object",
      "properties":
      {
        "type":
        {
          "type": "string",
          "enum": ["Choice", "Composite", "List", "Independents"]
        }
      },
      "required": [ "type" ]
    },

    "choiceDetected": {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Detection: Choice",
      "description": "True when object's type is 'Choice' and the object has an items array (Section 3.2.7)",
      "type": "object",
      "allOf":
        [
        { "$ref": "#/definitions/choiceTypeDefinition" },
        { "$ref": "#/definitions/itemsDetected" }
        ]
    },

    "compositeDetected": {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Detection: Composite",
      "description": "True when object's type is 'Composite' and the object has an items array (Section 3.2.8)",
      "type": "object",
      "allOf":
        [
        { "$ref": "#/definitions/compositeTypeDefinition" },
        { "$ref": "#/definitions/itemsDetected" }
        ]
    },

    "listDetected": {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Detection: List",
      "description": "True when object's type is 'List' and the object has an items array (Section 3.2.7)",
      "type": "object",
      "allOf":
        [
        { "$ref": "#/definitions/listTypeDefinition" },
        { "$ref": "#/definitions/itemsDetected" }
        ]
    },

    "independentsDetected": {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Detection: Independents",
      "description": "True when object's type is 'Independents' and the object has an items array (Section 3.2.7)",
      "type": "object",
      "allOf":
        [
        { "$ref": "#/definitions/independentsTypeDefinition" },
        { "$ref": "#/definitions/itemsDetected" }
        ]
    },

    "choiceOrSetDetected": {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Detection: Choice or Set",
      "description": "True when object's type is one of Choice, Composite, List or Independents and the object has an items array (Section 3.2.7)",
      "type": "object",
      "allOf":
        [
        { "$ref": "#/definitions/choiceOrSetTypeDefinition" },
        { "$ref": "#/definitions/itemsDetected" }
        ]
    },

    "choiceSetWithValue" :
    {
      "allOf":
        [
        { "$ref": "#/definitions/choiceOrSetDetected" },
        { "required": [ "value" ] }
        ]
    },

    "choiceSetWithSource" :
    {
      "allOf":
        [
        { "$ref": "#/definitions/choiceOrSetDetected" },
        { "required": [ "source" ] }
        ]
    },

    "choiceSetWithPurpose" :
    {
      "allOf":
        [
        { "$ref": "#/definitions/choiceOrSetDetected" },
        { "required": [ "purpose" ] }
        ]
    }

  }
}