ApiSchemas
PromotionUnresolvedEncoded
One shape from the contract, as it appears on the wire.
Used by agents.promote
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"PromotionUnresolved"
]
},
"to": {
"type": "string"
},
"connections": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MissingReference"
}
},
"providers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MissingReference"
}
},
"secrets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MissingReference"
}
}
},
"required": [
"_tag",
"to",
"connections",
"providers",
"secrets"
],
"additionalProperties": false
}