We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I want to add a objects inside a array. I have to set a object name for that like
"identifiers": [ "identifer": { "primary" : true } ]
Here "identifer" is the object name. But the object inside array always created as a empty object name like
"identifiers": [ { "identifer": { "primary" : true } } ]
I used the following JSON code,
"identifiers": { "title": "Identifiers", "type": "array", "location": "body", "items": { "title": "Identifier Fields", "type": "object", "properties": { "identifer": { "type": "object", "properties": { "primary": { "title": "primary", "required":true, "type":"boolean", "description": "", "default": true }, } } } } }
How to achieve this. please help me. Is there any option for that.
Note : I can able to do using Object inside Object. but i dont want that.
Thanks in advance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I want to add a objects inside a array. I have to set a object name for that like
"identifiers":
[
"identifer": {
"primary" : true
}
]
Here "identifer" is the object name. But the object inside array always created as a empty object name like
"identifiers":
[
{
"identifer": {
"primary" : true
}
}
]
I used the following JSON code,
"identifiers": {
"title": "Identifiers",
"type": "array",
"location": "body",
"items": {
"title": "Identifier Fields",
"type": "object",
"properties": {
"identifer": {
"type": "object",
"properties": {
"primary": {
"title": "primary",
"required":true,
"type":"boolean",
"description": "",
"default": true
},
}
}
}
}
}
How to achieve this. please help me. Is there any option for that.
Note : I can able to do using Object inside Object. but i dont want that.
Thanks in advance.
The text was updated successfully, but these errors were encountered: