A type to represent a string.
Properties | Type | Description |
---|---|---|
_meta | Meta |
See
Meta
for more information.
|
_type |
|
|
value◊ |
|
The string value. Examples
|
|
||
|
{
"_type": "Types.String",
"value": "A simple value"
}
{
"info": [
"A type to represent a string."
],
"examples": [
{
"_type": "Types.String",
"value": "A simple value"
}
],
"properties": {
"_meta": {
"$ref": "../Meta.json"
},
"_type": {
"enum": [
"Types.String"
]
},
"value": {
"info": [
"The string value."
],
"type": "string",
"examples": [
"A simple value."
]
}
},
"required": [
"value"
],
"title": "Types.String",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false
}