{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteLegalArrangementRequest", "title": "DeleteLegalArrangementRequest", "properties": { "accountHolderCode": { "description": "The code of the account holder.", "type": "string" }, "legalArrangements": { "description": "List of legal arrangements.", "items": { "$ref": "#/components/schemas/LegalArrangementRequest" }, "type": "array" } }, "required": [ "accountHolderCode", "legalArrangements" ], "type": "object" }