Microsoft Graph · Schema

audio

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
album string The title of the album for this audio file.
albumArtist string The artist named on the album for the audio file.
artist string The performing artist for the audio file.
bitrate number Bitrate expressed in kbps.
composers string The name of the composer of the audio file.
copyright string Copyright information for the audio file.
disc number The number of the disc this audio file came from.
discCount number The total number of discs in this album.
duration number Duration of the audio file, expressed in milliseconds
genre string The genre of this audio file.
hasDrm boolean Indicates if the file is protected with digital rights management.
isVariableBitrate boolean Indicates if the file is encoded with a variable bitrate.
title string The title of the audio file.
track number The number of the track on the original disc for this audio file.
trackCount number The total number of tracks on the original disc for this audio file.
year number The year the audio file was recorded.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphaudio-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.audio",
  "title": "audio",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "album": {
      "type": "string",
      "description": "The title of the album for this audio file.",
      "nullable": true
    },
    "albumArtist": {
      "type": "string",
      "description": "The artist named on the album for the audio file.",
      "nullable": true
    },
    "artist": {
      "type": "string",
      "description": "The performing artist for the audio file.",
      "nullable": true
    },
    "bitrate": {
      "type": "number",
      "description": "Bitrate expressed in kbps.",
      "format": "int64",
      "nullable": true
    },
    "composers": {
      "type": "string",
      "description": "The name of the composer of the audio file.",
      "nullable": true
    },
    "copyright": {
      "type": "string",
      "description": "Copyright information for the audio file.",
      "nullable": true
    },
    "disc": {
      "maximum": 32767,
      "minimum": -32768,
      "type": "number",
      "description": "The number of the disc this audio file came from.",
      "format": "int16",
      "nullable": true
    },
    "discCount": {
      "maximum": 32767,
      "minimum": -32768,
      "type": "number",
      "description": "The total number of discs in this album.",
      "format": "int16",
      "nullable": true
    },
    "duration": {
      "type": "number",
      "description": "Duration of the audio file, expressed in milliseconds",
      "format": "int64",
      "nullable": true
    },
    "genre": {
      "type": "string",
      "description": "The genre of this audio file.",
      "nullable": true
    },
    "hasDrm": {
      "type": "boolean",
      "description": "Indicates if the file is protected with digital rights management.",
      "nullable": true
    },
    "isVariableBitrate": {
      "type": "boolean",
      "description": "Indicates if the file is encoded with a variable bitrate.",
      "nullable": true
    },
    "title": {
      "type": "string",
      "description": "The title of the audio file.",
      "nullable": true
    },
    "track": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of the track on the original disc for this audio file.",
      "format": "int32",
      "nullable": true
    },
    "trackCount": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The total number of tracks on the original disc for this audio file.",
      "format": "int32",
      "nullable": true
    },
    "year": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The year the audio file was recorded.",
      "format": "int32",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}