Polygon ID · Schema

PaymentOption

IdentityVerifiable CredentialsZero-Knowledge ProofsSelf-Sovereign IdentityDecentralized IdentityBlockchainWeb3KYC

Properties

Name Type Description
id string
issuerDID string
name string
description string
paymentOptions object
modifiedAt object
createdAt object
View JSON Schema on GitHub

JSON Schema

payment-option.json Raw ↑
{
  "type": "object",
  "required": [
    "id",
    "issuerDID",
    "name",
    "description",
    "paymentOptions",
    "modifiedAt",
    "createdAt"
  ],
  "properties": {
    "id": {
      "type": "string",
      "x-go-type": "uuid.UUID",
      "x-go-type-import": {
        "name": "uuid",
        "path": "github.com/google/uuid"
      }
    },
    "issuerDID": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "paymentOptions": {
      "$ref": "#/components/schemas/PaymentOptionConfig"
    },
    "modifiedAt": {
      "$ref": "#/components/schemas/TimeUTC"
    },
    "createdAt": {
      "$ref": "#/components/schemas/TimeUTC"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PaymentOption"
}