Microsoft Graph · Schema

accessPackageLocalizedText

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
languageCode string The language code that text is in. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-
text string The question in the specific language. Required.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphaccesspackagelocalizedtext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.accessPackageLocalizedText",
  "title": "accessPackageLocalizedText",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "languageCode": {
      "type": "string",
      "description": "The language code that text is in. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2. Required."
    },
    "text": {
      "type": "string",
      "description": "The question in the specific language. Required.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}