I found that in
JournalArticle database table there is a field
content, which contains my structured data:
1content: <?xml version="1.0" encoding="UTF-8"?>
2
3<root default-locale="en_US" available-locales="en_US,ru_RU">
4 <dynamic-element instance-id="KaDPW0bZ" name="my-title" type="text">
5 <dynamic-content language-id="en_US"><![CDATA[Beginning of sales]]></dynamic-content>
6 </dynamic-element>
7 <dynamic-element instance-id="2MjsoV2D" name="my-content" type="text_area">
8 <dynamic-content language-id="en_US"><![CDATA[<p>Beginning of sales!!!</p>]]></dynamic-content>
9 </dynamic-element>
10</root>
Also, there is a field
structureId: NEWS_ENTRY. So, I think i should get that
content,
structureId and pass them to some function, which will return me a Map with values of the keys. Is this possible or how can I get that fields (
my-title and
my-content) ?
Please sign in to flag this as inappropriate.