Consider changing template properties to a collection type #1260
mark-quickel-zz
started this conversation in
Ideas
Replies: 1 comment
-
Are you meaning the payload returned by This is a JSON Schema compliant document, and believe properties need to be an object. See https://json-schema.org/learn/getting-started-step-by-step.html . We can then use this directly in libraries such as https://jsonforms.io/ . Maybe we could do with a PowerApps version of this! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working with the base template, and the properties / system_properties entities are returned as a flattened list of properties, which makes them more challenging to iterate over without converting to a collection. In my case, within Power Apps. Wondering if there is value in having properties return as follows:
"properties": [
{
"name": "display_name",
"type": "string",
"title": "Display Name",
"description": "",
"default": "display name value"
}
],...
Beta Was this translation helpful? Give feedback.
All reactions