Sitefinity CMS · Schema

ErrorResponse

Error response

Content ManagementHeadless CMS.NETREST

Properties

Name Type Description
error object
View JSON Schema on GitHub

JSON Schema

sitefinity-cms-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Error response",
  "properties": {
    "error": {
      "type": "object",
      "properties": {
        "code": {
          "type": "string",
          "description": "Error code"
        },
        "message": {
          "type": "string",
          "description": "Human-readable error message"
        }
      }
    }
  }
}