Atlassian · Schema

Message

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
translation string
args array
View JSON Schema on GitHub

JSON Schema

atlassian-message-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Message",
  "title": "Message",
  "required": [
    "args"
  ],
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "translation": {
      "type": "string",
      "example": "example_value"
    },
    "args": {
      "type": "array",
      "items": {
        "oneOf": [
          {
            "type": "string"
          },
          {
            "type": "object",
            "additionalProperties": true
          }
        ]
      },
      "example": []
    }
  }
}