tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

3.3.4-bodyAccessibility.json (1846B)


      1 {
      2    "$schema": "http://json-schema.org/draft-04/schema#",
      3    "id": "3.3.4-bodyAccessibility.json",
      4    "assertionType": "may",
      5    "expectedResult": "valid",
      6    "onUnexpectedResult" : "passAndContinue",
      7    "errorMessage": "The description of a Body may include accessibility key which has one or more values.",
      8    "title": "Implements **body _accessibility_ key** which has one or more values - [model 3.3.4](#https://www.w3.org/TR/annotation-model/#accessibility-of-content)",
      9    "description": "True when Annotation includes one or more Bodies, one or more of which include accessibility key which has one or more values. (Section 3.3.4)",
     10    "type": "object",
     11    "required": ["body"],
     12    "properties":
     13    {
     14        "body":
     15        {
     16           "oneOf": [
     17                      { "anyOf": [
     18                        { "$ref": "otherProperties.json#/definitions/accessibilityPropertyFound" },
     19                        { "$ref": "otherProperties.json#/definitions/itemAccessibilityPropertyFound" },
     20                        { "$ref": "otherProperties.json#/definitions/sourceAccessibilityPropertyFound" }
     21                        ]
     22                      },
     23                       { "not":
     24                         { "items":
     25                            { "not":
     26                               { "anyOf": [
     27                                  { "$ref": "otherProperties.json#/definitions/accessibilityPropertyFound" },
     28                                  { "$ref": "otherProperties.json#/definitions/itemAccessibilityPropertyFound" },
     29                                  { "$ref": "otherProperties.json#/definitions/sourceAccessibilityPropertyFound" }
     30                                 ]
     31                               }
     32                             }
     33                         }
     34                       }
     35 
     36                     ]
     37         }
     38     }
     39 }