Atlassian · Schema

WorkflowReadRequest

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
projectAndIssueTypes array The list of projects and issue types to query.
workflowIds array The list of workflow IDs to query.
workflowNames array The list of workflow names to query.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowreadrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowReadRequest",
  "title": "WorkflowReadRequest",
  "additionalProperties": false,
  "properties": {
    "projectAndIssueTypes": {
      "description": "The list of projects and issue types to query.",
      "items": {
        "$ref": "#/components/schemas/ProjectAndIssueTypePair"
      },
      "type": "array"
    },
    "workflowIds": {
      "description": "The list of workflow IDs to query.",
      "items": {
        "description": "The list of workflow IDs to query.",
        "type": "string"
      },
      "type": "array"
    },
    "workflowNames": {
      "description": "The list of workflow names to query.",
      "items": {
        "description": "The list of workflow names to query.",
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}