summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/annotation-model/definitions/choiceSet.json
blob: aafb27bb260d95e1035a03248812f1d6268da7bd (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
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "choiceSet.json",
  "title": "Definitions: Choice.",
  "description": "Schemas in #/definitions detect or validate keys/objects used in describing Choice (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" ]
    },

    "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' (Section 3.2.7)",
       "type": "object",
       "properties":
       {
         "type":
         {
           "type": "string",
           "enum": ["Choice"]
         }
       },
            "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" }
        ]
    },

    "choiceOrSetDetected": {
      "$schema": "http://json-schema.org/draft-04/schema#",
      "title": "Detection: Choice or Set",
      "description": "True when object's type is one of Choice 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" ] }
           ]
    }

  }
}