Atlassian · Schema

WorkflowElementReference

A reference to the location of the error. This will be null if the error does not refer to a specific element.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
propertyKey string A property key.
ruleId string A rule ID.
statusMappingReference object
statusReference string A status reference.
transitionId string A transition ID.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowelementreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowElementReference",
  "title": "WorkflowElementReference",
  "additionalProperties": false,
  "description": "A reference to the location of the error. This will be null if the error does not refer to a specific element.",
  "properties": {
    "propertyKey": {
      "description": "A property key.",
      "type": "string"
    },
    "ruleId": {
      "description": "A rule ID.",
      "type": "string"
    },
    "statusMappingReference": {
      "$ref": "#/components/schemas/ProjectAndIssueTypePair"
    },
    "statusReference": {
      "description": "A status reference.",
      "type": "string"
    },
    "transitionId": {
      "description": "A transition ID.",
      "type": "string"
    }
  },
  "type": "object"
}