Variable $CampusFindOneResultDtoConst

$CampusFindOneResultDto: {
    properties: {
        apelido: {
            description: "Apelido do Campus.";
            nullable: false;
            type: "string";
        };
        cnpj: {
            description: "CNPJ do Campus.";
            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";
        };
        endereco: {
            allOf: readonly [{
                $ref: "#/components/schemas/EnderecoFindOneResultDto";
            }];
            description: "Endereço do Campus";
            nullable: false;
        };
        id: {
            description: "ID do Registro.";
            format: "uuid";
            nullable: false;
            type: "string";
        };
        nomeFantasia: {
            description: "Nome fantasia do Campus.";
            nullable: false;
            type: "string";
        };
        razaoSocial: {
            description: "Razão social do Campus.";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["nomeFantasia", "razaoSocial", "apelido", "cnpj", "endereco", "id", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...