type Doctorate struct {
CandidateId int `json:"candidateId"`
College string `json:"college"`
University string `json:"university"`
Start_year int `json:"startYear"`
End_year int `json:"endYear"`
}
type Graduation struct {
CandidateId int `json:"candidateId"`
College string `json:"college"`
University string `json:"university"`
Start_year int `json:"startYear"`
End_year int `json:"endYear"`
Course string `json:"course"`
Percentage float64 `json:"percentage"`
}
type Highschool struct {
CandidateId int `json:"candidateId"`
School_name string `json:"schoolName"`
Board string `json:"board"`
Percentage float64 `json:"percentage"`
Year int `json:"passingYear"`
}
type Intermediate struct {
CandidateId int `json:"candidateId"`
School_name string `json:"schoolName"`
Board string `json:"board"`
Percentage float64 `json:"percentage"`
Year int `json:"passingYear"`
}
type PostGrad struct {
CandidateId int `json:"candidateId"`
College string `json:"college"`
University string `json:"university"`
Start_year int `json:"startYear"`
End_year int `json:"endYear"`
Course string `json:"course"`
Percentage float64 `json:"percentage"`
}