Need some help merging the two sets of JSON so that they are both in the same List form header. Not great with JSON.
The first JSON is in the "Header" right now for the list form, the second JSON set is in the "Footer".
Want to merge them so they are both in the Header and it would look like the example below:

Header JSON:
{
"elmType": "div",
"attributes": {
"class": "ms-borderColor-green"
},
"style": {
"width": "100%",
"border-top-width": "0px",
"border-bottom-width": "5px",
"border-left-width": "0px",
"border-right-width": "0px",
"border-style": "solid",
"margin-bottom": "16px"
},
"children": [
{
"elmType": "div",
"style": {
"display": "flex",
"box-sizing": "border-box",
"align-items": "center"
},
"children": [
{
"elmType": "div",
"attributes": {
"iconName": "WebAppBuilderFragment",
"class": "ms-fontSize-42 ms-fontWeight-regular ms-fontColor-green"
},
"style": {
"flex": "none",
"padding": "0px",
"padding-left": "0px",
"height": "36px"
}
}
]
},
{
"elmType": "div",
"attributes": {
"class": "ms-fontColor-neutralSecondary ms-fontWeight-bold ms-fontSize-24"
},
"style": {
"box-sizing": "border-box",
"width": "100%",
"text-align": "left",
"padding": "21px 12px",
"overflow": "hidden"
},
"children": [
{
"elmType": "div",
"txtContent": "Harada Industry of America Investigation Form"
}
]
}
]
}
Footer JSON:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "a",
"txtContent": "*HIA Investigation Form Instructions",
"attributes": {
"class": "ms-fontColor-blue",
"target": "_blank",
"href": "https://sharepointonline site/HIA Investigation Form Instructions.pdf"
},
"style": {
"font-size": "16px"
}
}