Atlassian · Schema

DocumentVersion

The current version details of this workflow scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The version UUID.
versionNumber integer The version number.
View JSON Schema on GitHub

JSON Schema

atlassian-documentversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DocumentVersion",
  "title": "DocumentVersion",
  "additionalProperties": false,
  "description": "The current version details of this workflow scheme.",
  "properties": {
    "id": {
      "description": "The version UUID.",
      "type": "string"
    },
    "versionNumber": {
      "description": "The version number.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "id",
    "versionNumber"
  ],
  "type": "object"
}