blue.2048.verification.defs

2048.blue

Documentation

verificationRef object

Holds the signature for another record showing it has verified it to the best of it's ability and it should be trusted if the signatures match.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

keyRef string at-uri Required

The at://uri for the public did:key to verify the remote 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).

recordRef string at-uri Required

The at://uri for the record that is being verified.

signature string Required

The public verifiable signature of the record. Serialization of the records valued

subject string did Required

DID of the subject the verification applies to.

View raw schema
{
  "type": "object",
  "required": [
    "keyRef",
    "recordRef",
    "subject",
    "signature",
    "createdAt"
  ],
  "properties": {
    "keyRef": {
      "type": "string",
      "format": "at-uri",
      "description": "The at://uri for the public did:key to verify the remote 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)."
    },
    "subject": {
      "type": "string",
      "format": "did",
      "description": "DID of the subject the verification applies to."
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "recordRef": {
      "type": "string",
      "format": "at-uri",
      "description": "The at://uri for the record that is being verified."
    },
    "signature": {
      "type": "string",
      "description": "The public verifiable signature of the record. Serialization of the records valued"
    }
  },
  "description": "Holds the signature for another record showing it has verified it to the best of it's ability and it should be trusted if the signatures match."
}

Lexicon Garden

@