ApiSchemas
SubagentNotAllowedEncoded
One shape from the contract, as it appears on the wire.
Used by agents.create, agents.promote, agents.update, agents.upsert
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"SubagentNotAllowed"
]
},
"name": {
"type": "string"
},
"reason": {
"type": "string"
},
"limit": {
"anyOf": [
{
"type": "number"
},
{
"type": "string",
"enum": [
"Infinity",
"-Infinity",
"NaN"
]
}
]
}
},
"required": [
"_tag",
"name",
"reason"
],
"additionalProperties": false
}