blue.atplay.score.defs

atplay.blue

Documentation

attestation object

Attestation signature proving a score was submitted through ATPlay SDK

Properties

attestedAt string datetime Optional

Timestamp when the attestation was created (optional)

key string Required

DID key reference for verifying the signature

maxLength: 512 bytes
signature bytes Required

ES256 signature over the score record CID

maxLength: 8192
View raw schema
{
  "type": "object",
  "required": [
    "key",
    "signature"
  ],
  "properties": {
    "key": {
      "type": "string",
      "maxLength": 512,
      "description": "DID key reference for verifying the signature"
    },
    "signature": {
      "type": "bytes",
      "maxLength": 8192,
      "description": "ES256 signature over the score record CID"
    },
    "attestedAt": {
      "type": "string",
      "format": "datetime",
      "description": "Timestamp when the attestation was created (optional)"
    }
  },
  "description": "Attestation signature proving a score was submitted through ATPlay SDK"
}

Lexicon Garden

@