API
← All schemas

JobErrorDetail

Fields

fieldstringoptional

Dotted path to the offending input, when applicable.

messagestringrequired

Human-readable explanation of this detail.

typestringrequired

The 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"
}