Variable: ContainerForProjectFeaturesSchema
ts
const ContainerForProjectFeaturesSchema: ZodObject<{
features: ZodOptional<ZodArray<ZodObject<{
feature: ZodOptional<ZodString>;
imageUri: ZodOptional<ZodString>;
localisedDescription: ZodOptional<ZodString>;
localisedName: ZodOptional<ZodString>;
prerequisites: ZodOptional<ZodArray<ZodString>>;
projectId: ZodOptional<ZodNumber>;
state: ZodOptional<ZodCustom<string & object | "ENABLED" | "DISABLED" | "COMING_SOON", string & object | "ENABLED" | "DISABLED" | "COMING_SOON">>;
toggleLocked: ZodOptional<ZodBoolean>;
}, $loose>>>;
}, $loose>;Defined in: src/cloud/models/containerForProjectFeatures.ts:6
The list of features on a project.