Skip to content

Commit b76603a

Browse files
Fix remaining URL references to use https://w3id.org/valuesets
- Update merged_hierarchy.yaml id and valuesets prefix - Update merge_enums_hierarchy.py script with correct URLs - Update sssom_generator.py with correct mapping_set_id - Update docs and test files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 022e4b3 commit b76603a

File tree

9 files changed

+922
-10
lines changed

9 files changed

+922
-10
lines changed

docs/manuscript/manuscript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ CVS schemas are authored in YAML following LinkML syntax. Each schema file defin
9898

9999
```yaml
100100
name: schema_name
101-
id: https://w3id.org/linkml/valuesets/domain/schema_name
101+
id: https://w3id.org/valuesets/domain/schema_name
102102
prefixes:
103103
ontology_prefix: http://purl.obolibrary.org/obo/ONTOLOGY_
104104

docs/schema/valuesets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68947,5 +68947,5 @@ metamodel_version: 1.7.0
6894768947
source_file: valuesets.yaml
6894868948
source_file_date: '2026-01-30T18:18:29'
6894968949
source_file_size: 3472
68950-
generation_date: '2026-01-30T18:19:30'
68950+
generation_date: '2026-01-30T18:35:49'
6895168951

docs/slides/valuesets-slides.pdf

0 Bytes
Binary file not shown.

docs/slides/valuesets-slides.pptx

0 Bytes
Binary file not shown.

scripts/merge_enums_hierarchy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ def build_hierarchical_schema(schema_dir: Path) -> Dict[str, Any]:
8787

8888
# Initialize the merged schema
8989
merged_schema = {
90-
'id': 'https://w3id.org/linkml/valuesets/merged',
90+
'id': 'https://w3id.org/valuesets/merged',
9191
'name': 'valuesets_merged_hierarchy',
9292
'title': 'Merged Value Sets with Hierarchical Structure',
9393
'description': 'All value sets merged into a single hierarchical structure with is_a relationships',
9494
'license': 'MIT',
9595
'prefixes': {
9696
'linkml': 'https://w3id.org/linkml/',
97-
'valuesets': 'https://w3id.org/linkml/valuesets/',
97+
'valuesets': 'https://w3id.org/valuesets/',
9898
},
9999
'default_prefix': 'valuesets',
100100
'imports': ['linkml:types'],

0 commit comments

Comments
 (0)