Context
Downstream facet UIs use vocab_labels.parquet (built in isamplesorg.github.io) to render friendly labels for material URIs. Two OpenContext material URIs appear in facet data but do not resolve to labels:
https://w3id.org/isample/opencontext/material/0.1/organicanimalproduct (count 261)
https://w3id.org/isample/opencontext/material/0.1/plantmaterial (count 1)
These URIs are present in facet_summaries but absent from vocab_labels because they appear not to be in the current OpenContext material extension TTL used for label generation (which has organicanimalmaterial and organicplantmaterial).
Why filing in metadata
This seems like a metadata/vocabulary governance question: are these legacy/invalid terms, aliases, or missing concepts that should be represented explicitly?
Repro SQL
SELECT facet_value, count
FROM read_parquet('https://data.isamples.org/isamples_202601_facet_summaries.parquet')
WHERE facet_type='material'
AND (facet_value ILIKE '%organicanimalproduct%'
OR facet_value ILIKE '%plantmaterial%');
WITH facet AS (
SELECT DISTINCT facet_value AS uri
FROM read_parquet('https://data.isamples.org/isamples_202601_facet_summaries.parquet')
WHERE facet_type='material'
), labels AS (
SELECT DISTINCT uri
FROM read_parquet('https://data.isamples.org/vocab_labels.parquet')
WHERE lang='en'
)
SELECT f.uri
FROM facet f
LEFT JOIN labels l USING (uri)
WHERE l.uri IS NULL
ORDER BY f.uri;
Requested decision
Please define canonical handling for these two URIs:
- Add/restore terms (or deprecated aliases) in the appropriate vocabulary repo/profile, OR
- Declare them legacy/invalid and provide canonical replacements + mapping guidance for exporters.
Cross-repo linkage
Related integration issue (consumer/build side):
Context
Downstream facet UIs use
vocab_labels.parquet(built inisamplesorg.github.io) to render friendly labels for material URIs. Two OpenContext material URIs appear in facet data but do not resolve to labels:https://w3id.org/isample/opencontext/material/0.1/organicanimalproduct(count 261)https://w3id.org/isample/opencontext/material/0.1/plantmaterial(count 1)These URIs are present in
facet_summariesbut absent fromvocab_labelsbecause they appear not to be in the current OpenContext material extension TTL used for label generation (which hasorganicanimalmaterialandorganicplantmaterial).Why filing in metadata
This seems like a metadata/vocabulary governance question: are these legacy/invalid terms, aliases, or missing concepts that should be represented explicitly?
Repro SQL
Requested decision
Please define canonical handling for these two URIs:
Cross-repo linkage
Related integration issue (consumer/build side):