glam/schemas/20251121/linkml/modules/classes/NetworkAnalysis.yaml
2026-01-12 14:33:56 +01:00

58 lines
2 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
- ./TemplateSpecificityScores
- ./HeritageTypeCount
- ../slots/connections_by_heritage_type
- ../slots/heritage_relevant_count
- ../slots/heritage_relevant_percentage
- ../slots/specificity_annotation
- ../slots/template_specificity
- ../slots/total_connections_extracted
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
- template_specificity
- total_connections_extracted
slot_usage:
total_connections_extracted:
range: integer
required: true
minimum_value: 0
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