Polygon ID · Schema

VerifiablePresentation

IdentityVerifiable CredentialsZero-Knowledge ProofsSelf-Sovereign IdentityDecentralized IdentityBlockchainWeb3KYC

Properties

Name Type Description
proofType string
schemaContext array
schemaType array
credentialSubject object
View JSON Schema on GitHub

JSON Schema

verifier-verifiable-presentation.json Raw ↑
{
  "type": "object",
  "required": [
    "proofType",
    "schemaContext",
    "schemaType",
    "credentialSubject"
  ],
  "properties": {
    "proofType": {
      "type": "string",
      "example": "VerifiablePresentation"
    },
    "schemaContext": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "https://www.w3.org/2018/credentials/v1"
      }
    },
    "schemaType": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "KYCAgeCredential"
      }
    },
    "credentialSubject": {
      "type": "object"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VerifiablePresentation"
}