glam/schemas/20251121/linkml/modules/classes/TechnologicalInfrastructure.yaml
kempersc ca4a54181e Refactor schema files to improve clarity and maintainability
- Updated WorldCatIdentifier.yaml to remove unnecessary description and ensure consistent formatting.
- Enhanced WorldHeritageSite.yaml by breaking long description into multiple lines for better readability and removed unused attributes.
- Simplified WritingSystem.yaml by removing redundant attributes and ensuring consistent formatting.
- Cleaned up XPathScore.yaml by removing unnecessary attributes and ensuring consistent formatting.
- Improved YoutubeChannel.yaml by breaking long description into multiple lines for better readability.
- Enhanced YoutubeEnrichment.yaml by breaking long description into multiple lines for better readability.
- Updated YoutubeVideo.yaml to break long description into multiple lines and removed legacy field name.
- Refined has_or_had_affiliation.yaml by removing unnecessary comments and ensuring clarity.
- Cleaned up is_or_was_retrieved_at.yaml by removing unnecessary comments and ensuring clarity.
- Added rules for generic slots and avoiding rough edits in schema files to maintain structural integrity.
- Introduced changes_or_changed_through.yaml to define a new slot for linking entities to change events.
2026-01-31 00:46:23 +01:00

112 lines
5 KiB
YAML

id: https://nde.nl/ontology/hc/class/TechnologicalInfrastructure
name: TechnologicalInfrastructure
title: Technological Infrastructure
prefixes:
linkml: https://w3id.org/linkml/
hc: https://nde.nl/ontology/hc/
schema: http://schema.org/
doap: http://usefulinc.com/ns/doap#
spdx: http://spdx.org/rdf/terms#
skos: http://www.w3.org/2004/02/skos/core#
imports:
- linkml:types
- ../slots/has_or_had_description
- ../slots/has_or_had_identifier
- ../slots/has_or_had_label
- ../slots/has_or_had_type
- ../slots/has_or_had_version
- ../slots/includes_or_included
- ./TechnologicalInfrastructureType
- ./TechnologicalInfrastructureTypes
default_prefix: hc
classes:
TechnologicalInfrastructure:
class_uri: doap:Project
description: "Structured representation of a technology component used in a digital platform.\n\n**MIGRATION from technology_stack**:\nThis class replaces the simple string-based `technology_stack` slot with a\nstructured model that provides:\n- Type classification via TechnologicalInfrastructureType hierarchy\n- Version tracking\n- Component composition (includes_or_included)\n- Rich descriptions and provenance\n\n**Ontological Alignment**:\n- **Primary** (`class_uri`): `doap:Project` - DOAP vocabulary for software projects\n- **Close**: `schema:SoftwareApplication` - Schema.org software application\n- **Related**: `spdx:Package` - SPDX Software Bill of Materials\n\n**Example Usage**:\n```yaml\nhas_or_had_technological_infrastructure:\n - has_or_had_identifier: tech-react-frontend\n has_or_had_type: FrontendFramework\n has_or_had_label: React\n has_or_had_version: \"18.2.0\"\n has_or_had_description: Frontend JavaScript library for building user interfaces\n - has_or_had_identifier:\
\ tech-django-backend\n has_or_had_type: BackendFramework\n has_or_had_label: Django\n has_or_had_version: \"4.2\"\n has_or_had_description: Python web framework for rapid development\n includes_or_included:\n - Django REST Framework\n - Django ORM\n```\n\n**Use Cases**:\n- Document platform technology stacks for heritage digital platforms\n- Track software versions for preservation and migration planning\n- Model component dependencies\n- Enable technology-based discovery of similar platforms\n"
exact_mappings:
- doap:Project
close_mappings:
- schema:SoftwareApplication
related_mappings:
- spdx:Package
slots:
- has_or_had_identifier
- has_or_had_type
- has_or_had_label
- has_or_had_description
- has_or_had_version
- includes_or_included
slot_usage:
has_or_had_identifier:
identifier: true
required: true
examples:
- value: tech-react-18-frontend
- value: tech-postgresql-15-primary
has_or_had_type:
range: uriorcurie
required: true
examples:
- value: FrontendFramework
- value: RelationalDatabase
- value: SPARQLEndpoint
has_or_had_label:
required: true
examples:
- value: React
- value: Python/Django
- value: Fedora Commons
has_or_had_description:
examples:
- value: Frontend JavaScript framework for collection browsing interface
has_or_had_version:
range: string
examples:
- value: 18.2.0
- value: 4.2 LTS
- value: '15.4'
includes_or_included:
range: string
multivalued: true
examples:
- value: Django REST Framework
- value: React Router
comments:
- 'MIGRATION: Replaces technology_stack slot per slot_fixes.yaml (2026-01-16)'
- DOAP-aligned for software project descriptions
- Enables structured technology discovery and comparison
- Supports version tracking for preservation planning
examples:
- value:
has_or_had_identifier: tech-react-18
has_or_had_type: FrontendFramework
has_or_had_label: React
has_or_had_version: 18.2.0
has_or_had_description: Frontend JavaScript library for collection interface
- value:
has_or_had_identifier: tech-django-backend
has_or_had_type: BackendFramework
has_or_had_label: Python/Django
has_or_had_version: '4.2'
has_or_had_description: Backend web framework for API and admin
includes_or_included:
- Django REST Framework
- Django ORM
- Celery
- value:
has_or_had_identifier: tech-solr-search
has_or_had_type: SearchIndex
has_or_had_label: Apache Solr
has_or_had_version: '9.4'
has_or_had_description: Full-text search indexing for collection discovery
- value:
has_or_had_identifier: tech-fedora-repo
has_or_had_type: DigitalRepositorySystem
has_or_had_label: Fedora Commons
has_or_had_version: '6.5'
has_or_had_description: Digital asset repository for preservation
annotations:
specificity_score: 0.1
specificity_rationale: Generic utility class/slot created during migration
custodian_types: "['*']"