Class: Term

An ontology term. In this model this is either the SubjectTerm of a taxon constraint, or an actual taxon

  • NOTE: this is an abstract class and should not be instantiated directly

URI: owl:Class

classDiagram class Term click Term href "../Term" Term <|-- SubjectTerm click SubjectTerm href "../SubjectTerm" Term <|-- Taxon click Taxon href "../Taxon" Term <|-- PredicateTerm click PredicateTerm href "../PredicateTerm" Term : id Term : label

Inheritance

Slots

Name

Cardinality and Range

Description

Inheritance

id

1
Uriorcurie

the OBO CURIE for the term

direct

label

0..1
String

the human readable name or label of the term

direct

Identifier and Mapping Information

Schema Source

  • from schema: https://w3id.org/oak/taxon_constraints

Mappings

Mapping Type

Mapped Value

self

owl:Class

native

tc:Term

LinkML Source

Direct

```yaml name: Term description: An ontology term. In this model this is either the SubjectTerm of a taxon constraint, or an actual taxon from_schema: https://w3id.org/oak/taxon_constraints abstract: true attributes: id: name: id description: the OBO CURIE for the term from_schema: https://w3id.org/oak/taxon_constraints rank: 1000 identifier: true domain_of: - Term range: uriorcurie required: true label: name: label description: the human readable name or label of the term from_schema: https://w3id.org/oak/taxon_constraints rank: 1000 slot_uri: rdfs:label domain_of: - Term range: string class_uri: owl:Class
</details>

### Induced

<details>
```yaml
name: Term
description: An ontology term. In this model this is either the SubjectTerm of a taxon
  constraint, or an actual taxon
from_schema: https://w3id.org/oak/taxon_constraints
abstract: true
attributes:
  id:
    name: id
    description: the OBO CURIE for the term
    from_schema: https://w3id.org/oak/taxon_constraints
    rank: 1000
    identifier: true
    alias: id
    owner: Term
    domain_of:
    - Term
    range: uriorcurie
  label:
    name: label
    description: the human readable name or label of the term
    from_schema: https://w3id.org/oak/taxon_constraints
    rank: 1000
    slot_uri: rdfs:label
    alias: label
    owner: Term
    domain_of:
    - Term
    range: string
class_uri: owl:Class