We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a51a292 + e965e11 commit 0651e95Copy full SHA for 0651e95
mavis/reporting/api_client/client.py
@@ -107,8 +107,8 @@ def get_year_groups(self) -> list[dict]:
107
# https://www.datadictionary.nhs.uk/attributes/person_gender_code.html
108
def get_genders(self) -> list[dict]:
109
return [
110
- {"value": "2", "text": "Female"},
111
- {"value": "1", "text": "Male"},
112
- {"value": "9", "text": "Other"},
113
- {"value": "0", "text": "Unknown"},
+ {"value": "female", "text": "Female"},
+ {"value": "male", "text": "Male"},
+ {"value": "not specified", "text": "Not specified"},
+ {"value": "not known", "text": "Not known"},
114
]
0 commit comments