Class: Individual
An individual person.
URI: kgr:Individual
classDiagram
class Individual
click Individual href "Individual/.html"
Contact <|-- Individual
click Contact href "Contact/.html"
Individual : category
Individual : contact_details
Individual --> "*" ContactDetails : contact_details
click ContactDetails href "ContactDetails/.html"
Individual : label
Individual : orcid
Inheritance
- Contact
- Individual
Slots
| Name | Cardinality and Range | Description | Inheritance |
|---|---|---|---|
| label | 0..1 String |
The name of the individual | direct |
| orcid | 0..1 String |
The ORCID of the individual | direct |
| category | 0..1 CategoryType |
The category of the entity | Contact |
| contact_details | * ContactDetails |
A field for contact details, including email, GitHub, and contact-specific UR… | Contact |
Identifier and Mapping Information
Schema Source
- from schema: https://w3id.org/knowledge-graph-hub/kg_registry_schema
Mappings
| Mapping Type | Mapped Value |
|---|---|
| self | kgr:Individual |
| native | kgr:Individual |
LinkML Source
Direct
```yaml
name: Individual
description: An individual person.
from_schema: https://w3id.org/knowledge-graph-hub/kg_registry_schema
is_a: Contact
attributes:
label:
name: label
description: The name of the individual.
from_schema: https://w3id.org/knowledge-graph-hub/kg_registry_schema
rank: 1000
domain_of:
- Individual
- Organization
- FundingSource
- License
- Usage
range: string
orcid:
name: orcid
description: The ORCID of the individual. Do not include the "https://orcid.org/"
prefix.
from_schema: https://w3id.org/knowledge-graph-hub/kg_registry_schema
rank: 1000
domain_of:
- Individual
range: string
pattern: ^\d{4}-\d{4}-\d{4}-\d{3}(\d|X)$
```
Induced
```yaml
name: Individual
description: An individual person.
from_schema: https://w3id.org/knowledge-graph-hub/kg_registry_schema
is_a: Contact
attributes:
label:
name: label
description: The name of the individual.
from_schema: https://w3id.org/knowledge-graph-hub/kg_registry_schema
rank: 1000
alias: label
owner: Individual
domain_of:
- Individual
- Organization
- FundingSource
- License
- Usage
range: string
orcid:
name: orcid
description: The ORCID of the individual. Do not include the "https://orcid.org/"
prefix.
from_schema: https://w3id.org/knowledge-graph-hub/kg_registry_schema
rank: 1000
alias: orcid
owner: Individual
domain_of:
- Individual
range: string
pattern: ^\d{4}-\d{4}-\d{4}-\d{3}(\d|X)$
category:
name: category
description: The category of the entity. This should be identical to its class
name.
from_schema: https://w3id.org/knowledge-graph-hub/kg_registry_schema
rank: 1000
is_a: type
domain: NamedThing
alias: category
owner: Individual
domain_of:
- NamedThing
- Contact
range: category_type
contact_details:
name: contact_details
description: A field for contact details, including email, GitHub, and contact-specific
URLs.
from_schema: https://w3id.org/knowledge-graph-hub/kg_registry_schema
rank: 1000
alias: contact_details
owner: Individual
domain_of:
- Contact
range: ContactDetails
multivalued: true
inlined: true
inlined_as_list: true
```