tor-browser

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

3.3.7-bodyVia.json (1234B)


      1 {
      2    "$schema": "http://json-schema.org/draft-04/schema#",
      3    "id": "3.3.7-bodyVia.json",
      4    "assertionType": "may",
      5    "expectedResult": "valid",
      6    "onUnexpectedResult" : "passAndContinue",
      7    "errorMessage": "The description of a body resource may include via key with one or more values that are each of format uri.",
      8    "title": "Implements **body _via_ key** which has one or more values, each of which is a **string of format uri** - [model 3.3.7](https://www.w3.org/TR/annotation-model/#other-identities)",
      9    "description": "True when Annotation includes one or more bodies, one or more of which include via key with one or more values that are each of format uri. (Section 3.3.7)",
     10    "type": "object",
     11    "required": ["body"],
     12    "properties":
     13    {
     14        "body":
     15        {
     16           "oneOf": [
     17                      { "$ref": "otherProperties.json#/definitions/viaPropertyFound" },
     18                       { "not":
     19                         { "items":
     20                            { "not":
     21                               { "$ref": "otherProperties.json#/definitions/viaPropertyFound" }
     22                             }
     23                         }
     24                       }
     25                     ]
     26         }
     27     }
     28 }