{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WLDFSystemResource", "title": "WLDFSystemResource", "type": "object", "properties": { "name": { "type": "string", "description": "WLDF system resource name" }, "targets": { "type": "array", "items": { "type": "string" }, "description": "Target servers or clusters" }, "harvestor": { "type": "object", "properties": { "enabled": { "type": "boolean", "description": "Whether the harvester is enabled" }, "samplePeriod": { "type": "integer", "description": "Sample period in milliseconds" } } }, "instrumentation": { "type": "object", "properties": { "enabled": { "type": "boolean", "description": "Whether instrumentation is enabled" } } }, "watchNotification": { "type": "object", "properties": { "enabled": { "type": "boolean", "description": "Whether watch and notification is enabled" } } } } }