Microsoft Graph · Schema

microsoft.graph.security.containerEvidence

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecuritycontainerevidence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.containerEvidence",
  "title": "microsoft.graph.security.containerEvidence",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.security.alertEvidence"
    },
    {
      "title": "containerEvidence",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "args": {
          "type": "array",
          "items": {
            "type": "string",
            "nullable": true
          },
          "description": "The list of arguments."
        },
        "command": {
          "type": "array",
          "items": {
            "type": "string",
            "nullable": true
          },
          "description": "The list of commands."
        },
        "containerId": {
          "type": "string",
          "description": "The container ID.",
          "nullable": true
        },
        "image": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.security.containerImageEvidence"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The image used to run the container."
        },
        "isPrivileged": {
          "type": "boolean",
          "description": "The privileged status."
        },
        "name": {
          "type": "string",
          "description": "The container name.",
          "nullable": true
        },
        "pod": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.security.kubernetesPodEvidence"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The pod this container belongs to."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.security.containerEvidence"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.security.containerEvidence"
}