-
Notifications
You must be signed in to change notification settings - Fork 0
Finalize w3id IRI scheme: collapse version-IRI doubling (#436), declare w3id canonical (#435) #462
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "graphs" : [ { | ||
| "id" : "https://w3id.org/metpo/metpo/metpo-base.json", | ||
| "id" : "https://w3id.org/metpo/metpo-base.json", | ||
| "meta" : { | ||
| "basicPropertyValues" : [ { | ||
|
Comment on lines
1
to
5
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in #464: metpo-base.json now contains the METPO class/property nodes after the base-IRI fix + rebuild. |
||
| "pred" : "http://purl.org/dc/elements/1.1/type", | ||
|
|
@@ -39,7 +39,7 @@ | |
| "pred" : "http://www.w3.org/2002/07/owl#versionInfo", | ||
| "val" : "2026-06-02" | ||
| } ], | ||
| "version" : "https://w3id.org/metpo/metpo/releases/2026-06-02/metpo-base.json" | ||
| "version" : "https://w3id.org/metpo/releases/2026-06-02/metpo-base.json" | ||
| }, | ||
| "nodes" : [ { | ||
| "id" : "http://purl.org/dc/elements/1.1/type", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| format-version: 1.2 | ||
| data-version: https://w3id.org/metpo/metpo/releases/2026-06-02/metpo-base.owl | ||
| data-version: https://w3id.org/metpo/releases/2026-06-02/metpo-base.owl | ||
| idspace: dce http://purl.org/dc/elements/1.1/ | ||
| idspace: dcterms http://purl.org/dc/terms/ | ||
| ontology: https://w3id.org/metpo/metpo/metpo-base.owl | ||
| ontology: https://w3id.org/metpo/metpo-base.owl | ||
|
Comment on lines
1
to
+5
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in #464: metpo-base.obo now contains the METPO [Term] frames after the base-IRI filter fix + rebuild. |
||
| property_value: dce:type IAO:8000001 | ||
| property_value: dcterms:contributor https://orcid.org/0000-0001-9076-6066 | ||
| property_value: dcterms:creator "METPO Development Team" xsd:string | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| <?xml version="1.0"?> | ||
| <rdf:RDF xmlns="https://w3id.org/metpo/metpo/metpo-base.owl#" | ||
| xml:base="https://w3id.org/metpo/metpo/metpo-base.owl" | ||
| <rdf:RDF xmlns="https://w3id.org/metpo/metpo-base.owl#" | ||
| xml:base="https://w3id.org/metpo/metpo-base.owl" | ||
| xmlns:IAO="http://purl.obolibrary.org/obo/IAO_" | ||
| xmlns:dce="http://purl.org/dc/elements/1.1/" | ||
| xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
|
|
@@ -9,8 +9,8 @@ | |
| xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
| xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" | ||
| xmlns:dcterms="http://purl.org/dc/terms/"> | ||
| <owl:Ontology rdf:about="https://w3id.org/metpo/metpo/metpo-base.owl"> | ||
| <owl:versionIRI rdf:resource="https://w3id.org/metpo/metpo/releases/2026-06-02/metpo-base.owl"/> | ||
| <owl:Ontology rdf:about="https://w3id.org/metpo/metpo-base.owl"> | ||
| <owl:versionIRI rdf:resource="https://w3id.org/metpo/releases/2026-06-02/metpo-base.owl"/> | ||
| <dce:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/> | ||
| <dcterms:contributor rdf:resource="https://orcid.org/0000-0001-9076-6066"/> | ||
| <dcterms:creator>METPO Development Team</dcterms:creator> | ||
|
Comment on lines
+12
to
16
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Confirmed and fixed in #464: metpo-base.owl now carries all 1454 METPO classes (the base-IRI filter no longer strips them). |
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,9 +19,9 @@ CONFIG_HASH= b36e24392153d51eead1fd6d833e68e831bdb46877e7485056d8 | |
| # these can be overwritten on the command line | ||
|
|
||
| OBOBASE= http://purl.obolibrary.org/obo | ||
| URIBASE= https://w3id.org/metpo | ||
| URIBASE= https://w3id.org | ||
| ONT= metpo | ||
| ONTBASE= https://w3id.org/metpo/metpo | ||
| ONTBASE= https://w3id.org/metpo | ||
|
Comment on lines
21
to
+24
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| EDIT_FORMAT= owl | ||
| SRC = $(ONT)-edit.$(EDIT_FORMAT) | ||
| MAKE_FAST= $(MAKE) IMP=false PAT=false COMP=false MIR=false | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed in #464 (and refined in #469): the README now distinguishes the resolver host (w3id.org) from the canonical identifier namespace (https://w3id.org/metpo/).