{
"title": "agent.InlineAgentWithFallbacks",
"description": "A validated [`InlineAgent`] with optional fallbacks (no description).",
"type": "object",
"$ref": "agent.InlineAgent",
"properties": {
"fallbacks": {
"description": "Fallback agents to try if the primary fails.",
"anyOf": [
{
"type": "array",
"items": {
"$ref": "agent.InlineAgent"
}
},
{
"type": "null"
}
],
"omitempty": true
}
}
}