Microsoft Graph · Schema

printerLocation

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
altitudeInMeters number The altitude, in meters, that the printer is located at.
building string The building that the printer is located in.
city string The city that the printer is located in.
countryOrRegion string The country or region that the printer is located in.
floor string The floor that the printer is located on. Only numerical values are supported right now.
floorDescription string The description of the floor that the printer is located on.
latitude object The latitude that the printer is located at.
longitude object The longitude that the printer is located at.
organization array The organizational hierarchy that the printer belongs to. The elements should be in hierarchical order.
postalCode string The postal code that the printer is located in.
roomDescription string The description of the room that the printer is located in.
roomName string The room that the printer is located in. Only numerical values are supported right now.
site string The site that the printer is located in.
stateOrProvince string The state or province that the printer is located in.
streetAddress string The street address where the printer is located.
subdivision array The subdivision that the printer is located in. The elements should be in hierarchical order.
subunit array
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprinterlocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.printerLocation",
  "title": "printerLocation",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "altitudeInMeters": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The altitude, in meters, that the printer is located at.",
      "format": "int32",
      "nullable": true
    },
    "building": {
      "type": "string",
      "description": "The building that the printer is located in.",
      "nullable": true
    },
    "city": {
      "type": "string",
      "description": "The city that the printer is located in.",
      "nullable": true
    },
    "countryOrRegion": {
      "type": "string",
      "description": "The country or region that the printer is located in.",
      "nullable": true
    },
    "floor": {
      "type": "string",
      "description": "The floor that the printer is located on. Only numerical values are supported right now.",
      "nullable": true
    },
    "floorDescription": {
      "type": "string",
      "description": "The description of the floor that the printer is located on.",
      "nullable": true
    },
    "latitude": {
      "oneOf": [
        {
          "type": "number",
          "format": "double",
          "nullable": true
        },
        {
          "type": "string",
          "nullable": true
        },
        {
          "$ref": "#/components/schemas/ReferenceNumeric"
        }
      ],
      "description": "The latitude that the printer is located at."
    },
    "longitude": {
      "oneOf": [
        {
          "type": "number",
          "format": "double",
          "nullable": true
        },
        {
          "type": "string",
          "nullable": true
        },
        {
          "$ref": "#/components/schemas/ReferenceNumeric"
        }
      ],
      "description": "The longitude that the printer is located at."
    },
    "organization": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "The organizational hierarchy that the printer belongs to. The elements should be in hierarchical order."
    },
    "postalCode": {
      "type": "string",
      "description": "The postal code that the printer is located in.",
      "nullable": true
    },
    "roomDescription": {
      "type": "string",
      "description": "The description of the room that the printer is located in.",
      "nullable": true
    },
    "roomName": {
      "type": "string",
      "description": "The room that the printer is located in. Only numerical values are supported right now.",
      "nullable": true
    },
    "site": {
      "type": "string",
      "description": "The site that the printer is located in.",
      "nullable": true
    },
    "stateOrProvince": {
      "type": "string",
      "description": "The state or province that the printer is located in.",
      "nullable": true
    },
    "streetAddress": {
      "type": "string",
      "description": "The street address where the printer is located.",
      "nullable": true
    },
    "subdivision": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "The subdivision that the printer is located in. The elements should be in hierarchical order."
    },
    "subunit": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      }
    },
    "@odata.type": {
      "type": "string"
    }
  }
}