Microsoft Graph · Schema

print

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
settings object Tenant-wide settings for the Universal Print service.
connectors array The list of available print connectors.
operations array The list of print long running operations.
printers array The list of printers registered in the tenant.
services array The list of available Universal Print service endpoints.
shares array The list of printer shares registered in the tenant.
taskDefinitions array List of abstract definition for a task that can be triggered when various events occur within Universal Print.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.print",
  "title": "print",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "settings": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.printSettings"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Tenant-wide settings for the Universal Print service."
    },
    "connectors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.printConnector"
      },
      "description": "The list of available print connectors.",
      "x-ms-navigationProperty": true
    },
    "operations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.printOperation"
      },
      "description": "The list of print long running operations.",
      "x-ms-navigationProperty": true
    },
    "printers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.printer"
      },
      "description": "The list of printers registered in the tenant.",
      "x-ms-navigationProperty": true
    },
    "services": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.printService"
      },
      "description": "The list of available Universal Print service endpoints.",
      "x-ms-navigationProperty": true
    },
    "shares": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.printerShare"
      },
      "description": "The list of printer shares registered in the tenant.",
      "x-ms-navigationProperty": true
    },
    "taskDefinitions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.printTaskDefinition"
      },
      "description": "List of abstract definition for a task that can be triggered when various events occur within Universal Print.",
      "x-ms-navigationProperty": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}