- Migrated catering_type to CateringType with subclasses for better classification. - Updated certainty_level to has_or_had_level for improved metadata consistency. - Addressed cessation_observed_in by confirming existing temporal data structure. - Created NetAsset class and updated financial statements for richer financial modeling. - Completed migrations for default_access_policy, default_audio_language, and default_language to structured classes. - Migrated default_position to structured Alignment class for better representation. - Updated defined_by_standard to broaden range for identifier standards. - Migrated definition to structured Resolution class for video resolution modeling. - Completed migrations for degree_name, deliverable, and departement_code to structured classes. - Migrated deployment_date to structured DeploymentEvent with temporal extent. - Migrated derived_from_entity and derived_from_observation to new reference structures. - Completed description and description_text migrations to enhance content modeling. - Migrated detection_count, detection_level, and detection_threshold to structured slots with classes. - Migrated device-related slots to structured classes for better identification and classification. - Added new slots and classes for historic building and web address modeling.
124 lines
4 KiB
YAML
124 lines
4 KiB
YAML
# Manufacturer class
|
|
# Represents a manufacturer or producer of devices/products
|
|
#
|
|
# Generation date: 2026-01-25
|
|
# Rule compliance: 0 (LinkML single source of truth), 53 (migration from device_manufacturer)
|
|
# Migration source: device_manufacturer slot per slot_fixes.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_label
|
|
- ../slots/has_or_had_url
|
|
- ../slots/has_or_had_identifier
|
|
- ./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:
|
|
description: Unique identifier for this manufacturer.
|
|
range: uriorcurie
|
|
required: false
|
|
examples:
|
|
- value: https://nde.nl/ontology/hc/manufacturer/estimote
|
|
description: Estimote manufacturer identifier
|
|
has_or_had_label:
|
|
description: Name of the manufacturer.
|
|
range: string
|
|
required: true
|
|
examples:
|
|
- value: Estimote
|
|
description: Beacon manufacturer
|
|
- value: Sensirion
|
|
description: Sensor manufacturer
|
|
- value: Samsung
|
|
description: Kiosk manufacturer
|
|
has_or_had_url:
|
|
description: Manufacturer website.
|
|
range: URL
|
|
inlined: true
|
|
required: false
|
|
examples:
|
|
- value:
|
|
url_value: https://estimote.com/
|
|
description: Estimote website
|
|
|
|
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/
|
|
description: Estimote beacon manufacturer
|
|
- 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/
|
|
description: Sensirion sensor manufacturer
|