Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds configuration files and documentation for ingesting the Weimar Jazz Database (wJazzd) into the LinkedMusic pipeline. The changes enable automated data reconciliation using OpenRefine and RDF conversion using existing shared infrastructure.
Changes:
- Added OpenRefine history JSON files for automated reconciliation of composition, record, solo, and track data
- Added RDF conversion configuration (wjazzd.toml) specifying property mappings and RDF schema
- Added comprehensive documentation for ingestion workflow and reconciliation procedures
- Fixed command syntax error in shared RDF conversion documentation
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| wjazzd/openrefine/history/track_info_history.json | OpenRefine reconciliation steps for track information including lineup, instruments, and recording dates |
| wjazzd/openrefine/history/solo_info_history.json | OpenRefine reconciliation steps for solo performances including performers, instruments, and musical properties |
| wjazzd/openrefine/history/record_info_history.json | OpenRefine reconciliation steps for record/album information including artists and labels |
| wjazzd/openrefine/history/composition_info_history.json | OpenRefine reconciliation steps for composition metadata including composers and templates |
| wjazzd/doc/reconciliation_procedures.md | Step-by-step guide for data reconciliation procedures |
| wjazzd/README.md | Overview of wJazzd database and ingestion workflow |
| shared/rdf_config/wjazzd.toml | RDF property mappings and conversion configuration |
| shared/rdf_conversion/using_rdfconv_script.md | Fixed missing --input flag in command examples |
| wjazzd/.gitignore | Excludes data directory from version control |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces the configuration files and documentation necessary to ingest Weimar Jazz Database (wJazzd) data into our pipeline. No new Python scripts were added in this PR; ingestion relies on existing shared scripts and configuration files.
OpenRefine Configuration Files (wjazzd/openrefine/)
wjazzd/openrefine/history/composition_info_history.jsonwjazzd/openrefine/history/record_info_history.jsonwjazzd/openrefine/history/solo_info_history.jsonwjazzd/openrefine/history/track_info_history.jsonThese files allow users to automatically reapply the same reconciliation steps used during OpenRefine processing.
RDF Conversion Config
shared/rdf_config/wjazzd.tomlSpecifies RDF property mapping and RDF graph schema. Allow wjazzd to be converted into RDF using the shared conversion pipeline (
shared/rdfconv/convert.py).Documentation
wjazzd/README.mdProvides instructions for wJazzd ingestion and overview of the database schema.
wjazzd/doc/reconciliation_procedures.mdDetailed step-by-step reconciliation procedures for compositions, records, solos, and tracks.
Other
shared/rdf_conversion/using_rdfconv_script.mdFix a small mistake in shared documentation.
wjazzd/.gitignore