{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-profiler/refs/heads/main/json-schema/amazon-codeguru-profiler-configure-agent-response-schema.json", "title": "ConfigureAgentResponse", "description": "The structure representing the configureAgentResponse.", "type": "object", "properties": { "configuration": { "allOf": [ { "$ref": "#/components/schemas/AgentConfiguration" }, { "description": " An AgentConfiguration object that specifies if an agent profiles or not and for how long to return profiling data. " } ] } }, "required": [ "configuration" ] }