Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the object. |
| collectionId | string | Identifier for the associated collection. |
| parentDocumentId | string | Identifier for the document this is a child of, if any. |
| title | string | The title of the document. |
| fullWidth | boolean | Whether this document should be displayed in a full-width view. |
| icon | string | An emoji or icon associated with the document. |
| color | string | The color of the document icon in hex format. |
| text | string | The text content of the document, contains markdown formatting |
| data | object | The body of the document as a Prosemirror document, returned in place of text when requested. |
| url | string | A URL path to access the document. |
| urlId | string | A short unique ID that can be used to identify the document as an alternative to the UUID |
| collaboratorIds | array | Identifiers of users who have edited the document. |
| tasks | object | Task completion counts for the document. |
| templateId | string | Unique identifier for the template this document was created from, if any |
| revision | number | A number that is auto incrementing with every revision of the document that is saved |
| createdAt | string | The date and time that this object was created |
| createdBy | object | |
| updatedAt | string | The date and time that this object was last changed |
| updatedBy | object | |
| publishedAt | string | The date and time that this object was published |
| dataAttributes | array | |
| archivedAt | string | The date and time that this object was archived |
| deletedAt | string | The date and time that this object was deleted |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Document",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the object.",
"readOnly": true,
"format": "uuid"
},
"collectionId": {
"type": "string",
"description": "Identifier for the associated collection.",
"format": "uuid",
"nullable": true
},
"parentDocumentId": {
"type": "string",
"description": "Identifier for the document this is a child of, if any.",
"format": "uuid",
"nullable": true
},
"title": {
"type": "string",
"description": "The title of the document.",
"example": "Welcome to Acme Inc"
},
"fullWidth": {
"type": "boolean",
"description": "Whether this document should be displayed in a full-width view."
},
"icon": {
"type": "string",
"nullable": true,
"description": "An emoji or icon associated with the document.",
"example": "\ud83c\udf89"
},
"color": {
"type": "string",
"nullable": true,
"description": "The color of the document icon in hex format."
},
"text": {
"type": "string",
"description": "The text content of the document, contains markdown formatting",
"example": "\u2026"
},
"data": {
"type": "object",
"nullable": true,
"description": "The body of the document as a Prosemirror document, returned in place of text when requested."
},
"url": {
"type": "string",
"description": "A URL path to access the document.",
"readOnly": true
},
"urlId": {
"type": "string",
"description": "A short unique ID that can be used to identify the document as an alternative to the UUID",
"example": "hDYep1TPAM"
},
"collaboratorIds": {
"type": "array",
"description": "Identifiers of users who have edited the document.",
"items": {
"type": "string",
"format": "uuid"
}
},
"tasks": {
"type": "object",
"description": "Task completion counts for the document.",
"properties": {
"completed": {
"type": "number"
},
"total": {
"type": "number"
}
}
},
"templateId": {
"type": "string",
"description": "Unique identifier for the template this document was created from, if any",
"format": "uuid"
},
"revision": {
"type": "number",
"description": "A number that is auto incrementing with every revision of the document that is saved",
"readOnly": true
},
"createdAt": {
"type": "string",
"description": "The date and time that this object was created",
"readOnly": true,
"format": "date-time"
},
"createdBy": {
"$ref": "#/components/schemas/User"
},
"updatedAt": {
"type": "string",
"description": "The date and time that this object was last changed",
"readOnly": true,
"format": "date-time"
},
"updatedBy": {
"$ref": "#/components/schemas/User"
},
"publishedAt": {
"type": "string",
"nullable": true,
"description": "The date and time that this object was published",
"readOnly": true,
"format": "date-time"
},
"dataAttributes": {
"type": "array",
"nullable": true,
"items": {
"$ref": "#/components/schemas/DocumentDataAttribute"
}
},
"archivedAt": {
"type": "string",
"nullable": true,
"description": "The date and time that this object was archived",
"readOnly": true,
"format": "date-time"
},
"deletedAt": {
"type": "string",
"nullable": true,
"description": "The date and time that this object was deleted",
"readOnly": true,
"format": "date-time"
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/document"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.