@shortcut/client
    Preparing search index...

    Interface Doc

    interface Doc {
        archived?: boolean;
        collections?: NestedCollectionSlimList;
        content_html?: string | null;
        content_markdown?: string | null;
        created_at?: string;
        creator?: MemberSlim;
        entity_type?: "doc";
        followers?: NestedMemberSlimList;
        id?: string;
        title?: string;
        updated_at?: string;
        uri?: string;
    }
    Index

    Properties

    archived?: boolean

    A true/false boolean indicating if the Doc has been archived.

    The Collections the Doc belongs to.

    content_html?: string | null

    The Doc content in HTML format. Only present on get-doc when content_format=html.

    content_markdown?: string | null

    The Doc content in Markdown format. Only present on get-doc when content_format is omitted or 'markdown'.

    created_at?: string

    The time/date the Doc was created.

    date-time

    creator?: MemberSlim

    The Member who created the Doc.

    entity_type?: "doc"

    The type of this entity.

    The Members who followers of the Doc.

    id?: string

    The unique ID of the Doc.

    uuid

    title?: string

    The title of the Doc.

    1

    256

    updated_at?: string

    The time/date the Doc was last updated.

    date-time

    uri?: string

    A resolvable URI for the entity.

    2048

    ^https?://.+$