Polygon ID · Schema

AuthenticationConnection

IdentityVerifiable CredentialsZero-Knowledge ProofsSelf-Sovereign IdentityDecentralized IdentityBlockchainWeb3KYC

Properties

Name Type Description
id object
userID object
issuerID object
createdAt object
modifiedAt object
View JSON Schema on GitHub

JSON Schema

authentication-connection.json Raw ↑
{
  "type": "object",
  "required": [
    "id",
    "userID",
    "issuerID",
    "createdAt",
    "modifiedAt"
  ],
  "properties": {
    "id": {
      "$ref": "#/components/schemas/UUIDString"
    },
    "userID": {
      "$ref": "#/components/schemas/UUIDString"
    },
    "issuerID": {
      "$ref": "#/components/schemas/UUIDString"
    },
    "createdAt": {
      "$ref": "#/components/schemas/TimeUTC"
    },
    "modifiedAt": {
      "$ref": "#/components/schemas/TimeUTC"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AuthenticationConnection"
}