AARCHMRS Schema 2.7.4

↚ Home

References.References object

A list of References, usually generated from an expanded RegisterArray.

object

Properties Type Description
_meta Meta
See Meta for more information.
_type
Enum
References.References
indexes
object { /\d+/ :
}

An object of integers containing the indexes of referenced registers within a parent RegisterArray as keys. Each has a Reference object containing the name of the child Register as a value.

Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.
Examples
{
    "_type": "References.References", 
    "indexes": {
        "0": {
            "_type": "References.Reference", 
            "ref": {
                "_type": "AST.Identifier", 
                "value": "REG"
            }
        }
    }
}

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

{
  "additionalProperties": false,
  "info": [
    "A list of References, usually generated from an expanded RegisterArray."
  ],
  "properties": {
    "_meta": {
      "$ref": "../Meta.json"
    },
    "_type": {
      "enum": [
        "References.References"
      ]
    },
    "indexes": {
      "type": "object",
      "info": [
        "An object of integers containing the indexes of referenced registers within a parent RegisterArray as keys. Each has a $(~References.Reference) object containing the name of the child Register as a value."
      ],
      "patternProperties": {
        "\\d+": {
          "$ref": "Reference.json"
        }
      }
    }
  },
  "examples": [
    {
      "_type": "References.References",
      "indexes": {
        "0": {
          "_type": "References.Reference",
          "ref": {
            "_type": "AST.Identifier",
            "value": "REG"
          }
        }
      }
    }
  ],
  "required": [
    "indexes"
  ],
  "title": "References",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#"
}