AARCHMRS Schema 2.7.4

↚ Home

Values.ValueRange object

This object define ranges of values.

object

Properties Type Description
_meta Meta

Metadata

See Meta for more information.
_type
Enum
Values.ValueRange
end Value

The maximum value of the range.

See Value for more information.
Examples
{
    "_type": "Values.Value", 
    "value": "'111'"
}
meaning Text

The meaning associated to this range in the context it is used.

See Text for more information.
start Value

The minimum value of the range.

See Value for more information.
Examples
{
    "_type": "Values.Value", 
    "value": "'011'"
}
Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.
Examples
{
    "_type": "Values.ValueRange", 
    "start": {
        "_type": "Values.Value", 
        "value": "'011'"
    }, 
    "end": {
        "_type": "Values.Value", 
        "value": "'111'"
    }, 
    "meaning": "A range of values from '011' to '111'"
}

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

{
  "info": [
    "This object define ranges of values."
  ],
  "properties": {
    "_meta": {
      "$ref": "../Meta.json",
      "info": [
        "Metadata"
      ]
    },
    "_type": {
      "enum": [
        "Values.ValueRange"
      ]
    },
    "meaning": {
      "$ref": "../Text.json",
      "info": [
        "The meaning associated to this range in the context it is used."
      ]
    },
    "start": {
      "info": [
        "The minimum value of the range."
      ],
      "$ref": "Value.json",
      "examples": [
        {
          "_type": "Values.Value",
          "value": "'011'"
        }
      ]
    },
    "end": {
      "info": [
        "The maximum value of the range."
      ],
      "$ref": "Value.json",
      "examples": [
        {
          "_type": "Values.Value",
          "value": "'111'"
        }
      ]
    }
  },
  "required": [
    "start",
    "end"
  ],
  "title": "ValueRange",
  "type": "object",
  "examples": [
    {
      "_type": "Values.ValueRange",
      "start": {
        "_type": "Values.Value",
        "value": "'011'"
      },
      "end": {
        "_type": "Values.Value",
        "value": "'111'"
      },
      "meaning": "A range of values from '011' to '111'"
    }
  ],
  "$schema": "http://json-schema.org/draft-04/schema#",
  "additionalProperties": false
}