Class: Node

A node is a class, property, or other entity in an ontology

URI: rdf:Resource

classDiagram class Node Node : id Node : lbl Node : meta Node --> Meta : meta Node : propertyType Node --> PropertyTypeEnum : propertyType Node : type

Slots

Name

Cardinality and Range

Description

Inheritance

id

1..1
OboIdentifierString

The unique identifier of the entity

direct

lbl

0..1
String

the human-readable label of a node

direct

type

0..1
String

direct

propertyType

0..1
PropertyTypeEnum

direct

meta

0..1
Meta

A collection of metadata about either an ontology (graph), an entity, or an a…

direct

Usages

used by

used in

type

used

Graph

nodes

range

Node

Identifier and Mapping Information

Schema Source

  • from schema: https://github.com/geneontology/obographs

Mappings

Mapping Type

Mapped Value

self

rdf:Resource

native

obographs:Node

LinkML Source

Direct

```yaml name: Node description: A node is a class, property, or other entity in an ontology from_schema: https://github.com/geneontology/obographs slots: - id - lbl - type - propertyType - meta class_uri: rdf:Resource
</details>

### Induced

<details>
```yaml
name: Node
description: A node is a class, property, or other entity in an ontology
from_schema: https://github.com/geneontology/obographs
attributes:
  id:
    name: id
    description: The unique identifier of the entity
    from_schema: https://github.com/geneontology/obographs
    see_also:
    - https://owlcollab.github.io/oboformat/doc/obo-syntax.html#2.5
    rank: 1000
    identifier: true
    alias: id
    owner: Node
    domain_of:
    - Graph
    - Node
    - SubsetDefinition
    - SynonymTypeDefinition
    range: OboIdentifierString
    required: true
  lbl:
    name: lbl
    description: the human-readable label of a node
    comments:
    - the name "lbl" exists for legacy purposes, this should be considered identical
      to label in rdfs
    from_schema: https://github.com/geneontology/obographs
    aliases:
    - label
    - name
    rank: 1000
    slot_uri: rdfs:label
    alias: lbl
    owner: Node
    domain_of:
    - Graph
    - Node
    - SubsetDefinition
    - SynonymTypeDefinition
    range: string
  type:
    name: type
    from_schema: https://github.com/geneontology/obographs
    rank: 1000
    alias: type
    owner: Node
    domain_of:
    - Node
    range: string
  propertyType:
    name: propertyType
    from_schema: https://github.com/geneontology/obographs
    rank: 1000
    alias: propertyType
    owner: Node
    domain_of:
    - Node
    range: PropertyTypeEnum
  meta:
    name: meta
    description: A collection of metadata about either an ontology (graph), an entity,
      or an axiom
    from_schema: https://github.com/geneontology/obographs
    aliases:
    - annotations
    rank: 1000
    alias: meta
    owner: Node
    domain_of:
    - GraphDocument
    - Graph
    - Node
    - Edge
    - PropertyValue
    - Axiom
    range: Meta
class_uri: rdf:Resource