{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BillingPolicyUpdateRequest", "title": "BillingPolicyUpdateRequest", "type": "object", "description": "Request body for updating an existing billing policy.", "properties": { "name": { "type": "string", "description": "The updated display name.", "example": "Example Title" }, "status": { "type": "string", "description": "The updated status.", "enum": [ "Enabled", "Disabled" ], "example": "Enabled" }, "billingInstrument": { "$ref": "#/components/schemas/BillingInstrument" } } }