blob: 8e5284c43700c328b86b10dd02c8ab2af535c8c4 [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "json_validator test schema with reference",
"description": "A basic JSON schema with a reference",
"type": "object",
"$ref": "#/$defs/root_schema",
"$defs": {
"root_schema": {
"properties": {
"message": {
"description": "An arbitrary message",
"type": "string"
},
"extra_field": {
"type": "number"
}
},
"required": [
"message",
"extra_field"
]
}
}
}