Microsoft Graph · Schema

scoredEmailAddress

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
address string The email address.
itemId string
relevanceScore object The relevance score of the email address. A relevance score is used as a sort key, in relation to the other returned results. A higher relevance score value corresponds to a more relevant result. Rele
selectionLikelihood object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphscoredemailaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.scoredEmailAddress",
  "title": "scoredEmailAddress",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "The email address.",
      "nullable": true
    },
    "itemId": {
      "type": "string",
      "nullable": true
    },
    "relevanceScore": {
      "oneOf": [
        {
          "type": "number",
          "format": "double",
          "nullable": true
        },
        {
          "type": "string",
          "nullable": true
        },
        {
          "$ref": "#/components/schemas/ReferenceNumeric"
        }
      ],
      "description": "The relevance score of the email address. A relevance score is used as a sort key, in relation to the other returned results. A higher relevance score value corresponds to a more relevant result. Relevance is determined by the user\u2019s communication and collaboration patterns and business relationships."
    },
    "selectionLikelihood": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.selectionLikelihoodInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ]
    },
    "@odata.type": {
      "type": "string"
    }
  }
}