{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/sase-config-orchestration-api-onboarding-status-structure.json", "name": "OnboardingStatus", "description": "OnboardingStatus schema from Palo Alto Networks SASE Configuration Orchestration API", "type": "object", "properties": { "id": { "type": "string", "description": "Remote network identifier." }, "status": { "type": "string", "description": "Current onboarding phase.", "enum": [ "pending", "provisioning", "configuring", "tunnel_establishing", "completed", "failed" ] }, "steps": { "type": "array", "description": "Individual onboarding steps and their completion state.", "items": { "type": "object", "properties": { "step": { "type": "string", "description": "Step name." }, "status": { "type": "string", "enum": [ "pending", "in_progress", "completed", "failed" ] }, "message": { "type": "string", "description": "Status message or error detail for this step." }, "completed_at": { "type": "datetime" } } } }, "error_message": { "type": "string", "description": "Error description if onboarding failed." }, "started_at": { "type": "datetime" }, "completed_at": { "type": "datetime" } } }