Variable $BlocoInputUpdateDtoConst

$BlocoInputUpdateDto: {
    properties: {
        campus: {
            allOf: readonly [{
                $ref: "#/components/schemas/CampusFindOneInputDto";
            }];
            description: "Campus.";
            nullable: false;
        };
        codigo: {
            description: "Código do Bloco.";
            nullable: false;
            type: "string";
        };
        nome: {
            description: "Nome do Bloco.";
            nullable: false;
            type: "string";
        };
    };
    type: "object";
} = ...