AARCHMRS Schema 2.5.3

↚ Home

AST.Integer object

An AST model wrapper for an integer.

object

Properties Type Description
_meta Meta
See Meta for more information.
_type
Enum
AST.Integer
value
  • integer

The numeric value of the int.

Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.
Examples
{
    "_type": "AST.Integer", 
    "value": 8
}

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

{
  "info": [
    "An AST model wrapper for an integer."
  ],
  "examples": [
    {
      "_type": "AST.Integer",
      "value": 8
    }
  ],
  "properties": {
    "_meta": {
      "$ref": "../Meta.json"
    },
    "_type": {
      "enum": [
        "AST.Integer"
      ]
    },
    "value": {
      "info": [
        "The numeric value of the int."
      ],
      "type": "integer"
    }
  },
  "required": [
    "value"
  ],
  "title": "Integer",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "additionalProperties": false
}