benchmarks: simplify test jsonschema (#14567)

Signed-off-by: Russell Bryant <rbryant@redhat.com>
This commit is contained in:
Russell Bryant 2025-03-11 09:39:30 -04:00 committed by GitHub
parent 1477ffc381
commit 08a1a1121d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,25 +1,19 @@
{ {
"type": "array",
"items": {
"type": "object", "type": "object",
"properties": { "properties": {
"name": { "type": "string" }, "name": { "type": "string" },
"race": { "type": "string" }, "email": { "type": "string" },
"class": { "type": "string" }, "street": { "type": "string" },
"level": { "type": "integer" }, "city": { "type": "string" },
"background": { "type": "string" }, "state": { "type": "string" },
"alignment": { "type": "string" }, "zip": { "type": "string" },
"backstory": { "type": "string" } "phone": { "type": "string" },
"website": { "type": "string" },
"company": { "type": "string" },
"age": { "type": "integer" }
}, },
"required": [ "required": [
"name", "name",
"race", "email"
"class",
"level",
"background",
"alignment",
"backstory"
] ]
}
} }