The user prompt or input text sent to the AI model. Evaluated for prompt injection, jailbreak attempts, and other input-side threats.
response
string
The AI model response or output text. When provided, also evaluated for data leakage, toxic content, and other output-side threats. May be omitted to scan only the prompt.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ScanContent",
"description": "ScanContent schema from Palo Alto Networks Prisma AIRS API",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-airs-api-scan-content-schema.json",
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "The user prompt or input text sent to the AI model. Evaluated for prompt injection, jailbreak attempts, and other input-side threats.",
"maxLength": 32000
},
"response": {
"type": "string",
"description": "The AI model response or output text. When provided, also evaluated for data leakage, toxic content, and other output-side threats. May be omitted to scan only the prompt.",
"maxLength": 64000
}
}
}