1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
# JSON schema
JSON schemata are a powerful tool for expressing the expected structure of your input. You can use it to validate your input before you even send it to your C++ backend, which will result in better UX.
It can also be used for code generation. For instance, tools such as https://app.quicktype.io/ allow you to generate code in multiple programming languages from the JSON schema (even though the validations are usually omitted).
If you are interacting with Python, we warmly recommend https://docs.pydantic.dev/latest/integrations/datamodel_code_generator/. This allows you to generate Pydantic dataclasses, including the validation, from the JSON schema.
Note that this is only supported for JSON, not for other formats.
## Basic idea
Suppose you have a struct like this:
```cpp
struct Person {
std::string first_name;
std::string last_name;
rfl::Email email;
std::vector<Person> children;
float salary;
};
```
You can generate a JSON schema like this:
```cpp
const std::string json_schema = rfl::json::to_schema<Person>(rfl::json::pretty);
```
You do not have to pass `rfl::json::pretty`, but for the purposes of this documentation it is better to do so.
This will result in the following JSON schema:
```json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$ref": "#/definitions/Person",
"definitions": {
"Person": {
"type": "object",
"properties": {
"children": {
"type": "array",
"items": {
"$ref": "#/definitions/Person"
}
},
"email": {
"type": "string",
"pattern": "^[a-zA-Z0-9._%+\\-]+@[a-zA-Z0-9.\\-]+\\.[a-zA-Z]{2,}$"
},
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"salary": {
"type": "number"
}
},
"required": [
"children",
"email",
"first_name",
"last_name",
"salary"
]
}
}
}
```
You can insert this into the tools mentioned above and see the generated code.
## Adding descriptions
JSON schemata also often contain descriptions. reflect-cpp supports this as well.
```cpp
struct Person {
std::string first_name;
std::string last_name;
rfl::Description<"Must be a proper email in the form xxx@xxx.xxx.",
rfl::Email>
email;
rfl::Description<
"The person's children. Pass an empty array for no children.",
std::vector<Person>>
children;
float salary;
};
```
```cpp
const std::string json_schema = rfl::json::to_schema<Person>(rfl::json::pretty);
```
```json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$ref": "#/definitions/Person",
"definitions": {
"Person": {
"type": "object",
"properties": {
"children": {
"type": "array",
"description": "The person's children. Pass an empty array for no children.",
"items": {
"$ref": "#/definitions/Person"
}
},
"email": {
"type": "string",
"description": "Must be a proper email in the form xxx@xxx.xxx.",
"pattern": "^[a-zA-Z0-9._%+\\-]+@[a-zA-Z0-9.\\-]+\\.[a-zA-Z]{2,}$"
},
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"salary": {
"type": "number"
}
},
"required": [
"children",
"email",
"first_name",
"last_name",
"salary"
]
}
}
}
```
You also add a description to the entire JSON schema:
```cpp
const std::string json_schema = rfl::json::to_schema<
rfl::Description<"JSON schema that describes the required "
"attributes for the person class.",
Person>>(rfl::json::pretty);
```
```json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$ref": "#/definitions/Person",
"description": "JSON schema that describes the required attributes for the person class.",
"definitions": {
"Person": {
"type": "object",
"properties": {
"children": {
"type": "array",
"description": "The person's children. Pass an empty array for no children.",
"items": {
"$ref": "#/definitions/Person"
}
},
"email": {
"type": "string",
"description": "Must be a proper email in the form xxx@xxx.xxx.",
"pattern": "^[a-zA-Z0-9._%+\\-]+@[a-zA-Z0-9.\\-]+\\.[a-zA-Z]{2,}$"
},
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"salary": {
"type": "number"
}
},
"required": [
"children",
"email",
"first_name",
"last_name",
"salary"
]
}
}
}
```
|