Delete unused enumset test schema

This commit is contained in:
Graham Esau 2024-09-09 22:08:46 +01:00 committed by GitHub
parent 65346d6683
commit 092dc17ae4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,18 +0,0 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Set_of_Foo",
"type": "array",
"uniqueItems": true,
"items": {
"$ref": "#/$defs/Foo"
},
"$defs": {
"Foo": {
"type": "string",
"enum": [
"Bar",
"Baz"
]
}
}
}