Skip to content

Variable: ContentBlueprintDraftSchema

ts
const ContentBlueprintDraftSchema: ZodObject<{
  ancestors: ZodOptional<ZodNullable<ZodArray<ZodObject<{
     id: ZodString;
  }, $loose>>>>;
  space: ZodOptional<ZodObject<{
     key: ZodString;
  }, $loose>>;
  status: ZodOptional<ZodEnum<{
     current: "current";
  }>>;
  title: ZodString;
  type: ZodEnum<{
     page: "page";
  }>;
  version: ZodObject<{
     number: ZodNumber;
  }, $loose>;
}, $loose>;

Defined in: src/v1/models/contentBlueprintDraft.ts:4