- Implement `normalize_linkml_alt_descriptions.py` to convert structured alt_descriptions to the expected scalar form. - Implement `normalize_linkml_structured_aliases.py` to flatten language-keyed structured_aliases into a standard list-of-objects format. - Implement `validate_linkml_schema_integrity.py` to validate the integrity of LinkML schema bundles, checking for import resolution, YAML parsing, and reference existence.
58 lines
2.1 KiB
YAML
58 lines
2.1 KiB
YAML
id: https://nde.nl/ontology/hc/class/NetworkAnalysis
|
|
name: network_analysis_class
|
|
title: Network Analysis Class
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
imports:
|
|
- linkml:types
|
|
- ../slots/categorized_as
|
|
- ../slots/has_percentage
|
|
- ../slots/has_quantity
|
|
- ../slots/has_score
|
|
- ../slots/related_to
|
|
default_prefix: hc
|
|
classes:
|
|
NetworkAnalysis:
|
|
class_uri: schema:DataFeedItem
|
|
description: Aggregate metrics describing extracted connections and their heritage relevance.
|
|
slots:
|
|
- categorized_as
|
|
- has_quantity
|
|
- has_score
|
|
- related_to
|
|
- has_percentage
|
|
slot_usage:
|
|
has_quantity:
|
|
range: integer
|
|
inlined: false # Fixed invalid inline for primitive type
|
|
required: true
|
|
examples:
|
|
- value: "Quantity:\n value: 776\n unit: \"connections\"\n"
|
|
- value: "Quantity:\n value: 456\n unit: \"heritage relevant connections\"\n related_to: Heritage"
|
|
has_percentage:
|
|
range: Percentage
|
|
inlined: true
|
|
examples:
|
|
- value:
|
|
has_value: 58.8
|
|
related_to:
|
|
has_label: Heritage
|
|
categorized_as:
|
|
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
|
|
notes:
|
|
- |
|
|
Preserved from prior description (commit 6e634651):
|
|
|
|
"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"
|
|
annotations:
|
|
specificity_score: 0.1
|
|
specificity_rationale: Generic utility class/slot created during migration
|
|
custodian_types: "['*']"
|