{ "additionalProperties": false, "properties": { "in": { "description": "Story scope. Omit for body only, pass a StoryLocator for a single story, or 'all' for body + every revision-capable non-body story.", "oneOf": [ { "$ref": "#/$defs/StoryLocator" }, { "const": "all" } ] }, "limit": { "description": "Maximum number of tracked changes to return.", "type": "integer" }, "offset": { "description": "Number of tracked changes to skip for pagination.", "type": "integer" }, "type": { "description": "Filter by change type: 'insert', 'delete', or 'format'.", "enum": [ "insert", "delete", "format" ] } }, "type": "object"}
Raw output schema
{ "additionalProperties": false, "properties": { "evaluatedRevision": { "type": "string" }, "items": { "items": { "additionalProperties": false, "properties": { "address": { "$ref": "#/$defs/TrackedChangeAddress" }, "author": { "type": "string" }, "authorEmail": { "type": "string" }, "authorImage": { "type": "string" }, "date": { "type": "string" }, "excerpt": { "type": "string" }, "handle": { "$ref": "#/$defs/ResolvedHandle" }, "id": { "type": "string" }, "type": { "enum": [ "insert", "delete", "format" ] }, "wordRevisionIds": { "additionalProperties": false, "description": "Raw imported Word OOXML revision IDs (`w:id`) from the source document when available. This is provenance metadata, not the canonical SuperDoc tracked-change ID. Replacements may include both `insert` and `delete` IDs.", "properties": { "delete": { "description": "Raw imported Word OOXML revision ID (`w:id`) from a `<w:del>` element when this logical change includes a deletion.", "type": "string" }, "format": { "description": "Raw imported Word OOXML revision ID (`w:id`) from a `<w:rPrChange>` element when this logical change includes a formatting revision.", "type": "string" }, "insert": { "description": "Raw imported Word OOXML revision ID (`w:id`) from a `<w:ins>` element when this logical change includes an insertion.", "type": "string" } }, "type": "object" } }, "required": [ "id", "handle", "address", "type" ], "type": "object" }, "type": "array" }, "page": { "$ref": "#/$defs/PageInfo" }, "total": { "minimum": 0, "type": "integer" } }, "required": [ "evaluatedRevision", "total", "items", "page" ], "type": "object"}
Was this page helpful?
⌘I
Assistant
Responses are generated using AI and may contain mistakes.