Atlassian · Schema

ProjectWithDataPolicy

Details about data policies for a project.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
dataPolicy object Data policy.
id integer The project ID.
View JSON Schema on GitHub

JSON Schema

atlassian-projectwithdatapolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectWithDataPolicy",
  "title": "ProjectWithDataPolicy",
  "additionalProperties": false,
  "description": "Details about data policies for a project.",
  "properties": {
    "dataPolicy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectDataPolicy"
        }
      ],
      "description": "Data policy.",
      "readOnly": true
    },
    "id": {
      "description": "The project ID.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    }
  },
  "type": "object"
}