Paytronix · JSON Structure

Server Api Enrollment Config Reply Structure

EnrollmentConfigReply schema from Paytronix Server API

Type: object Properties: 2
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

EnrollmentConfigReply is a JSON Structure definition published by Paytronix, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

result config

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-structure/server-api-enrollment-config-reply-structure.json",
  "name": "EnrollmentConfigReply",
  "description": "EnrollmentConfigReply schema from Paytronix Server API",
  "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"
              }
            }
          }
        }
      }
    }
  }
}