Verifone · Schema

Opening Period

The opening and closing hours.

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
start string
end string
View JSON Schema on GitHub

JSON Schema

order-service-api-entityopeningperiod.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-entityopeningperiod.json",
  "title": "Opening Period",
  "description": "The opening and closing hours.",
  "properties": {
    "start": {
      "pattern": "^\\d{2}:\\d{2}$",
      "type": "string"
    },
    "end": {
      "pattern": "^\\d{2}:\\d{2}$",
      "type": "string"
    }
  },
  "required": [
    "end",
    "start"
  ]
}