{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CapabilitySettings", "title": "CapabilitySettings", "properties": { "amountPerIndustry": { "additionalProperties": { "$ref": "#/components/schemas/Amount" }, "description": "", "type": "object" }, "authorizedCardUsers": { "description": "", "type": "boolean" }, "fundingSource": { "description": "", "items": { "enum": [ "credit", "debit", "prepaid" ], "type": "string" }, "type": "array" }, "interval": { "description": "", "enum": [ "daily", "monthly", "weekly" ], "type": "string" }, "maxAmount": { "description": "", "$ref": "#/components/schemas/Amount" } }, "type": "object" }