{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat", "title": "microsoft.graph.plannerAssignedToTaskBoardTaskFormat", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "plannerAssignedToTaskBoardTaskFormat", "required": [ "@odata.type" ], "type": "object", "properties": { "orderHintsByAssignee": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.plannerOrderHintsByAssignee" }, { "type": "object", "nullable": true } ], "description": "Dictionary of hints used to order tasks on the AssignedTo view of the Task Board. The key of each entry is one of the users the task is assigned to and the value is the order hint. The format of each value is defined as outlined here." }, "unassignedOrderHint": { "type": "string", "description": "Hint value used to order the task on the AssignedTo view of the Task Board when the task isn't assigned to anyone, or if the orderHintsByAssignee dictionary doesn't provide an order hint for the user the task is assigned to. The format is defined as outlined here.", "nullable": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.plannerAssignedToTaskBoardTaskFormat" }