Microsoft Graph · Schema

mediaStream

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
direction object
label string The media stream label.
mediaType object
serverMuted boolean If the media is muted by the server.
sourceId string The source ID.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmediastream-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.mediaStream",
  "title": "mediaStream",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "direction": {
      "$ref": "#/components/schemas/microsoft.graph.mediaDirection"
    },
    "label": {
      "type": "string",
      "description": "The media stream label.",
      "nullable": true
    },
    "mediaType": {
      "$ref": "#/components/schemas/microsoft.graph.modality"
    },
    "serverMuted": {
      "type": "boolean",
      "description": "If the media is muted by the server."
    },
    "sourceId": {
      "type": "string",
      "description": "The source ID."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}