File size: 2,601 Bytes
09b8d72
 
 
 
 
 
 
 
ace51eb
09b8d72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
license: mit
---

Certainly! Here’s the dataset description in Markdown format:

---

# All Universities in Turkey Dataset

## Description
This dataset contains detailed information about various universities. Each record represents a single university and includes attributes such as the university's name, type, city, website, address, logo URL, and a button for accessing additional details. This data is typically extracted from a web page listing universities.

## Fields

### 1. `id`
- **Type**: String
- **Description**: A unique identifier for the university, extracted from the `data-id` attribute in the HTML. This ID is used to identify the university in other related datasets or systems.
- **Example**: `"173499"`

### 2. `name`
- **Type**: String
- **Description**: The full name of the university, as displayed on the web page. This is the official name of the institution.
- **Example**: `"ABDULLAH GÜL ÜNİVERSİTESİ"`

### 3. `type`
- **Type**: String
- **Description**: The type of the university, such as whether it is a public (`Devlet`) or private (`Özel`) institution.
- **Example**: `"Devlet"`

### 4. `city`
- **Type**: String
- **Description**: The city where the university is located.
- **Example**: `"Kayseri"`

### 5. `website`
- **Type**: String
- **Description**: The official website URL of the university. This is a hyperlink that leads to the university's official website.
- **Example**: `"http://www.agu.edu.tr"`

### 6. `address`
- **Type**: String
- **Description**: The physical address of the university. This typically includes the street name, neighborhood, and city.
- **Example**: `"Barbaros Mahallesi Sümer Kampüsü Kocasinan-KAYSERİ"`

### 7. `logo`
- **Type**: String (URL)
- **Description**: The URL of the university's logo image. This link points to an image file representing the university's logo.
- **Example**: `"assets/img/logo/173499.png"`

### 8. `details_button`
- **Type**: Object
- **Description**: Information about the button used to access additional details about the university.
  - **`text`**: The text displayed on the button.
    - **Type**: String
    - **Example**: `"Üniversite Detayı"`
  - **`id`**: The HTML `id` attribute of the button.
    - **Type**: String
    - **Example**: `"uniDetay"`
  - **`modal_target`**: The target modal attribute, indicating the modal window that will open when the button is clicked.
    - **Type**: String
    - **Example**: `"#universiteModal"`

---

This Markdown description provides a detailed overview of each field in the dataset, including type, description, and examples.