ApiSchemas
TtlTooLongEncoded
One shape from the contract, as it appears on the wire.
Used by sessions.streamToken
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"TtlTooLong"
]
},
"requested": {
"anyOf": [
{
"type": "number"
},
{
"type": "string",
"enum": [
"Infinity",
"-Infinity",
"NaN"
]
}
]
},
"maximum": {
"anyOf": [
{
"type": "number"
},
{
"type": "string",
"enum": [
"Infinity",
"-Infinity",
"NaN"
]
}
]
}
},
"required": [
"_tag",
"requested",
"maximum"
],
"additionalProperties": false
}