{
"type":"object",
"properties": {
"foo": {
"type": "string"
},
"bar": {
"type": "integer"
},
"baz": {
"type": "boolean"
}
}
}
data class BaseJsonObject(
@JsonProperty("type")
val type: String,
@JsonProperty("properties")
@JsonRawValue
val properties: String
)