Jira · Schema

ErrorCollection

Error details returned by the API.

AgileIssue TrackingITSMProject ManagementService Management

Properties

Name Type Description
errorMessages array The list of error messages.
errors object Field-specific errors.
status integer The HTTP status code.
View JSON Schema on GitHub

JSON Schema

jira-cloud-platform-rest-error-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorCollection",
  "type": "object",
  "description": "Error details returned by the API.",
  "properties": {
    "errorMessages": {
      "type": "array",
      "description": "The list of error messages."
    },
    "errors": {
      "type": "object",
      "description": "Field-specific errors."
    },
    "status": {
      "type": "integer",
      "description": "The HTTP status code."
    }
  }
}