Atlassian · Schema

MoveFieldBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
after string The ID of the screen tab field after which to place the moved screen tab field. Required if `position` isn't provided.
position string The named position to which the screen tab field should be moved. Required if `after` isn't provided.
View JSON Schema on GitHub

JSON Schema

atlassian-movefieldbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MoveFieldBean",
  "title": "MoveFieldBean",
  "additionalProperties": false,
  "properties": {
    "after": {
      "description": "The ID of the screen tab field after which to place the moved screen tab field. Required if `position` isn't provided.",
      "format": "uri",
      "type": "string"
    },
    "position": {
      "description": "The named position to which the screen tab field should be moved. Required if `after` isn't provided.",
      "enum": [
        "Earlier",
        "Later",
        "First",
        "Last"
      ],
      "type": "string"
    }
  },
  "type": "object"
}