Atlassian · Schema

VersionMoveBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
after string The URL (self link) of the version after which to place the moved version. Cannot be used with `position`.
position string An absolute position in which to place the moved version. Cannot be used with `after`.
View JSON Schema on GitHub

JSON Schema

atlassian-versionmovebean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VersionMoveBean",
  "title": "VersionMoveBean",
  "additionalProperties": false,
  "properties": {
    "after": {
      "description": "The URL (self link) of the version after which to place the moved version. Cannot be used with `position`.",
      "format": "uri",
      "type": "string"
    },
    "position": {
      "description": "An absolute position in which to place the moved version. Cannot be used with `after`.",
      "enum": [
        "Earlier",
        "Later",
        "First",
        "Last"
      ],
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "version"
  }
}