openapi: 3.2.0 info: title: Prisma AIRS Red Teaming Dataplane Templates API description: Red Teaming Data Plane API - Data processing and scanning services for AI/ML model security. © 2025 Palo Alto Networks, Inc version: 0.7.75 termsOfService: https://www.paloaltonetworks.com/content/dam/pan/en_US/assets/pdf/legal/palo-alto-networks-end-user-license-agreement-eula.pdf license: name: MIT url: https://opensource.org/license/mit contact: email: support@paloaltonetworks.com name: Palo Alto Networks Technical Support url: https://support.paloaltonetworks.com servers: - url: https://api.sase.paloaltonetworks.com/ai-red-teaming/data-plane security: - bearerAuth: [] tags: - name: Templates description: Operations for managing scan templates and configurations. paths: /v1/scan/scan-metadata: get: tags: - Templates summary: Get scan target metadata description: Get the metadata for scan targets. operationId: get_scan_metadata_v1_scan_scan_metadata_get responses: 200: description: Successful Response content: application/json: schema: additionalProperties: true type: object title: Response Get Scan Metadata V1 Scan Scan Metadata Get 401: description: Unauthorized content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' components: schemas: ValidationError: properties: loc: items: anyOf: - type: string - type: integer type: array title: Location msg: type: string title: Message type: type: string title: Error Type type: object required: - loc - msg - type title: ValidationError HTTPValidationError: properties: detail: items: $ref: '#/components/schemas/ValidationError' type: array title: Detail type: object title: HTTPValidationError securitySchemes: bearerAuth: type: http scheme: bearer bearerFormat: JWT