Paytronix · Schema

EnrollmentConfigReply

EnrollmentConfigReply schema from Paytronix Server API

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
result string
config object
View JSON Schema on GitHub

JSON Schema

server-api-enrollment-config-reply-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EnrollmentConfigReply",
  "description": "EnrollmentConfigReply schema from Paytronix Server API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/server-api-enrollment-config-reply-schema.json",
  "type": "object",
  "properties": {
    "result": {
      "type": "string",
      "example": "success"
    },
    "config": {
      "type": "object",
      "properties": {
        "fields": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string",
                "example": "email"
              },
              "type": {
                "type": "string",
                "example": "string"
              },
              "label": {
                "type": "string",
                "example": "Email Address"
              },
              "required": {
                "type": "boolean",
                "example": true
              },
              "pattern": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }
}