summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/annotation-model/annotations/bodiesTargets/3.2.4-targNoTypeTextualBody.json
blob: 03c6ab210c7613d20a5cc2557b1dcaf82fe7b860 (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
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "3.2.4-targNoTypeTextualBody.json",
    "assertionType": "must",
    "expectedResult": "valid",
    "onUnexpectedResult" : "failAndContinue",
    "errorMessage": "The description of a target resource MUST NOT include type key which includes the value of TextualBody.",
    "title": "Neither **target** Resources nor target Choice or Set items have a **_type_ key** which includes a value of **TextualBody** [model 3.2.4](https://www.w3.org/TR/annotation-model/#embedded-textual-body)",
    "description": "True when none of target(s), target source(s), target item(s) have a type key which includes a value of TextualBody. (Section 3.2.4)",
    "type": "object",
    "properties":
    {
        "target":
        {
           "allOf": [
                       { "not": { "$ref": "bodyTarget.json#/definitions/embeddedTextTypeIncludesTextualBody" } },
                       { "not": { "$ref": "bodyTarget.json#/definitions/itemEmbeddedTextTypeIncludesTextualBody" } },
                       {
                         "items":
                          { "not":
                             { "anyOf":
                              [
                                { "$ref": "bodyTarget.json#/definitions/embeddedTextTypeIncludesTextualBody" },
                                { "$ref": "bodyTarget.json#/definitions/itemEmbeddedTextTypeIncludesTextualBody" }
                              ]
                             }
                           }
                       }
                     ]
         }
     }
}