I have this JSON and I need to extract 2 strings
- Childs of
"properties"in a column separated by commas. - Childs of
"title"in a column separated by commas.
The results should be
-
BoxTp, boxNo -
Box Type, Box Number
{
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"BoxTp": {
"title": "Box Type",
"type": [
"null",
"string"
],
"description": "Type"
},
"boxNo": {
"title": "Box Number",
"type": [
"integer",
"null"
],
"description": "Box No.",
"format": "int32"
}
}
}