A single document in a draft. A document has no path of its own: a path belongs to a file in the draft's tree, which points at the document holding its content.

interface DraftDocument {
    documentId: string;
    draftId: string;
    kernel: JupyterKernel;
}

Properties

documentId: string

The id of the document.

draftId: string

The id of the draft the document belongs to.

The current status of the kernel for the requested document.