{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ScanTarget", "description": "ScanTarget schema from Palo Alto Networks Prisma AIRS AI Red Teaming API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/prisma-airs-ai-red-teaming-api-scan-target-schema.json", "type": "object", "properties": { "target_id": { "type": "string", "description": "Unique identifier of the scan target." }, "name": { "type": "string", "description": "Display name of the scan target." }, "description": { "type": "string", "description": "Description of the target AI application." }, "type": { "type": "string", "enum": [ "openai_chat", "anthropic_messages", "custom_http", "huggingface" ], "description": "AI interface type of the target endpoint." }, "endpoint_url": { "type": "string", "format": "uri", "description": "URL of the AI application endpoint." }, "model": { "type": "string", "description": "AI model name or identifier used by the endpoint." }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" } } }