{
"$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"
}
}