blue.2048.key.defs

2048.blue

Documentation

key object

A record that holds a did:key used to verify records. Use the collection to know the type of verification. Example blue.2048.key.game is for blue.2048.game records

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

key string Required

A did:key used to verify records came from an at://2048 authority

View raw schema
{
  "type": "object",
  "required": [
    "key",
    "createdAt"
  ],
  "properties": {
    "key": {
      "type": "string",
      "description": "A did:key used to verify records came from an at://2048 authority"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    }
  },
  "description": "A record that holds a did:key used to verify records. Use the collection to know the type of verification. Example blue.2048.key.game is for blue.2048.game records"
}
signatureRef object

a signature for an at://2048 record meaning it has been verified by a service. Most likely @2048.blue

Properties

atURI string Required

The at://uri for the public did:key to verify this record. This also counts as the authority of the verification (example @2048.blue). As well as the type of verification by the collection name (blue.2048.key.game).

createdAt string datetime Required

An RFC 3339 formatted timestamp.

signature string Required

The public verifiable signature of the record. Serialization of the records value minus the signature field

View raw schema
{
  "type": "object",
  "required": [
    "atURI",
    "signature",
    "createdAt"
  ],
  "properties": {
    "atURI": {
      "type": "string",
      "description": "The at://uri for the public did:key to verify this record. This also counts as the authority of the verification (example @2048.blue). As well as the type of verification by the collection name (blue.2048.key.game)."
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "signature": {
      "type": "string",
      "description": "The public verifiable signature of the record. Serialization of the records value minus the signature field"
    }
  },
  "description": "a signature for an at://2048 record meaning it has been verified by a service. Most likely @2048.blue"
}

Lexicon Garden

@