JobErrorDetail
Fields
fieldstringoptionalDotted path to the offending input, when applicable.
messagestringrequiredHuman-readable explanation of this detail.
typestringrequiredThe category of this detail entry.
JSON Schema
JobErrorDetail.json
{
"additionalProperties": false,
"properties": {
"field": {
"description": "Dotted path to the offending input, when applicable.",
"type": "string"
},
"message": {
"description": "Human-readable explanation of this detail.",
"type": "string"
},
"type": {
"description": "The category of this detail entry.",
"type": "string"
}
},
"required": [
"type",
"message"
],
"type": "object"
}