tor-browser

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

4-targChoiceSetNoSource.json (970B)


      1 {
      2    "$schema": "http://json-schema.org/draft-04/schema#",
      3    "id": "4-targChoiceSetNoSource.json",
      4    "assertionType": "must",
      5    "expectedResult": "valid",
      6    "onUnexpectedResult" : "failAndContinue",
      7    "errorMessage": "A Choice or Set target cannot include a source key. source key is only valid with Specific Resources.",
      8    "title": "If a **Choice or Set** is a target, it does not have a **_source_ key** - [model 4](https://www.w3.org/TR/annotation-model/#specific-resources)",
      9    "description": "True when no Choice or Set targets or when none of the Choice or Set targets include the source key. (Section 4)",
     10    "type": "object",
     11    "properties":
     12    {
     13        "target":
     14        {
     15           "allOf": [
     16                      { "not": { "$ref": "choiceSet.json#/definitions/choiceSetWithSource" } },
     17                      { "items": { "not": { "$ref": "choiceSet.json#/definitions/choiceSetWithSource" } } }
     18                     ]
     19         }
     20     }
     21 }