Class: Thing

The most basic item.

URI: dlthing:Thing

erDiagram Thing { uriorcurie id uriorcurieList conforms_to string description uriorcurieList is_about uriorcurie meta_type string name uriorcurieList same_as string title uriorcurie type } Property { uriorcurie meta_type string description uriorcurie is_defined_by string name string title uriorcurie type uriorcurie range string value } Identifier { string notation } Thing ||--}o Identifier : "identifier" Thing ||--}o Property : "has_property" Identifier ||--|o Thing : "schema_agency"

Slots

Name Cardinality and Range Description Inheritance
id 1..1
Uriorcurie
Globally unique identifier of a metadata object direct
conforms_to 0..*
Uriorcurie
An established standard to which the subject conforms direct
description 0..1
String
A free-text account of the thing direct
identifier 0..*
Identifier
An unambiguous reference to the subject within a given context direct
is_about 0..*
Uriorcurie
A relation of an information artifact to a thing direct
meta_type 0..1
Uriorcurie
Type designator of a metadata object for validation and schema structure hand... direct
name 0..1
String
Name of a thing direct
has_property 0..*
Property
Relation between a subject and a quality, capability or role that it bears direct
same_as 0..*
Uriorcurie
Property that determines that subject and object are equal direct
title 0..1
String
A summarily description of a thing direct
type 0..1
Uriorcurie
State that the subject is an instance of a class direct

Usages

used by used in type used
Identifier schema_agency range Thing

Identifier and Mapping Information

Schema Source

  • from schema: https://concepts.datalad.org/s/thing/unreleased

Mappings

Mapping Type Mapped Value
self dlthing:Thing
native dlthing:Thing
exact schema:Thing

Examples

Example: Thing-topic

# Relate a thing to topic/subjects
id: https://doi.org/10.21105/joss.03262
is_about:
  # DataLad software
  - https://www.scicrunch.org/resolver/SCR_003931

Example: Thing-customproperty

# Arbitrary (well-defined) properties can be attached to any Thing.
#
# Example: something heavy from Canada
id: exthisns:mything
has_property:
  - type: obo:HSO_0000360
    name: origin country
    value: Canada
    is_defined_by: http://dbpedia.org/resource/Canada
  - meta_type: dlthing:QuantitativeProperty
    type: obo:NCIT_C181733
    name: biospecimen weight (kg)
    value: "145.3"
    # kilogram
    unit: obo:UO_0000009
    range: xsd:decimal

Example: Thing-identifiers

# Identification options for a thing.
#
# `id` is the identifier of the metadata record. In practice it can
# by any of the identifiers below. In a particular context, it is often
# useful to agree on a particular type of identifier to simplify knowledge
# aggregation for individual things. Arbitrary other identifiers
# can be recorded in addition.
id: https://ror.org/02nv7yv05
identifier:
  # Research Organization Registry
  - notation: 02nv7yv05
    schema_agency: https://ror.org
  # German National Library
  - notation: 5008462-8
    schema_agency: https://d-nb.info
  # Library of Congress Control Number
  - notation: n83199611
    schema_agency: https://lccn.loc.gov
  # Virtual International Authority File
  - notation: "148696642"
    schema_agency: https://viaf.org
  # VAT number
  - notation: "DE 122624631"
    schema_agency: https://www.bzst.de
# Use `same_as` to point to other sources talking about the same thing
same_as:
  - https://en.wikipedia.org/wiki/Forschungszentrum_J%C3%BClich
  - https://www.fz-juelich.de
  - https://www.wikidata.org/wiki/Q697111

Example: Thing-minimal

# Any document on a Thing requires a identifier.
# Beyond that, no property is required.
id: exthisns:mything

Example: Thing-publication

# A scientific publication.
# This is a simplified example lacking any relation descriptions
# (e.g. authors, funding, etc), see publication examples for
# other schemas for those aspects.
id: https://doi.org/10.1038/s41597-022-01163-2
type: bibo:AcademicArticle
name: "FAIRLy big"
title: "FAIRly big: A framework for computationally reproducible processing of large-scale data"
description:
  "Large-scale datasets present unique opportunities to perform scientific investigations with unprecedented breadth. However, they also pose considerable challenges for the findability, accessibility, interoperability, and reusability (FAIR) of research outcomes due to infrastructure limitations, data usage constraints, or software license restrictions. Here we introduce a DataLad-based, domain-agnostic framework suitable for reproducible data processing in compliance with open science mandates. The framework attempts to minimize platform idiosyncrasies and performance-related complexities. It affords the capture of machine-actionable computational provenance records that can be used to retrace and verify the origins of research outcomes, as well as be re-executed independent of the original computing infrastructure. We demonstrate the framework’s performance using two showcases: one highlighting data sharing and transparency (using the studyforrest.org dataset) and another highlighting scalability (using the largest public brain imaging dataset available: the UK Biobank dataset)."
identifier:
  - notation: 10.1038/s41597-022-01163-2
    schema_agency: https://doi.org
# related topics
is_about:
  - https://www.nature.com/subjects/data-processing
  - https://www.nature.com/subjects/data-publication-and-archiving
  - https://www.nature.com/subjects/software
#license: licenses:CC-BY-4.0
same_as:
  - https://www.nature.com/articles/s41597-022-01163-2
# custom properties can be used to arbitrarily (and possibly redundantly)
# detail the publication record for better fit with specialized consumers
has_property:
  - type: dcterms:bibliographicCitation
    value: "Wagner, A.S., Waite, L.K., Wierzba, M. et al. FAIRly big: A framework for computationally reproducible processing of large-scale data. Sci Data 9, 80 (2022)."
  - type: dcterms:isPartOf
    value: Scientific Data
    is_defined_by: https://portal.issn.org/resource/issn/2052-4463
  - type: bibo:doi
    name: DOI
    value: https://doi.org/10.1038/s41597-022-01163-2
  - type: bibo:volume
    name: Volume
    value: "9"
  - type: bibo:number
    name: Document number
    value: "80"
  - type: bibo:numPages
    name: Number of pages
    value: "17"
    range: xsd:nonNegativeInteger
  - type: dcterms:modified
    range: xsd:date
    value: "2022-02-11"
  - type: dcterms:date
    range: xsd:date
    value: "2022-03-11"

LinkML Source

Direct

name: Thing
description: The most basic item.
from_schema: https://concepts.datalad.org/s/thing/unreleased
exact_mappings:
- schema:Thing
slots:
- id
- conforms_to
- description
- identifier
- is_about
- meta_type
- name
- has_property
- same_as
- title
- type
slot_usage:
  conforms_to:
    name: conforms_to
    multivalued: true
    domain_of:
    - Thing
  identifier:
    name: identifier
    domain_of:
    - Thing
    inlined: true
    inlined_as_list: true
  is_about:
    name: is_about
    multivalued: true
    domain_of:
    - Thing
  has_property:
    name: has_property
    multivalued: true
    domain_of:
    - Thing
    inlined: true
    inlined_as_list: true
  same_as:
    name: same_as
    multivalued: true
    domain_of:
    - Thing
    range: uriorcurie
class_uri: dlthing:Thing

Induced

name: Thing
description: The most basic item.
from_schema: https://concepts.datalad.org/s/thing/unreleased
exact_mappings:
- schema:Thing
slot_usage:
  conforms_to:
    name: conforms_to
    multivalued: true
    domain_of:
    - Thing
  identifier:
    name: identifier
    domain_of:
    - Thing
    inlined: true
    inlined_as_list: true
  is_about:
    name: is_about
    multivalued: true
    domain_of:
    - Thing
  has_property:
    name: has_property
    multivalued: true
    domain_of:
    - Thing
    inlined: true
    inlined_as_list: true
  same_as:
    name: same_as
    multivalued: true
    domain_of:
    - Thing
    range: uriorcurie
attributes:
  id:
    name: id
    description: Globally unique identifier of a metadata object.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    exact_mappings:
    - dcterms:identifier
    - schema:identifier
    rank: 1000
    slot_uri: dlthing:id
    identifier: true
    alias: id
    owner: Thing
    domain_of:
    - Thing
    range: uriorcurie
    required: true
  conforms_to:
    name: conforms_to
    description: An established standard to which the subject conforms.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    rank: 1000
    slot_uri: dlthing:conforms_to
    multivalued: true
    alias: conforms_to
    owner: Thing
    domain_of:
    - Thing
    range: uriorcurie
  description:
    name: description
    description: A free-text account of the thing.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    exact_mappings:
    - dcterms:description
    - rdfs:comment
    rank: 1000
    slot_uri: dlthing:description
    alias: description
    owner: Thing
    domain_of:
    - Thing
    - Characteristic
    range: string
  identifier:
    name: identifier
    description: An unambiguous reference to the subject within a given context.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    rank: 1000
    slot_uri: dlthing:identifier
    multivalued: true
    alias: identifier
    owner: Thing
    domain_of:
    - Thing
    range: Identifier
    inlined: true
    inlined_as_list: true
  is_about:
    name: is_about
    description: A relation of an information artifact to a thing. For example, the
      subject matter of the content.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    rank: 1000
    slot_uri: dlthing:is_about
    multivalued: true
    alias: is_about
    owner: Thing
    domain_of:
    - Thing
    range: uriorcurie
  meta_type:
    name: meta_type
    description: Type designator of a metadata object for validation and schema structure
      handling purposes. This is used to indicate specialized schema classes for properties
      that accept a hierarchy of classes as their range.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    exact_mappings:
    - dcterms:type
    rank: 1000
    slot_uri: dlthing:meta_type
    designates_type: true
    alias: meta_type
    owner: Thing
    domain_of:
    - Thing
    - Property
    range: uriorcurie
  name:
    name: name
    description: Name of a thing.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    exact_mappings:
    - rdfs:label
    - schema:name
    - foaf:name
    rank: 1000
    slot_uri: dlthing:name
    alias: name
    owner: Thing
    domain_of:
    - Thing
    - Characteristic
    range: string
  has_property:
    name: has_property
    description: Relation between a subject and a quality, capability or role that
      it bears.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    rank: 1000
    slot_uri: dlthing:has_property
    multivalued: true
    alias: has_property
    owner: Thing
    domain_of:
    - Thing
    relational_role: PREDICATE
    range: Property
    inlined: true
    inlined_as_list: true
  same_as:
    name: same_as
    description: Property that determines that subject and object are equal. Can be
      used to indicate a URL of a reference Web page that unambiguously indicates
      the subjects's identity. For example, the URL of the subjects's Wikipedia page,
      Wikidata entry, or official website.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    rank: 1000
    slot_uri: dlthing:same_as
    multivalued: true
    alias: same_as
    owner: Thing
    domain_of:
    - Thing
    range: uriorcurie
  title:
    name: title
    description: A summarily description of a thing. It is closely related to a name,
      but often less compact and more descriptive. Typically used for documents.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    exact_mappings:
    - dcterms:title
    - sio:SIO_000185
    related_mappings:
    - schema:name
    rank: 1000
    slot_uri: dlthing:title
    alias: title
    owner: Thing
    domain_of:
    - Thing
    - Characteristic
    range: string
  type:
    name: type
    description: State that the subject is an instance of a class.
    from_schema: https://concepts.datalad.org/s/thing/unreleased
    exact_mappings:
    - dcterms:type
    rank: 1000
    slot_uri: rdf:type
    alias: type
    owner: Thing
    domain_of:
    - Thing
    - Characteristic
    range: uriorcurie
class_uri: dlthing:Thing