{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "OnboardAppRequest", "description": "OnboardAppRequest schema from Palo Alto Networks SaaS Security Posture Management API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sspm-api-onboard-app-request-schema.json", "type": "object", "properties": { "app_type": { "type": "string", "description": "Application type to onboard (e.g., google_workspace, microsoft_365, salesforce)." }, "display_name": { "type": "string", "description": "Optional display name for this application instance." }, "credentials": { "type": "object", "description": "Authentication credentials required to connect to the application.", "additionalProperties": true } }, "required": [ "app_type" ] }