ApiSchemas
SandboxStateInvalidEncoded
One shape from the contract, as it appears on the wire.
Used by sandboxes.release, sandboxes.resume, sandboxes.snapshot
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"SandboxStateInvalid"
]
},
"id": {
"$ref": "#/components/schemas/SandboxId"
},
"state": {
"type": "string"
},
"expected": {
"type": "string"
}
},
"required": [
"_tag",
"id",
"state",
"expected"
],
"additionalProperties": false
}