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