- Created new YAML files for audience size and audience type slots, defining their properties and annotations. - Added archived capacity slots including cubic meters, linear meters, item count, and descriptions, with appropriate URIs and ranges. - Introduced a template specificity slot for context-aware RAG filtering. - Consolidated capacity-related slots into a unified structure, including has_or_had_capacity, capacity_type, and capacity_value, with detailed descriptions and examples.
79 lines
3 KiB
YAML
79 lines
3 KiB
YAML
id: https://nde.nl/ontology/hc/class/NetworkAnalysis
|
|
name: network_analysis_class
|
|
title: Network Analysis Class
|
|
version: 1.0.0
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
imports:
|
|
- linkml:types
|
|
- ./SpecificityAnnotation
|
|
- ./TemplateSpecificityScore # was: TemplateSpecificityScores - migrated per Rule 53 (2026-01-17)
|
|
|
|
- ./TemplateSpecificityType
|
|
|
|
- ./TemplateSpecificityTypes
|
|
- ./HeritageTypeCount
|
|
- ../slots/connections_by_heritage_type
|
|
- ../slots/heritage_relevant_count
|
|
- ../slots/heritage_relevant_percentage
|
|
- ../slots/specificity_annotation
|
|
- ../slots/has_or_had_score # was: template_specificity - migrated per Rule 53 (2026-01-17)
|
|
# REMOVED 2026-01-14: ../slots/total_connections_extracted - migrated to has_or_had_quantity with Quantity
|
|
- ../slots/has_or_had_quantity
|
|
- ./Quantity
|
|
default_prefix: hc
|
|
classes:
|
|
NetworkAnalysis:
|
|
class_uri: schema:DataFeedItem
|
|
description: "Aggregated statistics about the connection network.\n\nProvides summary metrics for quick analysis:\n- Total\
|
|
\ connections extracted\n- Heritage-relevant count and percentage\n- Breakdown by heritage type (GLAMORCUBESFIXPHDNT)\n\
|
|
\n**Example**:\n```json\n{\n \"total_connections_extracted\": 776,\n \"heritage_relevant_count\": 456,\n \"heritage_relevant_percentage\"\
|
|
: 58.8,\n \"connections_by_heritage_type\": {\n \"A\": 45,\n \"M\": 89,\n \"D\": 112,\n \"R\": 78\n }\n\
|
|
}\n```\n"
|
|
slots:
|
|
- connections_by_heritage_type
|
|
- heritage_relevant_count
|
|
- heritage_relevant_percentage
|
|
- specificity_annotation
|
|
- has_or_had_score # was: template_specificity - migrated per Rule 53 (2026-01-17)
|
|
# REMOVED 2026-01-14: total_connections_extracted - migrated to has_or_had_quantity with Quantity
|
|
- has_or_had_quantity
|
|
slot_usage:
|
|
# REMOVED 2026-01-14: total_connections_extracted - migrated to has_or_had_quantity with Quantity
|
|
# total_connections_extracted:
|
|
# range: integer
|
|
# required: true
|
|
# minimum_value: 0
|
|
has_or_had_quantity:
|
|
range: Quantity
|
|
inlined: true
|
|
description: |
|
|
Total number of connections extracted from this network.
|
|
MIGRATED 2026-01-14: Replaces total_connections_extracted slot.
|
|
required: true
|
|
examples:
|
|
- value: |
|
|
Quantity:
|
|
value: 776
|
|
unit: "connections"
|
|
description: Total connections extracted
|
|
heritage_relevant_count:
|
|
range: integer
|
|
required: true
|
|
minimum_value: 0
|
|
heritage_relevant_percentage:
|
|
range: float
|
|
minimum_value: 0.0
|
|
maximum_value: 100.0
|
|
examples:
|
|
- value: 58.8
|
|
connections_by_heritage_type:
|
|
range: HeritageTypeCount
|
|
multivalued: true
|
|
inlined: true
|
|
inlined_as_list: true
|
|
comments:
|
|
- Optional aggregation - can be computed from connections array
|
|
- Useful for quick heritage sector analysis
|