{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BlackoutTarget", "title": "BlackoutTarget", "type": "object", "description": "A target included in a blackout.", "properties": { "targetName": { "type": "string", "description": "Name of the target.", "example": "example_value" }, "targetType": { "type": "string", "description": "Type of the target.", "example": "example_value" }, "includeMembers": { "type": "boolean", "description": "Whether to include member targets (for composite targets and groups).", "example": true } } }