ApiSchemas
IdentityAttributesTooLargeEncoded
One shape from the contract, as it appears on the wire.
Used by connections.authorize, sessions.create, sessions.send
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"IdentityAttributesTooLarge"
]
},
"bytes": {
"anyOf": [
{
"type": "number"
},
{
"type": "string",
"enum": [
"Infinity",
"-Infinity",
"NaN"
]
}
]
},
"limit": {
"anyOf": [
{
"type": "number"
},
{
"type": "string",
"enum": [
"Infinity",
"-Infinity",
"NaN"
]
}
]
}
},
"required": [
"_tag",
"bytes",
"limit"
],
"additionalProperties": false
}