Atlassian · Schema

DetailedErrorCollection

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
details object Map of objects representing additional details for an error
errorMessages array The list of error messages produced by this operation. For example, "input parameter 'key' must be provided"
errors object The list of errors by parameter returned by the operation. For example,"projectKey": "Project keys must start with an uppercase letter, followed by one or more uppercase alphanumeric characters."
View JSON Schema on GitHub

JSON Schema

atlassian-detailederrorcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DetailedErrorCollection",
  "title": "DetailedErrorCollection",
  "additionalProperties": false,
  "properties": {
    "details": {
      "additionalProperties": {},
      "description": "Map of objects representing additional details for an error",
      "type": "object"
    },
    "errorMessages": {
      "description": "The list of error messages produced by this operation. For example, \"input parameter 'key' must be provided\"",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "errors": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "The list of errors by parameter returned by the operation. For example,\"projectKey\": \"Project keys must start with an uppercase letter, followed by one or more uppercase alphanumeric characters.\"",
      "type": "object"
    }
  },
  "type": "object"
}