summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/annotation-model/annotations/bodiesTargets/3.2.4-bodyETBTypeTextualBody.json
blob: 9ccc041240bf3cae3b8a54e312113c3ca2dd8264 (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
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "3.2.4-bodyETBTypeTextualBody.json",
    "assertionType": "should",
    "expectedResult": "valid",
    "onUnexpectedResult" : "passAndContinue",
    "errorMessage": "The description of an Embedded Textual Body should include type key which includes the value of TextualBody.",
    "title": "Implements **Embedded Textual Body _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 Annotation includes one or more Embedded Textual Bodies (incl. as part of body Choice or Set), one or more of which includes a type key which includes a value of TextualBody. (Section 3.2.4)",
    "type": "object",
    "required": ["body"],
    "properties":
    {
        "body":
        {
           "oneOf": [
                      { "anyOf":
                        [
                          { "$ref": "bodyTarget.json#/definitions/embeddedTextTypeIncludesTextualBody" },
                          { "$ref": "bodyTarget.json#/definitions/itemEmbeddedTextTypeIncludesTextualBody" }
                        ]
                       },
                       { "not":
                         {
                           "items":
                            { "not":
                               { "anyOf":
                                [
                                  { "$ref": "bodyTarget.json#/definitions/embeddedTextTypeIncludesTextualBody" },
                                  { "$ref": "bodyTarget.json#/definitions/itemEmbeddedTextTypeIncludesTextualBody" }
                                ]
                               }
                             }
                         }
                       }
                     ]
         }
     }
}