Atlassian · Schema

WorkflowSchemeReadRequest

The workflow scheme read request body.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
projectIds array The list of project IDs to query.
workflowSchemeIds array The list of workflow scheme IDs to query.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowschemereadrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowSchemeReadRequest",
  "title": "WorkflowSchemeReadRequest",
  "additionalProperties": false,
  "description": "The workflow scheme read request body.",
  "properties": {
    "projectIds": {
      "description": "The list of project IDs to query.",
      "items": {
        "description": "The list of project IDs to query.",
        "nullable": true,
        "type": "string"
      },
      "nullable": true,
      "type": "array"
    },
    "workflowSchemeIds": {
      "description": "The list of workflow scheme IDs to query.",
      "items": {
        "description": "The list of workflow scheme IDs to query.",
        "nullable": true,
        "type": "string"
      },
      "nullable": true,
      "type": "array"
    }
  },
  "type": "object"
}