Microsoft Graph · Schema
video
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| audioBitsPerSample | number | Number of audio bits per sample. |
| audioChannels | number | Number of audio channels. |
| audioFormat | string | Name of the audio format (AAC, MP3, etc.). |
| audioSamplesPerSecond | number | Number of audio samples per second. |
| bitrate | number | Bit rate of the video in bits per second. |
| duration | number | Duration of the file in milliseconds. |
| fourCC | string | 'Four character code' name of the video format. |
| frameRate | object | Frame rate of the video. |
| height | number | Height of the video, in pixels. |
| width | number | Width of the video, in pixels. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.video",
"title": "video",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"audioBitsPerSample": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Number of audio bits per sample.",
"format": "int32",
"nullable": true
},
"audioChannels": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Number of audio channels.",
"format": "int32",
"nullable": true
},
"audioFormat": {
"type": "string",
"description": "Name of the audio format (AAC, MP3, etc.).",
"nullable": true
},
"audioSamplesPerSecond": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Number of audio samples per second.",
"format": "int32",
"nullable": true
},
"bitrate": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Bit rate of the video in bits per second.",
"format": "int32",
"nullable": true
},
"duration": {
"type": "number",
"description": "Duration of the file in milliseconds.",
"format": "int64",
"nullable": true
},
"fourCC": {
"type": "string",
"description": "'Four character code' name of the video format.",
"nullable": true
},
"frameRate": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
],
"description": "Frame rate of the video."
},
"height": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Height of the video, in pixels.",
"format": "int32",
"nullable": true
},
"width": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Width of the video, in pixels.",
"format": "int32",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}