Boolean flag that tells if the terminal should update at the first next maintenance call. If false, terminal will update on its configured reboot time.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-release-update-details-schema.json",
"title": "ReleaseUpdateDetails",
"description": "ReleaseUpdateDetails schema from Adyen API",
"type": "object",
"properties": {
"type": {
"default": "ReleaseUpdate",
"description": "Type of terminal action: Update Release.",
"enum": [
"ReleaseUpdate"
],
"type": "string"
},
"updateAtFirstMaintenanceCall": {
"description": "Boolean flag that tells if the terminal should update at the first next maintenance call. If false, terminal will update on its configured reboot time.",
"type": "boolean"
}
},
"additionalProperties": false
}