Simulation Application Schema Structure
Focus
Focus
Prisma AIRS

Simulation Application Schema Structure

Table of Contents

Simulation Application Schema Structure

This page provides some use case examples on the application schema details you need to provide while creating a simulation request.
This page provides some use case examples on the application schema details you need to provide while creating a simulation request.
The application endpoint schema file (YAML format) defines your AI applications’ API structure, including authentication methods, endpoint URLs, and request/response formats. AI Red Teaming product uses the endpoint schema file to send prompts to your application to simulate a malicious end user.
Where Can I Use This?What Do I Need?
  • Prisma AIRS
  • AI Red Teaming product
  • Example endpoint schemas:
    Example 1:
    • model: type: azure_openai deployment: api_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx azure_endpoint: "https://<endpoint-URL>"
    • auth: endpoint: "https://api-stage.prismacloud.io/login" headers: "Content-Type": "application/json" json: username: "{username}" password: "{password}" customerName: "{customerName}" response: auth_token: "token" prompt: endpoint: "https://api-stage.prismacloud.io/copilot/api/v2/prompt" headers: "Content-Type": "application/json" "x-redlock-auth": "{auth_token}" method: "POST" json: requestText: "{prompt}" response: text: "text"