Variable $EnderecoInputViewConst
$EnderecoInputView: {
properties: {
bairro: {
description: "Bairro.";
nullable: false;
type: "string";
};
cep: {
description: "Código postal (CEP).";
nullable: false;
type: "string";
x-unispec-constraint-cep: true;
};
cidade: {
allOf: readonly [{
$ref: "#/components/schemas/CidadeFindOneInputView";
}];
description: "Dados de entrada para encontrar uma cidade por id.";
kind: "type";
nullable: false;
};
complemento: {
description: "Complemento.";
nullable: true;
type: "string";
};
logradouro: {
description: "Logradouro.";
nullable: false;
type: "string";
};
numero: {
description: "Número.";
maximum: 99999;
minimum: 0;
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";
} = ...