Is your feature request related to a problem? Please describe.
I have a site where there are data files (JSON) used to drive the content in tables.
https://gohugo.io/templates/data-templates/
Describe the solution you'd like
I would like to describe the data model in the files like I do now with content types, and then have a UI to edit the information in the files with a GUI.
Describe alternatives you've considered
I can edit the plain text files by hand, but what's the fun in that? Also, asking my editors to write JSON, YAML, TOML, etc. by hand is a bit much.
Additional context
Here is an example of a UI for the JSON content below.

{
"columns": [
"Rating",
"Credit Score"
],
"rows": [
{
"cells": [
"A++",
"750+"
]
},
{
"cells": [
"A+",
"710 - 749"
]
},
{
"cells": [
"A",
"680 - 709"
]
},
{
"cells": [
"B",
"650 - 679 up to 80% LTV"
]
},
{
"cells": [
"C",
"620 - 649 up to 70% LTV"
]
}
]
}
Is your feature request related to a problem? Please describe.
I have a site where there are data files (JSON) used to drive the content in tables.
https://gohugo.io/templates/data-templates/
Describe the solution you'd like
I would like to describe the data model in the files like I do now with content types, and then have a UI to edit the information in the files with a GUI.
Describe alternatives you've considered
I can edit the plain text files by hand, but what's the fun in that? Also, asking my editors to write JSON, YAML, TOML, etc. by hand is a bit much.
Additional context
Here is an example of a UI for the JSON content below.