API Snap · Schema

HashResult

Result of a hash computation including hash value, algorithm, and encoding

API UtilitiesDeveloper ToolsQR CodesScreenshotsImage ProcessingPDF GenerationMarkdownURL MetadataHashingJWTBase64UUIDColor ConversionLorem IpsumPlaceholder Images

Properties

Name Type Description
hash string The computed hash value.
algorithm string
encoding string
View JSON Schema on GitHub

JSON Schema

hash-hash-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/api-snap/refs/heads/main/json-schema/hash-hash-result-schema.json",
  "title": "HashResult",
  "description": "Result of a hash computation including hash value, algorithm, and encoding",
  "type": "object",
  "properties": {
    "hash": {
      "type": "string",
      "description": "The computed hash value."
    },
    "algorithm": {
      "type": "string"
    },
    "encoding": {
      "type": "string"
    }
  }
}