Source Wiki (External APIs)
    • Categories
      • List categories (paginated)
        GET
      • Create a category
        POST
      • Get a single category
        GET
      • Update a category
        PATCH
      • Delete a category
        DELETE
    • Spaces
      • List spaces in a category (paginated)
        GET
      • Create a space
        POST
      • Get a single space
        GET
      • Update a space
        PATCH
      • Delete a space
        DELETE
    • Source Items
      • ProseMirror JSON Schema Reference
      • List source items in a space (paginated)
        GET
      • Create a source item
        POST
      • Get a single source item
        GET
      • Update a source item
        PATCH
      • Delete a source item
        DELETE
    • Schemas
      • User
      • SourceDocument
      • Category
      • Space
      • SourceItem
      • PublishedCategory
      • SuccessEnvelope
      • PaginationMeta
      • PaginationLinks
      • ValidationErrorResponse
      • UnauthenticatedResponse
      • NotFoundResponse
      • ConflictResponse

    SourceDocument

    A version of a source item's content

    {
        "id": 55,
        "source_item_id": 12,
        "title": "Getting Started Guide",
        "contents": "<h1>Getting Started</h1><p>Welcome to the guide.</p>",
        "json_content": {
            "type": "doc",
            "content": [
                {}
            ]
        },
        "status": "draft",
        "is_current": true,
        "version": 3,
        "version_note": "Major revision",
        "tiptap_version": 2,
        "word_count": 420,
        "read_time_minutes": 2,
        "featured_in_updates": false,
        "published_at": "2019-08-24T14:15:22.123Z",
        "created_at": "2019-08-24T14:15:22.123Z",
        "updated_at": "2019-08-24T14:15:22.123Z"
    }
    Built with