Adyen · Schema

ReleaseUpdateDetails

PaymentsFinancial ServicesFintech

Properties

Name Type Description
type string Type of terminal action: Update Release.
updateAtFirstMaintenanceCall boolean 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.
View JSON Schema on GitHub

JSON Schema

adyen-releaseupdatedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReleaseUpdateDetails",
  "title": "ReleaseUpdateDetails",
  "additionalProperties": false,
  "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"
    }
  },
  "type": "object"
}