{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Recycling", "title": "Recycling", "type": "object", "description": "Recycling settings for the application pool.", "properties": { "disable_overlapped_recycle": { "type": "boolean", "description": "Whether to disable overlapped recycling.", "default": false, "example": true }, "disable_recycle_on_config_change": { "type": "boolean", "description": "Whether to disable recycling on configuration changes.", "default": false, "example": true }, "log_events": { "$ref": "#/components/schemas/RecyclingLogEvents" }, "periodic_restart": { "$ref": "#/components/schemas/PeriodicRestart" } } }