Atlassian · Schema

ErrorResponse

Standard error response.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
code integer The HTTP status code.
message string A human-readable error message.
errors array Detailed error information.
View JSON Schema on GitHub

JSON Schema

atlassian-admin-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Standard error response.",
  "properties": {
    "code": {
      "type": "integer",
      "description": "The HTTP status code."
    },
    "message": {
      "type": "string",
      "description": "A human-readable error message."
    },
    "errors": {
      "type": "array",
      "description": "Detailed error information."
    }
  }
}