DatasetResourceConfigSchema: ZodObject<{
    description: ZodOptional<ZodString>;
    id: ZodOptional<ZodString>;
    name: ZodString;
    properties: ZodObject<{}, "strip", ZodTypeAny, {}, {}>;
    slug: ZodOptional<ZodString>;
    type: ZodLiteral<"dataset">;
}, "strip", ZodTypeAny, {
    description?: string;
    id?: string;
    name?: string;
    properties?: {};
    slug?: string;
    type?: "dataset";
}, {
    description?: string;
    id?: string;
    name?: string;
    properties?: {};
    slug?: string;
    type?: "dataset";
}> = ...

The schema for a dataset resource configuration.

Type declaration

  • description: ZodOptional<ZodString>
  • id: ZodOptional<ZodString>
  • name: ZodString
  • properties: ZodObject<{}, "strip", ZodTypeAny, {}, {}>
  • slug: ZodOptional<ZodString>
  • type: ZodLiteral<"dataset">

Type declaration

  • Optional description?: string
  • Optional id?: string
  • Optional name?: string
  • Optional properties?: {}
    • Optional slug?: string
    • Optional type?: "dataset"

    Type declaration

    • Optional description?: string
    • Optional id?: string
    • Optional name?: string
    • Optional properties?: {}
      • Optional slug?: string
      • Optional type?: "dataset"

      Generated using TypeDoc