Atlassian · Schema

SimpleUsage

Represents a usage of an entity by a project ID and related issue type IDs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypeIds array The issue type IDs for the usage.
projectId string The project ID for the usage.
View JSON Schema on GitHub

JSON Schema

atlassian-simpleusage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimpleUsage",
  "title": "SimpleUsage",
  "additionalProperties": false,
  "description": "Represents a usage of an entity by a project ID and related issue type IDs.",
  "properties": {
    "issueTypeIds": {
      "description": "The issue type IDs for the usage.",
      "items": {
        "description": "The issue type IDs for the usage.",
        "type": "string"
      },
      "type": "array"
    },
    "projectId": {
      "description": "The project ID for the usage.",
      "type": "string"
    }
  },
  "required": [
    "issueTypeIds",
    "projectId"
  ],
  "type": "object"
}