请生成一个包含用户信息的JSON,具体要求如下:
- 姓名:字符串类型
- 年龄:整数类型
- 邮箱:字符串类型
请严格按照以下格式返回结果:
```json
{
"name": "示例姓名",
"age": 示例年龄,
"email": "示例邮箱"
}
{
"user_info": {
"name": "John Doe",
"age": 30,
"email": "johndoe@example.com",
"website": "https://johndoe.com",
"social_media": {
"twitter": "https://twitter.com/johndoe",
"linkedin": "https://linkedin.com/in/johndoe"
}
},
"address": {
"street": "123 Main St",
"city": "Wonderland",
"zip_code": "56789",
"geo_location": {
"latitude": 37.7749,
"longitude": -122.4194
}
},
"orders": [
{
"order_id": "ORD123",
"date": "2023-01-15",
"items": [
{
"product_id": "P001",
"name": "Product 1",
"image_url": "https://example.com/images/p001.jpg",
"quantity": 2,
"price": 19.99
},
{
"product_id": "P002",
"name": "Product 2",
"image_url": "https://example.com/images/p002.jpg",
"quantity": 1,
"price": 49.99
}
]
},
{
"order_id": "ORD124",
"date": "2023-02-20",
"items": [
{
"product_id": "P003",
"name": "Product 3",
"image_url": "https://example.com/images/p003.jpg",
"quantity": 3,
"price": 9.99
}
]
}
],
"total_spent": 109.95,
"membership_status": "Gold",
"coupons": ["COUPON1", "COUPON2"]
}
请生成一个包含详细用户信息的复杂JSON,具体要求如下:
- 用户信息(user_info):对象
- 姓名(name):字符串类型
- 年龄(age):整数类型
- 邮箱(email):字符串类型
- 个人网站(website):URL字符串类型
- 社交媒体(social_media):对象
- 推特(twitter):URL字符串类型
- 领英(linkedin):URL字符串类型
- 地址(address):对象
- 街道(street):字符串类型
- 城市(city):字符串类型
- 邮编(zip_code):字符串类型
- 地理位置(geo_location):对象
- 纬度(latitude):浮点数类型
- 经度(longitude):浮点数类型
- 订单(orders):数组,对象类型
- 订单ID(order_id):字符串类型
- 日期(date):字符串类型
- 商品(items):数组,对象类型
- 商品ID(product_id):字符串类型
- 名称(name):字符串类型
- 图片链接(image_url):URL字符串类型
- 数量(quantity):整数类型
- 价格(price):浮点数类型
- 总花费(total_spent):浮点数类型
- 会员状态(membership_status):字符串类型
- 优惠券(coupons):数组,字符串类型
请严格按照以下格式返回结果:
```json
{
"user_info": {
"name": "示例姓名",
"age": 示例年龄,
"email": "示例邮箱",
"website": "示例个人网站URL",
"social_media": {
"twitter": "示例推特URL",
"linkedin": "示例领英URL"
}
},
"address": {
"street": "示例街道",
"city": "示例城市",
"zip_code": "示例邮编",
"geo_location": {
"latitude": 示例纬度,
"longitude": 示例经度
}
},
"orders": [
{
"order_id": "示例订单ID",
"date": "示例日期",
"items": [
{
"product_id": "示例商品ID",
"name": "示例商品名称",
"image_url": "示例图片链接",
"quantity": 示例数量,
"price": 示例价格
},
{
"product_id": "示例商品ID",
"name": "示例商品名称",
"image_url": "示例图片链接",
"quantity": 示例数量,
"price": 示例价格
}
]
},
{
"order_id": "示例订单ID",
"date": "示例日期",
"items": [
{
"product_id": "示例商品ID",
"name": "示例商品名称",
"image_url": "示例图片链接",
"quantity": 示例数量,
"price": 示例价格
}
]
}
],
"total_spent": 示例总花费,
"membership_status": "示例会员状态",
"coupons": ["示例优惠券1", "示例优惠券2"]
}