Microsoft Graph · Schema

convertIdResult

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
errorDetails object An error object indicating the reason for the conversion failure. This value isn't present if the conversion succeeded.
sourceId string The identifier that was converted. This value is the original, un-converted identifier.
targetId string The converted identifier. This value isn't present if the conversion failed.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphconvertidresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.convertIdResult",
  "title": "convertIdResult",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "errorDetails": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.genericError"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "An error object indicating the reason for the conversion failure. This value isn't present if the conversion succeeded."
    },
    "sourceId": {
      "type": "string",
      "description": "The identifier that was converted. This value is the original, un-converted identifier.",
      "nullable": true
    },
    "targetId": {
      "type": "string",
      "description": "The converted identifier. This value isn't present if the conversion failed.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}