Files
enginex-mthreads-vllm/benchmarks/structured_schemas/structured_schema_1.json
2026-01-19 10:38:50 +08:00

20 lines
474 B
JSON

{
"type": "object",
"properties": {
"name": { "type": "string" },
"email": { "type": "string" },
"street": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"zip": { "type": "string" },
"phone": { "type": "string" },
"website": { "type": "string" },
"company": { "type": "string" },
"age": { "type": "integer" }
},
"required": [
"name",
"email"
]
}