Sign in
fuchsia
/
third_party
/
github.com
/
python-jsonschema
/
jsonschema
/
refs/heads/upstream/main
/
.
/
json
/
annotations
/
test-suite.schema.json
blob: c8b17f0d54f13c7f95051559a33e35711a4c4223 [
file
] [
log
] [
blame
] [
edit
]
{
"$schema"
:
"http://json-schema.org/draft-07/schema#"
,
"type"
:
"object"
,
"properties"
:
{
"description"
:
{
"type"
:
"string"
},
"suite"
:
{
"type"
:
"array"
,
"items"
:
{
"$ref"
:
"./test-case.schema.json"
}
}
},
"required"
:
[
"description"
,
"suite"
]
}