How to identify inline element type by real name? #75
-
|
According to the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
|
Hey @imamatory, I ran into naming conflicts with one of my test schemas, so names for inline If you could share the schema with me, I’ll check if it’s possible to use the element’s name directly and adjust the behavior accordingly. |
Beta Was this translation helpful? Give feedback.
How exactly do you want to distinguish the
created_dateelements?created_dateelement insidemyElementandmyOtherElementand stick with theRecordDateTypetype? Then you can simple walk through theMetaTypestructure and change the name of the element inside the sequence.created_dateelements? This is a bit more complex, because the two fields references the same type. So if you want to have different types, you have to create a new date type and reference this type in yourcreated_dateelement.I have created example code for both suggestions here. But honestly, I guess it's much more simpler to just chang…