Atlassian · Schema

FieldConfigurationSchemeProjects

Project list with assigned field configuration schema.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
fieldConfigurationScheme object
projectIds array The IDs of projects using the field configuration scheme.
View JSON Schema on GitHub

JSON Schema

atlassian-fieldconfigurationschemeprojects-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FieldConfigurationSchemeProjects",
  "title": "FieldConfigurationSchemeProjects",
  "additionalProperties": false,
  "description": "Project list with assigned field configuration schema.",
  "properties": {
    "fieldConfigurationScheme": {
      "$ref": "#/components/schemas/FieldConfigurationScheme"
    },
    "projectIds": {
      "description": "The IDs of projects using the field configuration scheme.",
      "items": {
        "description": "The IDs of projects using the field configuration scheme.",
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "projectIds"
  ],
  "type": "object"
}