{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "4.3.1-timeStateState.json",
    "assertionType": "may",
    "expectedResult": "valid",
    "onUnexpectedResult" : "passAndContinue",
    "errorMessage": "The description of a Specific Resource may include timeState State .",
    "title": "Implements **Specific Resource Time State** - [model 4.3.1](https://www.w3.org/TR/annotation-model/#time-state)",
    "description": "True when Annotation includes one or more Specific Resources, one or more of which includes a timeState State. (Section 4.3.1)",
    "type": "object",
    "anyOf":
     [
      { "properties":
         { "body":
            { "oneOf":
               [
                 { "type": "object",
                   "oneOf":
                    [
                      { "$ref": "#/definitions/stateSchema" },
                      { "$ref": "#/definitions/itemSchema" }
                    ]
                 },
                 { "type": "array",
                   "minItems": 1,
                   "not":
                    { "items":
                       { "not":
                          { "oneOf":
                             [
                               { "$ref": "#/definitions/stateSchema" },
                               { "$ref": "#/definitions/itemSchema" }
                             ]
                          }
                       }
                    }
                 }
               ]
            }
         },
         "required": [ "body" ]
      },
      { "properties":
         { "target":
            { "oneOf":
               [
                 { "type": "object",
                   "oneOf":
                    [
                      { "$ref": "#/definitions/stateSchema" },
                      { "$ref": "#/definitions/itemSchema" }
                    ]
                 },
                 { "type": "array",
                   "minItems": 1,
                   "not":
                    { "items":
                        { "not":
                           { "oneOf":
                              [
                                { "$ref": "#/definitions/stateSchema" },
                                { "$ref": "#/definitions/itemSchema" }
                              ]
                           }
                        }
                    }
                 }
               ]
            }
         },
     "required": [ "target" ]
       }
     ],
     "definitions":
      {
        "stateSchema":
         { "type": "object",
           "properties":
            { "state":
               { "oneOf":
                  [
                    { "type": "object",
                      "$ref": "specificResource.json#/definitions/timeStateDetected"
                    },
                    { "type": "array",
                      "minItems": 1,
                      "not":
                       { "items":
                          { "not": { "$ref": "specificResource.json#/definitions/timeStateDetected" } }
                       }
                    }
                  ]
               }
            },
            "required": [ "state" ]
         },

        "itemSchema":
         { "type": "object",
           "properties":
            { "items":
               { "type": "array",
                 "minItems": 1,
                 "not":
                  { "items":
                      { "not": { "$ref": "#/definitions/stateSchema" } }
                  }
               }
            },
            "required": [ "items" ]
         }
      }
}