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": 6,
"maxProperties": 6,
"required": [
"detectedMime",
"declaredMime",
"charset",
"confidence",
"structuralSignals",
"warnings"
],
"properties": {
"detectedMime": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"declaredMime": {
"type": "string",
"minLength": 0,
"maxLength": 256
},
"charset": {
"type": "string",
"minLength": 0,
"maxLength": 64
},
"confidence": {
"type": "string",
"enum": [
"low",
"medium",
"high"
],
"minLength": 3,
"maxLength": 6
},
"structuralSignals": {
"type": "array",
"minItems": 1,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}