{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentLink", "title": "PaymentLink", "properties": { "amount": { "type": "number" }, "contact_id": { "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "currency": { "type": "string" }, "id": { "type": "string" }, "is_active": { "type": "boolean" }, "is_chargeable_now": { "type": "boolean" }, "lineitems": { "$ref": "#/components/schemas/property_PaymentLink_lineitems" }, "payment_id": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "success_url": { "type": "string" }, "updated_at": { "format": "date-time", "type": "string" }, "url": { "type": "string" } }, "type": "object" }