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
currently, the main label fields in a model are required, but allowed to be blank.
i think those are the main label fields:
UseCase.title
Author.name
Place.name
Keyword.stichwort
Passage.display_label
Text.title
Event.title
this is not a huge issue, but could help avoid having entries with empty labels (currently 2 places, 1 keyword)
curl -s https://mmp.acdh-dev.oeaw.ac.at/api/ort/ | jq '.results[] | select(.name | . == null or . == "")'
curl -s https://mmp.acdh-dev.oeaw.ac.at/api/keyword/ | jq '.results[] | select(.stichwort | . == null or . == "")'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
currently, the main label fields in a model are required, but allowed to be blank.
i think those are the main label fields:
UseCase.title
Author.name
Place.name
Keyword.stichwort
Passage.display_label
(actually nullable)Text.title
Event.title
(actually nullable)this is not a huge issue, but could help avoid having entries with empty labels (currently 2 places, 1 keyword)
curl -s https://mmp.acdh-dev.oeaw.ac.at/api/ort/ | jq '.results[] | select(.name | . == null or . == "")'
2 hits (obvious dummy data)curl -s https://mmp.acdh-dev.oeaw.ac.at/api/keyword/ | jq '.results[] | select(.stichwort | . == null or . == "")'
1 hitThe text was updated successfully, but these errors were encountered: