ApiSchemas
MetadataTooLargeEncoded
One shape from the contract, as it appears on the wire.
Used by sessions.annotate, sessions.create, sessions.send, sessions.updateMetadata
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"MetadataTooLarge"
]
},
"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
}