AARCHMRS Schema 2.7.4

↚ Home

Instances.Instanceset object

The Instanceset model is used to contain Instances.Instance models while checking for duplications.

object

Properties Type Description
_meta Meta

Metadata

See Meta for more information.
_type
Enum
Instances.Instanceset
values
array [
Instance
]

An array of Instances.Instance where each element must be unique.

Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.

Schema http://json-schema.org/draft-04/schema#

{
  "title": "Instanceset",
  "info": [
    "The Instanceset model is used to contain Instances.Instance models while checking for duplications."
  ],
  "properties": {
    "_meta": {
      "$ref": "../Meta.json",
      "info": [
        "Metadata"
      ]
    },
    "_type": {
      "enum": [
        "Instances.Instanceset"
      ]
    },
    "values": {
      "type": "array",
      "info": [
        "An array of Instances.Instance where each element must be unique."
      ],
      "items": {
        "$ref": "Instance.json"
      }
    }
  },
  "required": [
    "values"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "additionalProperties": false
}