Simplify model hierarchy of field description and other localizedStructuredContent fields
Closed this issue · 1 comments
morpheus-87 commented
Now:
"description": {
"localizedStructuredContent": {
"en": {
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Englische Beschreibung"
}
]
}
]
}
}
}
Simplified without localizedStructuredContent
key:
"description": {
"en": {
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Englische Beschreibung"
}
]
}
]
}
},
LocalizedStructuredContentImpl
should extend HashMap
.
morpheus-87 commented
Done with #64.