I have…
- [ x ] Read the following guideline: https://docs.squidex.io/01-getting-started/installation/troubleshooting-and-support. I understand that my support request might get deleted if I do not follow the guideline.
I’m submitting a…
- [ ] Regression (a behavior that stopped working in a new release)
- [ ] Bug report
- [ ] Performance issue
- [ x ] Documentation issue or request
Current behavior
Expected behavior
Minimal reproduction of the problem
Environment
- [ x ] Self hosted with docker
- [ ] Self hosted with IIS
- [ ] Self hosted with other version
- [ ] Cloud version
Version: 5
Browser:
- [ x ] Chrome (desktop)
- [ ] Chrome (Android)
- [ ] Chrome (iOS)
- [ ] Firefox
- [ ] Safari (desktop)
- [ ] Safari (iOS)
- [ ] IE
- [ ] Edge
Others:
I’m evaluating Squidex and got stuck while designing a schema that would work to build a demo. What i’m trying to achieve is to map in Squidex a custom schema and then find a way to map between what Squidex generates into the format I need. The hiccup i got to is that my schema is designed to have an “indefinite” depth.
The custom properties i think i can add them as tags, maybe use tags to indicate which number field is integer or float, but the multi level, i don’t know how to design that.
Any help and ideas on how i could map the following JSON into a Squidex schema? If you look at the “location” section it has child sections 2 levels deep.
{
"modelSchema": [
{
"section": "UserInfo",
"category": "none",
"properties": [
{
"name": "name",
"dataType": "string"
},
{
"name": "age",
"dataType": "integer",
"subcategory": "ages"
},
{
"name": "address",
"dataType": "string"
}
]
},
{
"section": "location",
"category": "location",
"properties": [
{
"name": "officelocation",
"dataType": "string"
},
{
"section": "teamInfo",
"category": "team",
"properties": [
{
"name": "projectcode",
"dataType": "string",
"subcategory": "projectcode"
},
{
"section": "teammembers",
"category": "none",
"properties": [
{
"name": "username",
"dataType": "string"
}
]
}
]
}
]
}
]
}