Automation to prompt for cusom data

With the create entity action I was wondering first up how I format the custom data field

Im guessing its liek this?
[{"Name":"Year","Value":"7"},{"Name":"Email","Value":"email"},{"Name":"CName","Value":"Test"},{"Name":"Points","Value":null}]

And after promting for each field would it be something like this?
[{“Name”:“Year”,“Value”:“50”},{“Name”:“Email”,“Value”:"[?Enter Email;] “},{“Name”:“CName”,“Value”:”[?Enter Name;]"},{“Name”:“Points”,“Value”:null}]

I will make a guess and say no.

It is probably more like this:

fieldName1=data1,fieldName2a7=data2,fieldNameR=dataR

… at least that is the syntax for assign Custom Data to a Task using AddTask action.

Either way, you should prompt for each field value and store the input in a Local Setting, then use those settings during Custom Data assignment…

Give me data1 … stored in DATA1
Give me data2 … stored in DATA2
Give me data3 … stored in DATA3

fieldName1={:DATA1},fieldName2a7={:DATA2},fieldNameR={:DATA3}

Yeah thanks, Ive already soved it and did it exactly like that.