Microsoft Graph · Schema

microsoft.graph.socialIdentityProvider

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsocialidentityprovider-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.socialIdentityProvider",
  "title": "microsoft.graph.socialIdentityProvider",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.identityProviderBase"
    },
    {
      "title": "socialIdentityProvider",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "clientId": {
          "type": "string",
          "description": "The identifier for the client application obtained when registering the application with the identity provider. Required.",
          "nullable": true
        },
        "clientSecret": {
          "type": "string",
          "description": "The client secret for the application that is obtained when the application is registered with the identity provider. This is write-only. A read operation returns . Required.",
          "nullable": true
        },
        "identityProviderType": {
          "type": "string",
          "description": "For a B2B scenario, possible values: Google, Facebook. For a B2C scenario, possible values: Microsoft, Google, Amazon, LinkedIn, Facebook, GitHub, Twitter, Weibo, QQ, WeChat. Required.",
          "nullable": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.socialIdentityProvider"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.socialIdentityProvider"
}