Skip to content

Class: NamedThing

a databased entity or concept/class

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

URI: nmdc_sub_schema:NamedThing

classDiagram class NamedThing NamedThing <|-- MaterialEntity NamedThing : alternative_identifiers NamedThing : description NamedThing : id NamedThing : name

Inheritance

Slots

Name Cardinality and Range Description Inheritance
id 1..1
Uriorcurie
A unique identifier for a thing direct
name 0..1
String
A human readable label for an entity direct
description 0..1
String
a human-readable description of a thing direct
alternative_identifiers 0..*
Uriorcurie
A list of alternative identifiers for the entity direct

Identifier and Mapping Information

Schema Source

  • from schema: https://example.com/nmdc_submission_schema

Mappings

Mapping Type Mapped Value
self nmdc_sub_schema:NamedThing
native nmdc_sub_schema:NamedThing

LinkML Source

Direct

name: NamedThing
description: a databased entity or concept/class
from_schema: https://example.com/nmdc_submission_schema
abstract: true
slots:
- id
- name
- description
- alternative_identifiers

Induced

name: NamedThing
description: a databased entity or concept/class
from_schema: https://example.com/nmdc_submission_schema
abstract: true
attributes:
  id:
    name: id
    description: A unique identifier for a thing. Must be either a CURIE shorthand
      for a URI or a complete URI
    notes:
    - 'abstracted pattern: prefix:typecode-authshoulder-blade(.version)?(_seqsuffix)?'
    - a minimum length of 3 characters is suggested for typecodes, but 1 or 2 characters
      will be accepted
    - typecodes must correspond 1:1 to a class in the NMDC schema. this will be checked
      via per-class id slot usage assertions
    - minting authority shoulders should probably be enumerated and checked in the
      pattern
    examples:
    - value: nmdc:mgmag-00-x012.1_7_c1
      description: https://github.com/microbiomedata/nmdc-schema/pull/499#discussion_r1018499248
    from_schema: https://example.com/nmdc_submission_schema
    rank: 1000
    identifier: true
    alias: id
    owner: NamedThing
    domain_of:
    - NamedThing
    range: uriorcurie
    required: true
    pattern: ^[a-zA-Z0-9][a-zA-Z0-9_\.]+:[a-zA-Z0-9_][a-zA-Z0-9_\-\/\.,]*$
  name:
    name: name
    description: A human readable label for an entity
    from_schema: https://example.com/nmdc_submission_schema
    rank: 1000
    multivalued: false
    alias: name
    owner: NamedThing
    domain_of:
    - NamedThing
    range: string
  description:
    name: description
    description: a human-readable description of a thing
    from_schema: https://example.com/nmdc_submission_schema
    rank: 1000
    slot_uri: dcterms:description
    multivalued: false
    alias: description
    owner: NamedThing
    domain_of:
    - NamedThing
    range: string
  alternative_identifiers:
    name: alternative_identifiers
    description: A list of alternative identifiers for the entity.
    from_schema: https://example.com/nmdc_submission_schema
    rank: 1000
    multivalued: true
    alias: alternative_identifiers
    owner: NamedThing
    domain_of:
    - NamedThing
    range: uriorcurie
    pattern: ^[a-zA-Z0-9][a-zA-Z0-9_\.]+:[a-zA-Z0-9_][a-zA-Z0-9_\-\/\.,]*$