Verifone · Schema

BaseAddressWithoutType

An Address following the convention of http://microformats.org/wiki/hcard

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
contact object
vfiSiteId string Address/Site identifier known as within Verifone internal systems.
storeNumber string Store Number or Client/Customer ID in Oracle
governmentOwned boolean Indicates whether the address is government-owned. E.g. Address can be in Sweden, but can be a US Embassy.
governmentCountry object
View JSON Schema on GitHub

JSON Schema

order-service-api-baseaddresswithouttype.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-baseaddresswithouttype.json",
  "title": "BaseAddressWithoutType",
  "description": "An Address following the convention of http://microformats.org/wiki/hcard",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/BaseAddress"
    }
  ],
  "properties": {
    "contact": {
      "$ref": "#/components/schemas/ContactType"
    },
    "vfiSiteId": {
      "maxLength": 50,
      "minLength": 1,
      "type": "string",
      "description": "Address/Site identifier known as within Verifone internal systems."
    },
    "storeNumber": {
      "type": "string",
      "description": "Store Number or Client/Customer ID in Oracle"
    },
    "governmentOwned": {
      "type": "boolean",
      "description": "Indicates whether the address is government-owned. E.g. Address can be in Sweden, but can be a US Embassy."
    },
    "governmentCountry": {
      "$ref": "#/components/schemas/CountryCode3Enum"
    }
  }
}