Microsoft Graph · Schema

media

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
calleeDevice object Device information associated with the callee endpoint of this media.
calleeNetwork object Network information associated with the callee endpoint of this media.
callerDevice object Device information associated with the caller endpoint of this media.
callerNetwork object Network information associated with the caller endpoint of this media.
label string How the media was identified during media negotiation stage.
streams array Network streams associated with this media.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcallrecordsmedia-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.callRecords.media",
  "title": "media",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "calleeDevice": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.callRecords.deviceInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Device information associated with the callee endpoint of this media."
    },
    "calleeNetwork": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.callRecords.networkInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Network information associated with the callee endpoint of this media."
    },
    "callerDevice": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.callRecords.deviceInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Device information associated with the caller endpoint of this media."
    },
    "callerNetwork": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.callRecords.networkInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Network information associated with the caller endpoint of this media."
    },
    "label": {
      "type": "string",
      "description": "How the media was identified during media negotiation stage.",
      "nullable": true
    },
    "streams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.callRecords.mediaStream"
      },
      "description": "Network streams associated with this media."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}