This type should give a clear indication of how the JSON document is structured. This could help you with building a test document yourself.

interface ChiliDocument {
    actions: DocumentAction[];
    layouts: (ChildLayout | TopLayout)[];
    pages: DocumentPage[];
    properties?: DocumentProperties | ProjectDocumentProperties;
    selectedLayoutId: string;
    stylekit: DocumentStylekit;
    variables: Variable[];
}

Properties

actions: DocumentAction[]
layouts: (ChildLayout | TopLayout)[]
pages: DocumentPage[]
selectedLayoutId: string
variables: Variable[]