{
	"$schema": "http://json-schema.org/draft-07/schema",
	"$id": "https://apidocs.iqrf.org/openapi/iqrf-gateway-webapp/schemas/daemonComponentEnabled.json",
	"type": "array",
	"title": "IQRF Gateway Daemon component change",
	"items": [
		{
			"$id": "#/items",
			"type": "object",
			"title": "Daemon component",
			"required": [
				"name",
				"enabled"
			],
			"example": {
				"name": "iqrf::IqrfCdc",
				"enabled": true
			},
			"additionalProperties": false,
			"properties": {
				"name": {
					"$id": "#/items/properties/name",
					"type": "string",
					"title": "Component name",
					"example": "iqrf::IqrfCdc"
				},
				"enabled": {
					"$id": "#/items/properties/enabled",
					"type": "boolean",
					"title": "Component enabled state",
					"example": true
				}
			}
		}
	]
}
