ApiSchemas
MetadataFilterInvalidEncoded
One shape from the contract, as it appears on the wire.
Used by sessions.list
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"MetadataFilterInvalid"
]
},
"reason": {
"type": "string",
"enum": [
"too_many_keys",
"too_deep"
]
},
"limit": {
"anyOf": [
{
"type": "number"
},
{
"type": "string",
"enum": [
"Infinity",
"-Infinity",
"NaN"
]
}
]
}
},
"required": [
"_tag",
"reason",
"limit"
],
"additionalProperties": false
}