Mews · Schema

Credit card payment data

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
CreditCardId string Unique identifier of the payment card.
Transaction object The credit card payment transaction.
View JSON Schema on GitHub

JSON Schema

mews-paymentcreditcarddata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentCreditCardData",
  "title": "Credit card payment data",
  "type": "object",
  "properties": {
    "CreditCardId": {
      "type": "string",
      "description": "Unique identifier of the payment card.",
      "format": "uuid",
      "nullable": true
    },
    "Transaction": {
      "title": "Credit card transaction",
      "allOf": [
        {
          "$ref": "#/components/schemas/CreditCardTransaction"
        }
      ],
      "description": "The credit card payment transaction.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "PaymentCreditCardData"
}