-
-
Notifications
You must be signed in to change notification settings - Fork 589
Not able to Use json-schema-form to form data in table #412
New issue
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
Comments
Hi. Pretty sure you've got the wrong repo here. |
Can help us know the right repo, as we are using this schema for json to html. As mentioned above using angular2-json-schema-form. |
This repo is for a Python implementation and has nothing to do with HTML or angular. |
Julian
added a commit
that referenced
this issue
Jul 25, 2020
ea41553 Remove test that doesn't match RFC 3339 duration grammar dee8ef7 Merge pull request #411 from ChALkeR/chalker/more-unevaluted cd88fb5 Add more nested and cousin unevaluatedProperties tests 5f3dc7e Merge pull request #415 from json-schema-org/ether/more-ipv6-tests 04ddab1 some more ipv6 tests acb45cd Merge pull request #417 from ChALkeR/chalker/patternProperties 0f4b73a One more patternProperties test with boolean schemas 8ccbfdc Merge pull request #412 from json-schema-org/ether/more-format-duration-2 1329dab some more tests for the "duration" format 1d5c3c0 Merge pull request #405 from ChALkeR/chalker/email-format 7ad7443 Extend email format tests git-subtree-dir: json git-subtree-split: ea415537dda2613f3cd5df1f219f84086f75a7dc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am using angular2-json-schema-form, to form html page. Some of the data i want to represent in the table using the attribute "format": "table". I am getting the following error: "unknown format "table" ignored in schema".
Do i need to install any table module using npm ?
"YextCategoryList": {
"type": "array",
"format": "table",
"addable" : false,
"removable":false,
"orderable": false,
"title": "Yext Category List",
"items": {
"type": "object",
"properties": {
"yextCategoryId": {
"title": "Yext Category Id",
"type": "string",
"readonly": true,
"default": "",
"examples": [ "123456" ]
},
"addedBy": {
"title": "Added By",
"type": "string",
"readonly": true,
"default": "",
"examples": [ "koushk01" ]
},
"addedDate": {
"title": "Added Date",
"readonly": true,
"default": "",
"examples": [ "2017-12-20T16:44:04.000Z" ]
},
"updatedBy": {
"title": "Updated By",
"type": "string",
"readonly": true,
"default": "",
"examples": [ "koushk01" ]
},
"updatedDate": {
"title": "Updated Date",
"tyre": "string",
"readonly": true,
"default": "",
"examples": [ "2017-12-20T16:44:04.000Z" ]
}
}
}
}
The text was updated successfully, but these errors were encountered: