Verifone · Schema

Opening Hours

An dictionary map of the different opening hours for an Entity

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
day object
times object
View JSON Schema on GitHub

JSON Schema

order-service-api-entityopeninghours.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-entityopeninghours.json",
  "title": "Opening Hours",
  "description": "An dictionary map of the different opening hours for an Entity",
  "type": "object",
  "properties": {
    "day": {
      "$ref": "#/components/schemas/DayOfWeekEnum"
    },
    "times": {
      "$ref": "#/components/schemas/EntityOpeningPeriod"
    }
  },
  "required": [
    "day",
    "times"
  ]
}