Extensis · Schema

ErrorResponse

Standard error response from the Extensis Portfolio API.

Digital Asset ManagementFont ManagementCreative AssetsFont LicensingDesign WorkflowsDAM

Properties

Name Type Description
status string Status indicator, always 'error' for error responses.
code string Machine-readable error code.
message string Human-readable description of the error.
View JSON Schema on GitHub

JSON Schema

error-response.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/extensis/main/json-schema/error-response.json",
  "title": "ErrorResponse",
  "description": "Standard error response from the Extensis Portfolio API.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": ["error"],
      "description": "Status indicator, always 'error' for error responses."
    },
    "code": {
      "type": "string",
      "description": "Machine-readable error code."
    },
    "message": {
      "type": "string",
      "description": "Human-readable description of the error."
    }
  }
}