{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://jobdatapool.com/schemas/error.schema.json",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Standard error object emitted by API functions.",
  "additionalProperties": true,
  "properties": {
    "error": {
      "type": "string"
    }
  },
  "required": [
    "error"
  ]
}
