Illustrative output from the canonical adapter fixture and schema. It is not a completed paid execution or a current live observation.
View complete output schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 8,
"required": [
"status",
"calculatedSha256",
"byteSize"
],
"properties": {
"status": {
"type": "string",
"enum": [
"VERIFIED",
"MISMATCH",
"INSPECTED"
],
"minLength": 8,
"maxLength": 9
},
"sourceUrl": {
"type": "string",
"minLength": 9,
"maxLength": 2048
},
"calculatedSha256": {
"type": "string",
"pattern": "^[0-9a-f]{64}$",
"minLength": 64,
"maxLength": 64
},
"hashMatch": {
"type": "boolean"
},
"mimeType": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"mimeMatch": {
"type": "boolean"
},
"byteSize": {
"type": "integer",
"minimum": 0,
"maximum": 10485760
},
"byteSizeMatch": {
"type": "boolean"
}
}
}