Atlassian · Schema

ProjectIds

A list of project IDs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
projectIds array The IDs of projects.
View JSON Schema on GitHub

JSON Schema

atlassian-projectids-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectIds",
  "title": "ProjectIds",
  "additionalProperties": false,
  "description": "A list of project IDs.",
  "properties": {
    "projectIds": {
      "description": "The IDs of projects.",
      "items": {
        "type": "string",
        "writeOnly": true
      },
      "type": "array",
      "writeOnly": true
    }
  },
  "required": [
    "projectIds"
  ],
  "type": "object"
}