Variable $CampusInputUpdateViewConst

$CampusInputUpdateView: {
    properties: {
        apelido: {
            description: "Apelido do campus.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
        cnpj: {
            description: "CNPJ do campus.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
        endereco: {
            allOf: readonly [{
                $ref: "#/components/schemas/EnderecoInputView";
            }];
            description: "Dados de entrada para um endereco.";
            kind: "type";
            nullable: false;
        };
        nomeFantasia: {
            description: "Nome fantasia do campus.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
        razaoSocial: {
            description: "Razão social do campus.";
            minLength: 1;
            nullable: false;
            type: "string";
        };
    };
    type: "object";
} = ...