Polygon ID · Schema

ScopeRequest

IdentityVerifiable CredentialsZero-Knowledge ProofsSelf-Sovereign IdentityDecentralized IdentityBlockchainWeb3KYC

Properties

Name Type Description
id integer
circuitId string
query object
transactionData object
params object
View JSON Schema on GitHub

JSON Schema

verifier-scope-request.json Raw ↑
{
  "type": "object",
  "required": [
    "circuitId",
    "query",
    "id"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "format": "uint32",
      "example": 1
    },
    "circuitId": {
      "type": "string",
      "example": "credentialAtomicQuerySigV2"
    },
    "query": {
      "$ref": "#/components/schemas/Query"
    },
    "transactionData": {
      "$ref": "#/components/schemas/TransactionData"
    },
    "params": {
      "$ref": "#/components/schemas/ScopeParams"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ScopeRequest"
}