File size: 1,055 Bytes
b7a7f32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from typing import List
from pydantic import Json

departments: List[Json] = [
    {
        "name": "Department of Computer Science and Engineering",
        "school_id": 1,
    },
    {
        "name": "Department of Mechanical Engineering",
        "school_id": 2,
    },
    {
        "name": "Department of Electrical and Electronics Engineering",
        "school_id": 2,
    },
    {
        "name": "Department of Management",
        "school_id": 5,
    },
    {
        "name": "Department of Law",
        "school_id": 4,
    },
    {
        "name": "Department of Medical Sciences",
        "school_id": 3,
    },
    {
        "name": "Department of Music",
        "school_id": 6,
    },
    {
        "name": "Department of Fine Arts",
        "school_id": 6,
    },
    {
        "name": "Department of Education",
        "school_id": 7,
    },
    {
        "name": "Department of Mathematics",
        "school_id": 1,
    },
    {
        "name": "Department of Environemental Science and Engineering",
        "school_id": 1,
    },
]