Atlassian · Schema

OperationMessage

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
message string The human-readable message that describes the result.
statusCode integer The status code of the response.
View JSON Schema on GitHub

JSON Schema

atlassian-operationmessage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OperationMessage",
  "title": "OperationMessage",
  "additionalProperties": false,
  "example": {
    "message": "An example message.",
    "statusCode": 200
  },
  "properties": {
    "message": {
      "description": "The human-readable message that describes the result.",
      "type": "string"
    },
    "statusCode": {
      "description": "The status code of the response.",
      "type": "integer"
    }
  },
  "required": [
    "message",
    "statusCode"
  ],
  "type": "object"
}