Microsoft Planner · Schema

PlannerAssignment

Represents the assignment of a task to a user

CollaborationMicrosoft 365ProductivityProject ManagementTask Management

Properties

Name Type Description
@odata.type string
assignedBy object The identity of the user that performed the assignment
assignedDateTime string The time at which the task was assigned
orderHint string Hint used to order assignees in a task. The format is defined in the Planner order hints documentation.
View JSON Schema on GitHub

JSON Schema

microsoft-planner-plannerassignment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlannerAssignment",
  "title": "PlannerAssignment",
  "type": "object",
  "description": "Represents the assignment of a task to a user",
  "properties": {
    "@odata.type": {
      "type": "string",
      "const": "microsoft.graph.plannerAssignment",
      "example": "example_value"
    },
    "assignedBy": {
      "$ref": "#/components/schemas/IdentitySet",
      "description": "The identity of the user that performed the assignment",
      "readOnly": true
    },
    "assignedDateTime": {
      "type": "string",
      "format": "date-time",
      "description": "The time at which the task was assigned",
      "readOnly": true,
      "example": "2026-01-15T10:30:00Z"
    },
    "orderHint": {
      "type": "string",
      "description": "Hint used to order assignees in a task. The format is defined in the Planner order hints documentation.",
      "example": "example_value"
    }
  }
}