i am receiving multiaple attachment from power apps in the form of a json file, after i receive it, i want to parse it and put it in an array. here is my flow so far:

the json file i recieved has:
[
{
name: "File Name"
contentBytes: "actual file bytes"
},
{
name: "File Name"
contentBytes: "actual file bytes"
},...et
]
schema:
{
"type": "object",
"items": {
"type": "array",
"properties": {
"Name": {
"type": "string"
},
"Value": {
"type": "string"
}
},
"required": [
"Name",
"Value"
]
}
}

when i reach this step in the flow it gives me the following error:

who can i fix this or is there a better method?