{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/accountSetup", "title": "accountSetup", "required": [ "name", "type_id" ], "type": "object", "properties": { "name": { "type": "string" }, "type_id": { "type": "string" }, "payment_method_id": { "type": "string" }, "period": { "type": "string", "enum": [ "monthly", "yearly" ] }, "extra_seats_block": { "type": "integer" } } }