Polygon ID · Schema

StateTransaction

IdentityVerifiable CredentialsZero-Knowledge ProofsSelf-Sovereign IdentityDecentralized IdentityBlockchainWeb3KYC

Properties

Name Type Description
id integer
txID string
state string
publishDate object
status string
View JSON Schema on GitHub

JSON Schema

state-transaction.json Raw ↑
{
  "type": "object",
  "required": [
    "id",
    "txID",
    "state",
    "publishDate",
    "status"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "example": 1
    },
    "txID": {
      "type": "string",
      "example": "0x8f271174b45ba7892d83..."
    },
    "state": {
      "type": "string",
      "example": "13f9aadd4801d775e85a7ef45c2f6d02cdf83f0d724250417b165ff9cd88ee21"
    },
    "publishDate": {
      "$ref": "#/components/schemas/TimeUTC"
    },
    "status": {
      "type": "string",
      "enum": [
        "created",
        "pending",
        "published",
        "failed"
      ],
      "example": "published"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StateTransaction"
}