Atlassian · Schema

ErrorMessage

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
message string The error message.
View JSON Schema on GitHub

JSON Schema

atlassian-errormessage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorMessage",
  "title": "ErrorMessage",
  "additionalProperties": false,
  "example": {
    "message": "The request is not from a Connect app."
  },
  "properties": {
    "message": {
      "description": "The error message.",
      "type": "string"
    }
  },
  "required": [
    "message"
  ],
  "type": "object"
}