Variable $BlocoFindOneResultDtoConst

$BlocoFindOneResultDto: {
    properties: {
        campus: {
            allOf: readonly [{
                $ref: "#/components/schemas/CampusFindOneResultDto";
            }];
            description: "Campus.";
            nullable: false;
        };
        codigo: {
            description: "Código do Bloco.";
            nullable: false;
            type: "string";
        };
        dateCreated: {
            description: "Data de Criação do Registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        dateDeleted: {
            description: "Data de Exclusão do Registro.";
            format: "date-time";
            nullable: true;
            type: "string";
        };
        dateUpdated: {
            description: "Data de Atualização do Registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        id: {
            description: "ID do Registro.";
            format: "uuid";
            nullable: false;
            type: "string";
        };
        imagemCapa: {
            allOf: readonly [{
                $ref: "#/components/schemas/ImagemFindOneResultDto";
            }];
            description: "Imagem de capa";
            nullable: true;
        };
        nome: {
            description: "Nome do Bloco.";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["nome", "codigo", "campus", "imagemCapa", "id", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...