Type alias CreateDraftParams

CreateDraftParams: {
    defaultLicense: License;
    links: {
        metadata: string[];
        pdf: string[];
    };
    researchFields: ResearchField[];
    title: string;
}

Required parameters for creating a new draft node

Type declaration

  • defaultLicense: License

    The license that should apply to the content of the node

  • links: {
        metadata: string[];
        pdf: string[];
    }

    Must be included for backward compatibility

    • metadata: string[]
    • pdf: string[]
  • researchFields: ResearchField[]

    Research fields the node is associated with

  • title: string

    Human-readable title of the node

Generated using TypeDoc