summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/annotation-model/annotations/bodiesTargets/3.3.5-bodyPurpose.json
blob: eb62c492c4e0d79a7cc2f7ae85b6579d04452d65 (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
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "3.3.5-bodyPurpose.json",
    "assertionType": "may",
    "expectedResult": "valid",
    "onUnexpectedResult" : "passAndContinue",
    "errorMessage": "The description of a Body may include purpose key with one or more values that are each drawn from model's list of Motivations.",
    "title": "Implements **body _purpose_ key** with one or more values are each drawn from **model's list of Motivations** [model 3.3.5](https://www.w3.org/TR/annotation-model/#motivation-and-purpose)",
    "description": "True when Annotation includes one or more Bodies, one or more of which include purpose key with one or more values that are each drawn from model's list of Motivations. (Section 3.3.5)",
    "type": "object",
    "required": ["body"],
    "properties":
    {
        "body":
        {
           "oneOf": [
                      { "anyOf": [
                        { "$ref": "otherProperties.json#/definitions/purposePropertyFound" },
                        { "$ref": "otherProperties.json#/definitions/itemPurposePropertyFound" }
                        ]
                      },
                       { "not":
                         { "items":
                            { "not":
                               { "anyOf": [
                                  { "$ref": "otherProperties.json#/definitions/purposePropertyFound" },
                                  { "$ref": "otherProperties.json#/definitions/itemPurposePropertyFound" }
                                 ]
                               }
                             }
                         }
                       }

                     ]
         }
     }
}