Properties
| Name | Type | Description |
|---|---|---|
| country | string | |
| vaccinations | array | |
| healthRisks | array | |
| drinkingWater | string | |
| medicalFacilities | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/basetrip/refs/heads/main/json-schema/healthinfo.json",
"title": "HealthInfo",
"type": "object",
"properties": {
"country": {
"type": "string"
},
"vaccinations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"requirement": {
"type": "string",
"enum": [
"Required",
"Recommended",
"Optional"
]
}
}
}
},
"healthRisks": {
"type": "array",
"items": {
"type": "string"
}
},
"drinkingWater": {
"type": "string",
"enum": [
"Safe",
"Unsafe",
"Boil Advisories"
]
},
"medicalFacilities": {
"type": "string",
"enum": [
"Excellent",
"Good",
"Limited",
"Very Limited"
]
}
}
}