Verifone · Schema

ReplacedDevice

A device being replaced under a replacement agreement.

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
serialNumber string Serial number of the replaced device.
deviceModel string Model name of the replaced device.
View JSON Schema on GitHub

JSON Schema

order-service-api-replaceddevice.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-replaceddevice.json",
  "title": "ReplacedDevice",
  "description": "A device being replaced under a replacement agreement.",
  "type": "object",
  "required": [
    "serialNumber",
    "deviceModel"
  ],
  "properties": {
    "serialNumber": {
      "type": "string",
      "minLength": 1,
      "maxLength": 12,
      "description": "Serial number of the replaced device."
    },
    "deviceModel": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100,
      "description": "Model name of the replaced device."
    }
  }
}