Atlassian · Schema

WorkflowTransitionProperty

Details about the server Jira is running on.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the transition property.
key string The key of the transition property. Also known as the name of the transition property.
value string The value of the transition property.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowtransitionproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowTransitionProperty",
  "title": "WorkflowTransitionProperty",
  "additionalProperties": true,
  "description": "Details about the server Jira is running on.",
  "properties": {
    "id": {
      "description": "The ID of the transition property.",
      "readOnly": true,
      "type": "string"
    },
    "key": {
      "description": "The key of the transition property. Also known as the name of the transition property.",
      "readOnly": true,
      "type": "string"
    },
    "value": {
      "description": "The value of the transition property.",
      "type": "string"
    }
  },
  "required": [
    "value"
  ],
  "type": "object"
}