{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.security.aiAgentEvidence", "title": "microsoft.graph.security.aiAgentEvidence", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.alertEvidence" }, { "title": "aiAgentEvidence", "required": [ "@odata.type" ], "type": "object", "properties": { "agentId": { "type": "string", "description": "The unique identifier for the AI agent.", "nullable": true }, "agentName": { "type": "string", "description": "The display name for the AI agent.", "nullable": true }, "hostingPlatformType": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.aiAgentPlatform" }, { "type": "object", "nullable": true } ], "description": "Type of the platform the agent runs on. The possible values are: unknown, azureAIFoundry, copilotStudio, copilot, unknownFutureValue." }, "instructions": { "type": "string", "description": "The instructions of the agent.", "nullable": true }, "@odata.type": { "type": "string", "default": "#microsoft.graph.security.aiAgentEvidence" } } } ], "x-ms-discriminator-value": "#microsoft.graph.security.aiAgentEvidence" }