An AST model wrapper for a real number.
Properties | Type | Description |
---|---|---|
_meta | Meta |
See
Meta
for more information.
|
_type |
|
|
value◊ |
|
The numeric value of the real. |
|
||
|
{
"_type": "AST.Real",
"value": 8.2
}
{
"info": [
"An AST model wrapper for a real number."
],
"examples": [
{
"_type": "AST.Real",
"value": 8.2
}
],
"properties": {
"_meta": {
"$ref": "../Meta.json"
},
"_type": {
"enum": [
"AST.Real"
]
},
"value": {
"info": [
"The numeric value of the real."
],
"type": "number"
}
},
"required": [
"value"
],
"title": "Real",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false
}