changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "document": {
+ "description": "The document metadata (body text excluded).",
+ "properties": {
+ "customMetadata": {
+ "description": "Map of custom metadata field names to string values.",
+ "type": "object"
+ },
+ "id": {
+ "description": "Scrivener UUID of the document.",
+ "type": "string"
+ },
+ "includeInCompile": {
+ "description": "Whether the document is included in compile.",
+ "type": "boolean"
+ },
+ "keywords": {
+ "description": "Keywords assigned to the document.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "label": {
+ "description": "Label name, if set.",
+ "type": "string"
+ },
+ "notes": {
+ "description": "Inspector notes, if set.",
+ "type": "string"
+ },
+ "path": {
+ "description": "Binder path of the document.",
+ "type": "string"
+ },
+ "status": {
+ "description": "Status name, if set.",
+ "type": "string"
+ },
+ "synopsis": {
+ "description": "Synopsis / index-card text, if set.",
+ "type": "string"
+ },
+ "title": {
+ "description": "Document title.",
+ "type": "string"
+ },
+ "type": {
+ "description": "Item type: \"Text\", \"Folder\", or \"Other\".",
+ "type": "string"
+ },
+ "wordCount": {
+ "description": "Word count of the document body.",
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "type",
+ "path"
+ ],
+ "type": "object"
+ },
+ "location": {
+ "description": "Where the document lives: \"active\", \"trash\", or \"unknown\".",
+ "type": "string"
+ },
+ "metadata": {
+ "description": "Derived metadata map (synopsis, notes, keywords, status, label) as strings.",
+ "type": "object"
+ },
+ "path": {
+ "description": "Ancestor chain from the binder root to the document.",
+ "items": {
+ "properties": {
+ "id": {
+ "description": "UUID of the ancestor binder item.",
+ "type": "string"
+ },
+ "title": {
+ "description": "Title of the ancestor item.",
+ "type": "string"
+ },
+ "type": {
+ "description": "Type of the ancestor item.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "document",
+ "path",
+ "metadata",
+ "location"
+ ],
+ "type": "object"
+}