tor-browser

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

3.2.7-targSpecificResourceNoItems.json (1250B)


      1 {
      2    "$schema": "http://json-schema.org/draft-04/schema#",
      3    "id": "3.2.7-targSpecificResourceNoItems.json",
      4    "assertionType": "must",
      5    "expectedResult": "valid",
      6    "onUnexpectedResult" : "failAndContinue",
      7    "errorMessage": "An Specific Resource target cannot include an items key. items key is only valid with Choice or Set.",
      8    "title": "If a **Specific Resource Target** is a target, it does NOT have an **_items_ key** - [model 3.2.7](https://www.w3.org/TR/annotation-model/#choice-of-targets-and-targets)",
      9    "description": "True when no Specific Resource targets or when none of the Specific Resource targets include the items key. (Section 4)",
     10    "type": "object",
     11    "properties":
     12    {
     13        "target":
     14        {
     15           "allOf": [
     16                      { "not": { "$ref": "specificResource.json#/definitions/specificResourceWithItems" } },
     17                      { "items": { "not": { "$ref": "specificResource.json#/definitions/specificResourceWithItems" } } },
     18                      { "not": { "$ref": "specificResource.json#/definitions/itemSRWithItems" }  },
     19                      { "items": { "not": { "$ref": "specificResource.json#/definitions/itemSRWithItems" } } }
     20                     ]
     21         }
     22     }
     23 }