dbmdz/digitalcollections-model

Simplify model hierarchy of field description and other localizedStructuredContent fields

Closed this issue · 1 comments

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.

Done with #64.