- 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.
85 lines
2.5 KiB
YAML
85 lines
2.5 KiB
YAML
id: https://nde.nl/ontology/hc/class/SocialNetworkMember
|
|
name: SocialNetworkMember
|
|
title: Social Network Member
|
|
|
|
prefixes:
|
|
linkml: https://w3id.org/linkml/
|
|
hc: https://nde.nl/ontology/hc/
|
|
schema: http://schema.org/
|
|
foaf: http://xmlns.com/foaf/0.1/
|
|
|
|
default_prefix: hc
|
|
|
|
imports:
|
|
- linkml:types
|
|
- ../slots/has_description
|
|
- ../slots/identified_by
|
|
- ../slots/has_label
|
|
- ../slots/has_profile
|
|
classes:
|
|
SocialNetworkMember:
|
|
class_uri: foaf:Person
|
|
description: |
|
|
A member in a social or professional network.
|
|
|
|
**DEFINITION**:
|
|
|
|
SocialNetworkMember represents a person who is part of a professional
|
|
network (LinkedIn, ORCID, etc.) in the context of heritage sector
|
|
network analysis.
|
|
|
|
**RELATIONSHIP TO PersonConnection**:
|
|
|
|
`PersonConnection` is a subclass/specialization that includes
|
|
additional metadata about the connection relationship (degree,
|
|
heritage relevance, etc.). `SocialNetworkMember` is the base
|
|
class for any network member.
|
|
|
|
**USE CASES**:
|
|
|
|
1. LinkedIn connection network analysis
|
|
2. Heritage sector professional mapping
|
|
3. Cross-institutional collaboration discovery
|
|
4. Alumni and association network analysis
|
|
|
|
**SEMANTIC PATTERN**:
|
|
|
|
```
|
|
ConnectionNetwork
|
|
│
|
|
└── has_member → SocialNetworkMember (THIS CLASS)
|
|
├── identified_by: LinkedIn URL
|
|
├── has_label: Person name
|
|
└── (subclasses add connection-specific metadata)
|
|
```
|
|
|
|
Created as part of connection migration per slot_fixes.yaml (Rule 53).
|
|
|
|
exact_mappings:
|
|
- foaf:Person
|
|
close_mappings:
|
|
- schema:Person
|
|
|
|
slots:
|
|
- identified_by
|
|
- has_label
|
|
- has_description
|
|
- has_profile
|
|
|
|
slot_usage: {}
|
|
annotations:
|
|
custodian_types: '["*"]'
|
|
custodian_types_rationale: Network members can be associated with any heritage type.
|
|
specificity_score: 0.60
|
|
specificity_rationale: Specialized class for social network analysis.
|
|
|
|
comments:
|
|
- "Base class for network members - PersonConnection extends this"
|
|
- "Created 2026-01-22 per slot_fixes.yaml connection migration"
|
|
- "Enables heritage sector network analysis"
|
|
|
|
examples:
|
|
- value:
|
|
has_label:
|
|
- Jan de Vries
|
|
has_profile: "https://www.linkedin.com/in/jan-de-vries-heritage/"
|