A list of References, usually generated from an expanded RegisterArray.
| Properties | Type | Description |
|---|---|---|
| _meta | Meta |
See
Meta
for more information.
|
| _type |
|
|
| 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. |
|
||
|
||
{
"_type": "References.References",
"indexes": {
"0": {
"_type": "References.Reference",
"ref": {
"_type": "AST.Identifier",
"value": "REG"
}
}
}
}
{
"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#"
}