{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddOnState", "title": "Add-On State", "description": "The current state of the add-on. Possible values:\n- `initializing` - The add-on is in the process of being initialized/updated.\n- `ready` - The add-on is fully operational.\n- `terminating` - The add-on is in the process of being deleted.\n", "type": "string", "enum": [ "initializing", "ready", "terminating" ], "readOnly": true, "x-speakeasy-unknown-values": "allow" }