{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "HashOutput",
"description": "NDJSON output for BLAKE3 hash computation.",
"type": "object",
"properties": {
"algorithm": {
"description": "Hash algorithm name.",
"type": "string"
},
"bytes": {
"description": "File size in bytes.",
"type": [
"integer",
"null"
],
"format": "uint64",
"minimum": 0
},
"checksum": {
"description": "Computed hash value (GAP-107: renamed to `checksum` for schema consistency).",
"type": "string"
},
"elapsed_ms": {
"description": "Duration in milliseconds.",
"type": "integer",
"format": "uint64",
"minimum": 0
},
"path": {
"description": "File path, absent for stdin.",
"type": [
"string",
"null"
]
},
"source": {
"description": "Source identifier for stdin input.",
"type": [
"string",
"null"
]
},
"type": {
"description": "Event type discriminator.",
"type": "string"
},
"verified": {
"description": "Verification result against expected hash.",
"type": [
"boolean",
"null"
]
}
},
"required": [
"type",
"algorithm",
"checksum",
"elapsed_ms"
]
}