From abd7b8c1421be6e8ad5348b7ba65f4df5bd78d20 Mon Sep 17 00:00:00 2001 From: sukhpreetsamagra <46666190+sukhpreetsamagra@users.noreply.github.com> Date: Thu, 29 Sep 2022 23:12:34 +0530 Subject: [PATCH] Create Candidate.md --- Schemas/Candidate.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Schemas/Candidate.md diff --git a/Schemas/Candidate.md b/Schemas/Candidate.md new file mode 100644 index 0000000..5bd79c2 --- /dev/null +++ b/Schemas/Candidate.md @@ -0,0 +1,22 @@ +| # | Field | Description | Search Enabled | Filter Enabled | Mandatory | Type | Source Type | +| -- | ----------------- | ----------------------------------------------------------- | -------------- | -------------- | --------- | ------ | -------------- | +| 1 | Id | Unique ID | FALSE | FALSE | Yes | string | auto generated | +| 2 | ref\_id | Candidate ID as per state records | TRUE | FALSE | No | string | foreign key | +| 3 | name | Name of the candidate | TRUE | FALSE | Yes | string | from state db | +| 4 | fname | Name of the candidate's father | FALSE | FALSE | No | string | from state db | +| 5 | mname | Name of the candidate's mother | FALSE | FALSE | No | string | from state db | +| 6 | gname | Name of the candidate's guardian | FALSE | FALSE | | | | +| 7 | age | age of candidate | FALSE | FALSE | Yes | string | from state db | +| 8 | gender | gender of candidate | FALSE | FALSE | Yes | string | from state db | +| 9 | mobile | Contact number for the candidate | FALSE | FALSE | No | string | from state db | +| 10 | email | Email ID of the candidate | FALSE | FALSE | No | string | from state db | +| 11 | location\_type | Urban / rural | FALSE | TRUE | Yes | string | Masters | +| 12 | district\_id | District of residence | FALSE | TRUE | Yes | string | Masters | +| 13 | block\_id | Block of residence | FALSE | TRUE | Yes | string | Masters | +| 14 | village\_id | Village of residence | FALSE | FALSE | Yes | string | Masters | +| 15 | occupation\_id | Whether candidate is a student or working as a professional | FALSE | TRUE | Yes | string | foreign key | +| 16 | function\_id | The specific job role candiate is part of | FALSE | TRUE | Yes | string | foreign key | +| 17 | institute\_id | Institute the candidate is associated with | FALSE | TRUE | No | string | from state db | +| 18 | course/ class\_id | Course candidate is associated with | FALSE | TRUE | No | string | from state db | +| 19 | workplace\_id | workplace the candidate is associated with | FALSE | TRUE | No | string | from state db | +| 20 | status | Status of candidate - active / inactive | FALSE | TRUE | Yes | string | from state db | -- GitLab