AARCHMRS Schema 2.5.3

↚ Home

Index object

Defines a range of values.

object

Properties Type Description
_meta Meta
See Meta for more information.
_type
Enum
Index
end
  • integer

The maximum value of the range.

start
  • integer

The minimum value of the range.

Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.
Examples
{
    "_type": "Index", 
    "start": 3, 
    "end": 5
}

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

{
  "additionalProperties": false,
  "examples": [
    {
      "_type": "Index",
      "start": 3,
      "end": 5
    }
  ],
  "info": [
    "Defines a range of values."
  ],
  "properties": {
    "_meta": {
      "$ref": "Meta.json"
    },
    "_type": {
      "enum": [
        "Index"
      ]
    },
    "start": {
      "info": [
        "The minimum value of the range."
      ],
      "type": "integer"
    },
    "end": {
      "info": [
        "The maximum value of the range."
      ],
      "type": "integer"
    }
  },
  "required": [
    "start",
    "end"
  ],
  "title": "Index",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#"
}