Microsoft Graph · Schema

printerStatus

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
description string A human-readable description of the printer's current processing state. Read-only.
details array The list of details describing why the printer is in the current state. Valid values are described in the following table. Read-only.
state object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprinterstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.printerStatus",
  "title": "printerStatus",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "A human-readable description of the printer's current processing state. Read-only.",
      "nullable": true
    },
    "details": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.printerProcessingStateDetail"
      },
      "description": "The list of details describing why the printer is in the current state. Valid values are described in the following table. Read-only."
    },
    "state": {
      "$ref": "#/components/schemas/microsoft.graph.printerProcessingState"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}