Variable RoomAttributeValueIncludeSchemaConst
RoomAttributeValueIncludeSchema: ZodObject<
{
attribute: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<ZodArray<ZodEnum<{ id: ...; name: ... }>>>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<{ id: ...; name: ... }, $strip>,
>,
>;
},
$strip,
>,
],
>,
>;
room: ZodOptional<
ZodUnion<
[
ZodCoercedBoolean<unknown>,
ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{
buildingId: ...;
code: ...;
floor: ...;
id: ...;
name: ...;
uuid: ...;
},
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
buildingId: ...;
code: ...;
floor: ...;
id: ...;
name: ...;
uuid: ...;
},
$strip,
>,
>,
>;
},
$strip,
>,
],
>,
>;
},
$strip,
> = ...