{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/allianz-docs/refs/heads/main/json-schema/api-connect-policy-details-self-service-request-schema.json", "title": "PolicyDetailsSelfServiceRequest", "description": "Request body for creating a self-service policy completion session", "type": "object", "properties": { "estimate_id": { "type": "string", "description": "Unique identifier of the price estimate to complete", "example": "est-500789" }, "redirect_url": { "type": "string", "format": "uri", "description": "URL to redirect customer back to after completing the policy", "example": "https://portal.example.com/insurance/complete" } }, "required": [ "estimate_id" ] }