MQTTSuite
Loading...
Searching...
No Matches
anonymous_namespace{issue-70-root-schema-constructor.cpp} Namespace Reference

Classes

class  store_ptr_err_handler

Variables

static json person_schema

Variable Documentation

◆ person_schema

json anonymous_namespace{issue-70-root-schema-constructor.cpp}::person_schema
static
Initial value:
= R"(
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "A person",
"properties": {
"name": {
"description": "Name",
"type": "string"
},
"age": {
"description": "Age of the person",
"type": "number",
"minimum": 2,
"maximum": 200
},
"phones": {
"type": "array",
"items": {
"type": "number"
}
}
},
"required": [
"name",
"age"
],
"additionalProperties": false,
"type": "object"
})"_json

Definition at line 22 of file issue-70-root-schema-constructor.cpp.