Adyen · Schema

ReleaseUpdateDetails

ReleaseUpdateDetails schema from Adyen API

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

management-release-update-details-schema.json Raw ↑
{
  "$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
}