Skip to content

Variable: ContentBodyConversionInputSchema

ts
const ContentBodyConversionInputSchema: ZodObject<{
  allowCache: ZodOptional<ZodBoolean>;
  body: ZodObject<{
     representation: ZodEnum<{
        anonymous_export_view: "anonymous_export_view";
        atlas_doc_format: "atlas_doc_format";
        editor: "editor";
        editor2: "editor2";
        export_view: "export_view";
        plain: "plain";
        raw: "raw";
        storage: "storage";
        styled_view: "styled_view";
        view: "view";
        wiki: "wiki";
     }>;
     value: ZodString;
  }, $loose>;
  contentIdContext: ZodOptional<ZodString>;
  embeddedContentRender: ZodOptional<ZodEnum<{
     current: "current";
     version-at-save: "version-at-save";
  }>>;
  expand: ZodOptional<ZodArray<ZodString>>;
  spaceKeyContext: ZodOptional<ZodString>;
  to: ZodString;
}, $loose>;

Defined in: src/v1/models/contentBodyConversionInput.ts:5