Microsoft Graph · Schema

microsoft.graph.omaSettingFloatingPoint

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphomasettingfloatingpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.omaSettingFloatingPoint",
  "title": "microsoft.graph.omaSettingFloatingPoint",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.omaSetting"
    },
    {
      "title": "omaSettingFloatingPoint",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "value": {
          "oneOf": [
            {
              "type": "number",
              "format": "float",
              "nullable": true
            },
            {
              "type": "string",
              "nullable": true
            },
            {
              "$ref": "#/components/schemas/ReferenceNumeric"
            }
          ],
          "description": "Value."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.omaSettingFloatingPoint"
        }
      },
      "description": "OMA Settings Floating Point definition."
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.omaSettingFloatingPoint"
}