- Introduced VerificationStatus, Verifier, VersionNumber, ViabilityStatus, VideoCategoryIdentifier, VideoIdentifier, WhatsAppProfile, WordCount, WorkRevision, and WorldCatIdentifier classes to capture various aspects of data verification, categorization, and identification. - Created corresponding slots such as analyzes_or_analyzed, unit_type, years_restricted, benefits_provided, consumes_or_consumed, has_or_had_contact_details, has_or_had_investment, has_or_had_liability, has_or_had_likelihood_score, has_or_had_location, has_or_had_net_asset, is_or_was_affiliated_with, is_or_was_allocated_to, is_or_was_alternative_form_of, is_or_was_categorized_as, is_or_was_used_by, and was_last_updated_at to facilitate detailed tracking and categorization of entities and their attributes. - Each class and slot includes detailed descriptions, usage examples, and mappings to relevant ontologies to ensure interoperability and clarity in data representation.
62 lines
1.3 KiB
YAML
62 lines
1.3 KiB
YAML
# VersionNumber - Version number class
|
|
#
|
|
# Created per slot_fixes.yaml migration for: version_number
|
|
# Creation date: 2026-01-14
|
|
|
|
id: https://nde.nl/ontology/hc/class/VersionNumber
|
|
name: VersionNumber
|
|
title: Version Number
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../slots/has_or_had_version
|
|
|
|
classes:
|
|
VersionNumber:
|
|
class_uri: schema:version
|
|
description: |
|
|
A version number or identifier.
|
|
|
|
**USAGE**:
|
|
Used for:
|
|
- Software versions
|
|
- Document versions
|
|
- Schema versions
|
|
|
|
slots:
|
|
- has_or_had_version
|
|
|
|
attributes:
|
|
major:
|
|
range: integer
|
|
description: Major version number
|
|
|
|
minor:
|
|
range: integer
|
|
description: Minor version number
|
|
|
|
patch:
|
|
range: integer
|
|
description: Patch version number
|
|
|
|
close_mappings:
|
|
- schema:version
|
|
|
|
annotations:
|
|
specificity_score: "0.35"
|
|
specificity_rationale: "Low specificity - versioning common across domains."
|
|
|
|
examples:
|
|
- value:
|
|
has_or_had_version: "2.1.0"
|
|
major: 2
|
|
minor: 1
|
|
patch: 0
|
|
description: Semantic version 2.1.0
|