Notion · Schema

PartialUser

A partial User object containing only the object type and ID. Used in created_by and last_edited_by fields.

CollaborationDatabaseIdeasNotesProductivityProjectsT1TasksWikiWorkspace

Properties

Name Type Description
object string Always "user".
id string Unique identifier for the user.
View JSON Schema on GitHub

JSON Schema

notion-partialuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PartialUser",
  "title": "PartialUser",
  "type": "object",
  "description": "A partial User object containing only the object type and ID. Used in created_by and last_edited_by fields.",
  "properties": {
    "object": {
      "type": "string",
      "description": "Always \"user\".",
      "const": "user"
    },
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier for the user."
    }
  },
  "required": [
    "object",
    "id"
  ]
}