{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AutoReloadPlan", "title": "AutoReloadPlan", "type": "object", "properties": { "credits": { "type": "number", "description": "This the amount of credits to reload." }, "threshold": { "type": "number", "description": "This is the limit at which the reload is triggered." } }, "required": [ "credits", "threshold" ] }