DocSpring · Schema

error_response

PDFDocument GenerationPDF TemplatesE-SignaturesFormsHTML to PDFDocument Automation

Properties

Name Type Description
status string
error string
View JSON Schema on GitHub

JSON Schema

error_response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/docspring/main/json-schema/error_response.json",
  "title": "error_response",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "error"
      ]
    },
    "error": {
      "type": "string"
    }
  },
  "required": [
    "status",
    "error"
  ],
  "additionalProperties": false
}