Variable $EnderecoInputDtoConst

$EnderecoInputDto: {
    properties: {
        bairro: {
            description: "Bairro";
            nullable: false;
            type: "string";
        };
        cep: {
            description: "";
            nullable: false;
            type: "string";
        };
        cidade: {
            allOf: readonly [{
                $ref: "#/components/schemas/CidadeFindOneInputDto";
            }];
            description: "Cidade";
            nullable: false;
        };
        complemento: {
            description: "Complemento";
            nullable: true;
            type: "string";
        };
        logradouro: {
            description: "Logradouro";
            nullable: false;
            type: "string";
        };
        numero: {
            description: "Número";
            nullable: false;
            type: "integer";
        };
        pontoReferencia: {
            description: "Ponto de referência";
            nullable: true;
            type: "string";
        };
    };
    required: readonly ["cep", "logradouro", "numero", "bairro", "complemento", "pontoReferencia", "cidade"];
    type: "object";
} = ...