Provide me JSON format of dummy user information of the following format: {name: string, dob: string, gender: string, nationality: string, visaForCountry: string, currentCountry: string, purposeOfVisit: string, specialRequirements: string[], specialInformationList: string[], lengthOfVisa: string, passportNumber: string}
Here is a JSON format of dummy user information based on your specified structure:
{
"name": "John Doe",
"dob": "1990-01-01",
"gender": "Male",
"nationality": "American",
"visaForCountry": "Canada",
"currentCountry": "United States",
"purposeOfVisit": "Tourism",
"specialRequirements": ["Wheelchair access", "Vegetarian meals"],
"specialInformationList": ["Allergic to peanuts", "Requires medication"],
"lengthOfVisa": "6 months",
"passportNumber": "123456789"
}