Microsoft Graph · Schema

microsoft.graph.teleconferenceDeviceVideoQuality

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphteleconferencedevicevideoquality-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.teleconferenceDeviceVideoQuality",
  "title": "microsoft.graph.teleconferenceDeviceVideoQuality",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.teleconferenceDeviceMediaQuality"
    },
    {
      "title": "teleconferenceDeviceVideoQuality",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "averageInboundBitRate": {
          "oneOf": [
            {
              "type": "number",
              "format": "double",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "The average inbound stream video bit rate per second."
        },
        "averageInboundFrameRate": {
          "oneOf": [
            {
              "type": "number",
              "format": "double",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "The average inbound stream video frame rate per second."
        },
        "averageOutboundBitRate": {
          "oneOf": [
            {
              "type": "number",
              "format": "double",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "The average outbound stream video bit rate per second."
        },
        "averageOutboundFrameRate": {
          "oneOf": [
            {
              "type": "number",
              "format": "double",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "The average outbound stream video frame rate per second."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.teleconferenceDeviceVideoQuality"
        }
      },
      "discriminator": {
        "propertyName": "@odata.type",
        "mapping": {
          "#microsoft.graph.teleconferenceDeviceScreenSharingQuality": "#/components/schemas/microsoft.graph.teleconferenceDeviceScreenSharingQuality"
        }
      }
    }
  ]
}