changedInput schema / properties / birth_date / description
Previous value: -"Client birth date YYYY-MM-DD (e.g. '1988-05-15')"New value: +"Client birth date in YYYY-MM-DD format (e.g. '1988-05-15')"
addedInput schema / properties / budget
Added value: +{
+ "description": "Client's monthly budget in euros (e.g. 80). Results sorted by proximity to budget.",
+ "type": "number"
+}
addedInput schema / properties / children
Added value: +{
+ "description": "Children details for family coverage",
+ "items": {
+ "properties": {
+ "birth_date": {
+ "description": "Child birth date YYYY-MM-DD",
+ "type": "string"
+ },
+ "gender": {
+ "description": "Child gender: M or F",
+ "type": "string"
+ }
+ },
+ "required": [
+ "birth_date"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
addedInput schema / properties / coverage_zone
Added value: +{
+ "description": "Coverage zone for sante_internationale: monde_usa, monde_hors_usa, europe, asie_oceanie, ameriques.",
+ "type": "string"
+}
addedInput schema / properties / departure_date
Added value: +{
+ "description": "Coverage start date YYYY-MM-DD for sante_internationale. Defaults to 30 days from now.",
+ "type": "string"
+}
addedInput schema / properties / destination_country
Added value: +{
+ "description": "Destination country (e.g. 'Canada', 'Australie', 'Thailand'). REQUIRED for sante_internationale.",
+ "type": "string"
+}
changedInput schema / properties / has_spouse / description
Previous value: -"Whether client has a spouse to cover"New value: +"Whether the client has a spouse/partner to cover"
addedInput schema / properties / insurance_regime
Added value: +{
+ "description": "Insurance regime for sante_internationale: premier_euro, complement_cfe, complement_secu, etudiant. Do NOT confuse with 'regime' (French social security).",
+ "type": "string"
+}
addedInput schema / properties / nationality
Added value: +{
+ "description": "Client nationality for sante_internationale (e.g. 'France'). Defaults to France.",
+ "type": "string"
+}
changedInput schema / properties / postal_code / description
Previous value: -"French postal code (e.g. '75008', '92150')"New value: +"French postal code (e.g. '75008', '92150'). Required for French products, not needed for sante_internationale."
addedInput schema / properties / product_data
Added value: +{
+ "additionalProperties": {},
+ "description": "Product-specific data object. Fields depend on product_type — see description above for examples per product. Call get_products first to see quoteRequirements.guidance for the exact fields to collect.",
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+}
changedInput schema / properties / product_type / description
Previous value: -"Product type: sante, sante_tns, rc_pro, mrh, prevoyance, gav, pj"New value: +"Product type: sante, sante_tns, sante_internationale, auto, mrh, emprunteur, rc_pro, gav, prevoyance, pj, ij, per, assurance_vie, scolaire, epargne"
changedInput schema / properties / regime / description
Previous value: -"Social security regime: general, tns, alsace_moselle"New value: +"French social security regime: general, tns, alsace_moselle. For sante/sante_tns only."
addedInput schema / properties / show_all
Added value: +{
+ "description": "Return ALL quotes instead of top 5. Use only when client asks for more options.",
+ "type": "boolean"
+}
changedInput schema / properties / spouse_birth_date / description
Previous value: -"Spouse birth date YYYY-MM-DD"New value: +"Spouse birth date in YYYY-MM-DD format"
changedInput schema / required
Previous value: -[
- "broker_code",
- "product_type",
- "birth_date",
- "postal_code"
-]New value: +[
+ "broker_code",
+ "product_type",
+ "birth_date"
+]