Atlassian · Schema

StatusCreateRequest

Details of the statuses being created and their scope.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
scope object
statuses array Details of the statuses being created.
View JSON Schema on GitHub

JSON Schema

atlassian-statuscreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusCreateRequest",
  "title": "StatusCreateRequest",
  "additionalProperties": false,
  "description": "Details of the statuses being created and their scope.",
  "properties": {
    "scope": {
      "$ref": "#/components/schemas/StatusScope"
    },
    "statuses": {
      "description": "Details of the statuses being created.",
      "items": {
        "$ref": "#/components/schemas/StatusCreate"
      },
      "type": "array"
    }
  },
  "required": [
    "scope",
    "statuses"
  ],
  "type": "object"
}