Payload schema
errorstring
What the provisioning attempt reported.
hostnamestring
The hostname the attempt was for.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "What the provisioning attempt reported."
},
"hostname": {
"type": "string",
"description": "The hostname the attempt was for."
}
},
"required": [
"error",
"hostname"
]
}