Microsoft Graph · Schema

mediaInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
resourceId string Optional. Used to uniquely identity the resource. If passed in, the prompt uri is against this resourceId as a key.
uri string Path to the prompt that will be played. Currently supports only Wave file (.wav) format, single-channel, 16-bit samples with a 16,000 (16 KHz) sampling rate.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmediainfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.mediaInfo",
  "title": "mediaInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "resourceId": {
      "type": "string",
      "description": "Optional. Used to uniquely identity the resource. If passed in, the prompt uri is against this resourceId as a key.",
      "nullable": true
    },
    "uri": {
      "type": "string",
      "description": "Path to the prompt that will be played. Currently supports only Wave file (.wav) format, single-channel, 16-bit samples with a 16,000 (16 KHz) sampling rate."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}