{ "$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-assisted-request-schema.json", "title": "PolicyDetailsAssistedRequest", "description": "Request body for staff-assisted policy details completion", "type": "object", "properties": { "estimate_id": { "type": "string", "description": "Unique identifier of the price estimate to convert", "example": "est-500123" }, "customer_id": { "type": "string", "description": "Unique identifier of the customer", "example": "500123" }, "payment_frequency": { "type": "string", "description": "Preferred payment frequency for the policy", "enum": [ "annual", "monthly" ], "example": "monthly" } }, "required": [ "estimate_id", "customer_id" ] }