Properties
| Name | Type | Description |
|---|---|---|
| destination | string | Destination country code |
| passport | string | Passport country code |
| requirement | string | |
| maxStay | integer | Maximum stay in days |
| notes | 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/visainfo.json",
"title": "VisaInfo",
"type": "object",
"properties": {
"destination": {
"type": "string",
"description": "Destination country code"
},
"passport": {
"type": "string",
"description": "Passport country code"
},
"requirement": {
"type": "string",
"enum": [
"Visa Free",
"Visa on Arrival",
"e-Visa",
"Visa Required",
"No Admission"
]
},
"maxStay": {
"type": "integer",
"description": "Maximum stay in days"
},
"notes": {
"type": "string"
}
}
}