ComponentRegistrySchema: ZodObject<{
    APIVersion: ZodNullable<ZodString>;
    Description: ZodNullable<ZodString>;
    ID: ZodString;
    Name: ZodString;
    Status: ZodNullable<ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Deprecated">, ZodLiteral<"Offline">]>>;
    Type: ZodNullable<ZodUnion<[ZodLiteral<"Internal">, ZodLiteral<"Private">, ZodLiteral<"Public">]>>;
    URI: ZodNullable<ZodString>;
    __mj_CreatedAt: ZodDate;
    __mj_UpdatedAt: ZodDate;
}, "strip", ZodTypeAny, {
    APIVersion?: string;
    Description?: string;
    ID?: string;
    Name?: string;
    Status?: "Active" | "Deprecated" | "Offline";
    Type?: "Public" | "Internal" | "Private";
    URI?: string;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}, {
    APIVersion?: string;
    Description?: string;
    ID?: string;
    Name?: string;
    Status?: "Active" | "Deprecated" | "Offline";
    Type?: "Public" | "Internal" | "Private";
    URI?: string;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}> = ...

zod schema definition for the entity MJ: Component Registries

Type declaration

  • APIVersion: ZodNullable<ZodString>
  • Description: ZodNullable<ZodString>
  • ID: ZodString
  • Name: ZodString
  • Status: ZodNullable<ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Deprecated">, ZodLiteral<"Offline">]>>
  • Type: ZodNullable<ZodUnion<[ZodLiteral<"Internal">, ZodLiteral<"Private">, ZodLiteral<"Public">]>>
  • URI: ZodNullable<ZodString>
  • __mj_CreatedAt: ZodDate
  • __mj_UpdatedAt: ZodDate

Type declaration

  • Optional APIVersion?: string
  • Optional Description?: string
  • Optional ID?: string
  • Optional Name?: string
  • Optional Status?: "Active" | "Deprecated" | "Offline"
  • Optional Type?: "Public" | "Internal" | "Private"
  • Optional URI?: string
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date

Type declaration

  • Optional APIVersion?: string
  • Optional Description?: string
  • Optional ID?: string
  • Optional Name?: string
  • Optional Status?: "Active" | "Deprecated" | "Offline"
  • Optional Type?: "Public" | "Internal" | "Private"
  • Optional URI?: string
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date