tor-browser

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

3.3.1-targCreated.json (1855B)


      1 {
      2    "$schema": "http://json-schema.org/draft-04/schema#",
      3    "id": "3.3.1-targCreated.json",
      4    "assertionType": "should",
      5    "expectedResult": "valid",
      6    "onUnexpectedResult" : "passAndContinue",
      7    "errorMessage": "The description of a target should include created key with a single value that is of format date-time.",
      8    "title": "Implements **target _created_ key** with a **single value** that is of **format date-time** [model 3.3.1](https://www.w3.org/TR/annotation-model/#lifecycle-information)",
      9    "description": "True when Annotation includes one or more targets, one or more of which include created key with a single value of date-time format. (Section 3.3.1)",
     10    "type": "object",
     11    "properties":
     12    {
     13        "target":
     14        {
     15           "oneOf": [
     16                      { "anyOf": [
     17                        { "$ref": "otherProperties.json#/definitions/createdPropertyFound" },
     18                        { "$ref": "otherProperties.json#/definitions/itemCreatedPropertyFound" },
     19                        { "$ref": "otherProperties.json#/definitions/sourceCreatedPropertyFound" }
     20                        ]
     21                      },
     22                       { "not":
     23                         { "items":
     24                            { "not":
     25                               { "anyOf": [
     26                                  { "$ref": "otherProperties.json#/definitions/createdPropertyFound" },
     27                                  { "$ref": "otherProperties.json#/definitions/itemCreatedPropertyFound" },
     28                                  { "$ref": "otherProperties.json#/definitions/sourceCreatedPropertyFound" }
     29                                 ]
     30                               }
     31                             }
     32                         }
     33                       }
     34 
     35                     ]
     36         }
     37     },
     38     "required": [ "target" ]
     39 }