- Removed obsolete slots: `has_or_had_custodian_observation`, `provider`, and `specificity_annotation`. - Updated `has_or_had_score` slot to use `SpecificityScore` class and modified its description and examples. - Added new slots: `end_seconds`, `end_time`, `has_archive_path`, `has_or_had_custodian_name`, `protocol_name`, and `protocol_version`. - Introduced a script `check_annotation_types.py` to validate the presence and structure of `custodian_types` in YAML files. - Added a script `update_specificity.py` to automate updates related to `SpecificityAnnotation` to `SpecificityScore`.
104 lines
No EOL
3.3 KiB
YAML
104 lines
No EOL
3.3 KiB
YAML
id: https://nde.nl/ontology/hc/class/Manufacturer
|
|
name: manufacturer_class
|
|
title: Manufacturer Class
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
prov: http://www.w3.org/ns/prov#
|
|
schema: http://schema.org/
|
|
org: http://www.w3.org/ns/org#
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../slots/has_or_had_identifier
|
|
- ../slots/has_or_had_label
|
|
- ../slots/has_or_had_url
|
|
classes:
|
|
Manufacturer:
|
|
class_uri: schema:Organization
|
|
description: |
|
|
Represents a manufacturer or producer of devices, equipment, or products.
|
|
|
|
**MIGRATION SOURCE**: Created from device_manufacturer slot migration (Rule 53, 2026-01-25).
|
|
|
|
**Pattern**: Simple string manufacturer name replaced with structured class:
|
|
- has_or_had_label: Manufacturer name (String or Label)
|
|
- has_or_had_url: Manufacturer website (URL)
|
|
- has_or_had_identifier: Unique identifier
|
|
|
|
**Ontological Alignment**:
|
|
- **Primary**: `schema:Organization` - Schema.org organization
|
|
- **Close**: `org:Organization` - W3C ORG organization
|
|
- **Related**: `prov:Agent` - PROV-O agent responsible for production
|
|
|
|
**Use Cases**:
|
|
- IoT device manufacturers (Estimote, Sensirion, Samsung)
|
|
- Equipment vendors
|
|
- Technology providers
|
|
|
|
**Relationship to InternetOfThings**:
|
|
```
|
|
InternetOfThings
|
|
└── is_or_was_created_by → Manufacturer
|
|
├── has_or_had_label → "Estimote"
|
|
└── has_or_had_url → URL
|
|
```
|
|
|
|
exact_mappings:
|
|
- schema:Organization
|
|
|
|
close_mappings:
|
|
- org:Organization
|
|
- prov:Agent
|
|
|
|
slots:
|
|
- has_or_had_identifier
|
|
- has_or_had_label
|
|
- has_or_had_url
|
|
|
|
slot_usage:
|
|
has_or_had_identifier:
|
|
range: uriorcurie
|
|
required: false
|
|
examples:
|
|
- value: https://nde.nl/ontology/hc/manufacturer/estimote
|
|
has_or_had_label:
|
|
range: string
|
|
required: true
|
|
examples:
|
|
- value: Estimote
|
|
- value: Sensirion
|
|
- value: Samsung
|
|
has_or_had_url:
|
|
range: uri
|
|
inlined: true
|
|
required: false
|
|
examples:
|
|
- value:
|
|
url_value: https://estimote.com/
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: Manufacturers applicable to all custodian types using technology.
|
|
custodian_types_primary: null
|
|
specificity_score: 0.6
|
|
specificity_rationale: Specific to equipment and technology tracking.
|
|
|
|
comments:
|
|
- "CREATED from device_manufacturer migration per slot_fixes.yaml (Rule 53)"
|
|
- "Schema.org Organization for manufacturer representation"
|
|
- "Enables structured manufacturer data with website and identifier"
|
|
|
|
examples:
|
|
- value:
|
|
has_or_had_identifier: https://nde.nl/ontology/hc/manufacturer/estimote
|
|
has_or_had_label: Estimote
|
|
has_or_had_url:
|
|
url_value: https://estimote.com/
|
|
- value:
|
|
has_or_had_identifier: https://nde.nl/ontology/hc/manufacturer/sensirion
|
|
has_or_had_label: Sensirion
|
|
has_or_had_url:
|
|
url_value: https://sensirion.com/ |