ApiSchemas
VersionConflictEncoded
One shape from the contract, as it appears on the wire.
Used by agents.update
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"VersionConflict"
]
},
"agentId": {
"$ref": "#/components/schemas/AgentId"
},
"expected": {
"$ref": "#/components/schemas/AgentVersionNumber"
},
"actual": {
"$ref": "#/components/schemas/AgentVersionNumber"
}
},
"required": [
"_tag",
"agentId",
"expected",
"actual"
],
"additionalProperties": false
}