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
I am annoyed that the schema for the tables, trees, and diagrams can not be standardized and added to AJV
I want to move the first key in the object to an id parameter
Before:
{ "objectives": { "name": "Objectives", "diagrams": { "all-rows": "objectives-diagram" }, "columnNames": { "o1_id": "Objective 1 ID", "o1_name": "Objective 1 Name", "o2_id": "Objective 2 ID", "o2_name": "Objective 2 Name" }, "queries": { "obj-query": "objectives.sparql" }, "rowMapping": { "id": "obj-query", "name": "Objectives", "labelFormat": "Objective" } } }
After:
{ "name": "Objectives", "id": "objectives", "diagrams": { "all-rows": "objectives-diagram" }, "columnNames": { "o1_id": "Objective 1 ID", "o1_name": "Objective 1 Name", "o2_id": "Objective 2 ID", "o2_name": "Objective 2 Name" }, "queries": { "obj-query": "objectives.sparql" }, "rowMapping": { "id": "obj-query", "name": "Objectives", "labelFormat": "Objective" } }
[Any additional context]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checklist before submitting a feature request
Is your feature request related to a problem? If yes, describe the problem
I am annoyed that the schema for the tables, trees, and diagrams can not be standardized and added to AJV
Describe the desired feature
I want to move the first key in the object to an id parameter
Before:
After:
Additional context
[Any additional context]
The text was updated successfully, but these errors were encountered: