{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.printTaskDefinition", "title": "microsoft.graph.printTaskDefinition", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "printTaskDefinition", "required": [ "@odata.type" ], "type": "object", "properties": { "createdBy": { "$ref": "#/components/schemas/microsoft.graph.appIdentity" }, "displayName": { "type": "string", "description": "The name of the printTaskDefinition." }, "tasks": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.printTask" }, "description": "A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.printTaskDefinition" }