Creating elements using on Hype Data Magic

Can you make it so that fields that need to be filled out are created based on the data?
For example, you create a Symbol form template with 3 fields, and one is dynamic! Depending on the number of rows in the database, new elements are created.
For example:

HypeDataMagic.setData({
    keyname: 'key additional HTML attributes', // for new Symbol
    id: '1', // id Symbol load json or csv or MySQL etc..
	title: 'Max Ziebell', // elements in symbols
	elements: '', // automated created element 
	items: [
		{
            id: '34564', // load
			name: 'one', // load
		},
		{
            id: '12312',
			name: 'two',
		},
        {
            /// etc...
        }
    
	],
});

Hello Racheev,

I am not sure what you want to achieve. Tumult Hype doesn't have an API to duplicate symbols.
You can always create a custom handler in the Hype Data Magic extension (instead of using the default text or image handlers) to write your own inner HTML based on data, though: