haus.hash.submission

lexicon.store

Documentation

A hash submission for the hash.haus leaderboard.

main record

A hash submission for the hash.haus leaderboard.

Record Key tid Timestamp-based ID

Properties

algorithm string Required

The hash algorithm used.

Known values: sha256, md5
createdAt string datetime Required

Timestamp of the submission.

hash string Required

The resulting hex-encoded hash of did/suffix.

maxLength: 64 bytesminLength: 32 bytes
suffix string Required

The suffix appended to the user's DID to produce the hash input.

maxLength: 32 bytesminLength: 1 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "suffix",
      "algorithm",
      "hash",
      "createdAt"
    ],
    "properties": {
      "hash": {
        "type": "string",
        "maxLength": 64,
        "minLength": 32,
        "description": "The resulting hex-encoded hash of did/suffix."
      },
      "suffix": {
        "type": "string",
        "maxLength": 32,
        "minLength": 1,
        "description": "The suffix appended to the user's DID to produce the hash input."
      },
      "algorithm": {
        "type": "string",
        "description": "The hash algorithm used.",
        "knownValues": [
          "sha256",
          "md5"
        ]
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of the submission."
      }
    }
  },
  "description": "A hash submission for the hash.haus leaderboard."
}

Lexicon Garden

@