Skip to content

Schema Data Model

This section describes the structure of LinkML schemas. For precise semantic interpretation of these structures, refer to the following two parts on derived schemas (part 4) and validation (part 5).

Schema Basics

A LinkML schema specifies rules and structural conformance conditions for instances. Schemas allow for:

  • parsing of instance serializations to LinkML instances
  • structurally and semantically validating LinkML instances
  • inference of missing values in LinkML instances

The LinkML Metamodel

Every LinkML schema m is itself an instance of a special class SchemaDefinition that forms part of a special schema called the LinkML metamodel, which is denoted by mM. There is exactly one metamodel.

In this specification:

  • ClassDefinitions in mM are called metaclasses
  • SlotDefinitions in mM are called metaslots

The metamodel is itself expressed in LinkML, and the latest version can found from canonical URLs:

This specification specifies the normative elements necessary to specify the behavior of LinkML schemas. Schemas may have additional elements provided in the metamodel. For example, elements in schemas can have informative slot assignments for slots such as title, description, and so on, but these slots are not described in this specification as they are not normative and do not affect the formal interpretation of schemas.

The subset of the metamodel that corresponds to the specification is called the SpecificationProfile, and it is found at:

YAML representation of schemas

This part of the specification specifies schemas in terms of the abstract functional syntax (part 2).

For practical purposes, the canonical serialization of a schema is in YAML. The rules for serializing and deserializing LinkML schemas are the same as for instances, because every schema is an object that instantiates a SchemaDefinition class in the metamodel.

See section 6 for rules for mapping to YAML.

Analogies to other modeling frameworks

To help understand the basic concepts, it can be helpful to think about analogous structures in other frameworks. However, it should be understood these are not precisely equivalent.

  • ClassDefinitions are analogous to:
    • classes in object-oriented languages
    • tables in relational databases and spreadsheets
    • owl:Class entities in RDFS/OWL
  • SlotDefinitions are analogous to:
    • attributes in object-oriented languages
    • columns or fields in relational databases and spreadsheets
    • properties in JSON-Schema
    • rdf:Property entities in RDFS/OWL
  • EnumDefinitions are analogous to:
    • enumerated types in programming languages and some relational systems
    • drop-down selections in spreadsheets
    • Note however that in LinkML enums are optionally backed by stronger semantics with enum elements (permissible values) mapped to vocabularies or ontologies
  • TypeDefinitions are analogous to:
    • data types in most object-oriented languages
    • primitive types in database systems
    • extensible types in some systems
    • rdf:Literals in RDF
    • Datatypes in OWL

SchemaDefinition Metaclass

SchemaDefinition: Normative subset metaslots

A schema m is an instance of a SchemaDefinition, with normative elements:

Name Cardinality and Range Description
id 1..1
xsd:anyURI
The official schema URI
name 1..1
xsd:string
a unique name for the schema that is both human-readable and consists of only... identifier
classes 0..*
ClassDefinition
An index to the collection of all class definitions in the schema
slot_definitions 0..*
SlotDefinition
An index to the collection of all slot definitions in the schema
enums 0..*
EnumDefinition
An index to the collection of all enum definitions in the schema
subsets 0..*
SubsetDefinition
An index to the collection of all subset definitions in the schema
prefixes 0..*
Prefix
prefix / URI definitions to be added to the context beyond those fetched from...
default_prefix 0..1
xsd:string
default and base prefix -- used for ':' identifiers, @base and @vocab
default_range 0..1
TypeDefinition
default slot range to be used if range element is omitted from a slot definitition...
settings 0..*
Setting
A collection of global variable settings
imports 0..*
xsd:anyURI
other schemas that are included in this schema
rank 0..1
xsd:integer
the relative order in which the element occurs, lower values are given ...
id_prefixes 0..*
xsd:string
the identifier of this class or slot must begin with the URIs referenced by ...
from_schema 0..1
xsd:anyURI
id of the schema that defined the element

SchemaDefinition: Normative subset UML

A subset of the above normative slots are depicted as follows:

classDiagram SchemaDefinition "1" --> "*" ClassDefinition: classes SchemaDefinition "1" --> "*" SlotDefinition: slots SchemaDefinition "1" --> "*" EnumDefinition: enums SchemaDefinition "1" --> "*" SubsetDefinition: subsets SchemaDefinition "1" --> "*" Prefix: prefixes ClassDefinition --|> Element SlotDefinition --|> Element EnumDefinition --|> Element EnumDefinition --|> Element class SchemaDefinition { +Uri id +NcName name +UriOrCurie[] imports +Ncname default_prefix +Uri default_range }

Schema example, functional syntax

The skeleton of a schema instance serialized as in functional syntax might look like:

SchemaDefinition(
  id=String^"http://example.org/organization",
  imports=[...],
  prefixes=[...],
  classes=[...],
  slots=[...],
  enums=[...],
  types=[...],
)  

Schema example, YAML

The skeleton of the above schema instance serialized as YAML might look like:

id: http://example.org/personinfo
imports:
  ...
prefixes:
  ...
classes:
  ...
slots:
  ...
enums:
  ...
types:
  ...

ClassDefinition Metaclass

Instances of ClassDefinition are themselves instantiable. For example, a schema may contain a class definition "Person". This ClassDefinition instantiates the metaclass ClassDefinition, and can have instances, of actual persons.

Any LinkML instance that instantiates a ClassDefinition will have zero to many slot-value assignments, constrained by rules that operate off of the metaslot assignments of that class.

ClassDefinition: Normative subset metaslots

Any instance c of a ClassDefinition may have assignments in any of the following normative metaslots

Name Cardinality and Range Description
name 1..1
xsd:string
the unique name of the element within the context of the schema identifier
class_uri 0..1
xsd:anyURI
URI of the class that provides a semantic interpretation of the element in a ...
is_a 0..1
ClassDefinition
A primary parent class from which inheritable metaslots are propagated
mixins 0..*
ClassDefinition
A collection of secondary parent mixin classes from which inheritable metaslo...
slots 0..*
SlotDefinition
collection of slot names that are applicable to a class
slot_usage 0..*
SlotDefinition
the refinement of a slot in the context of the containing class definition
attributes 0..*
SlotDefinition
Inline definition of slots
tree_root 0..1
xsd:boolean
indicator that this is the root class in tree structures
rank 0..1
xsd:integer
the relative order in which the element occurs, lower values are given...
any_of 0..*
AnonymousClassExpression
holds if at least one of the expressions hold
exactly_one_of 0..*
AnonymousClassExpression
holds if only one of the expressions hold
none_of 0..*
AnonymousClassExpression
holds if none of the expressions hold
all_of 0..*
AnonymousClassExpression
holds if all of the expressions hold
union_of 0..*
ClassDefinition
indicates that the domain element consists exactly of the members of the elem...
unique_keys 0..*
UniqueKey
A collection of unique keys for this class
rules 0..*
ClassRule
the collection of rules that apply to all members of this class
classification_rules 0..*
AnonymousClassExpression
the collection of classification rules that apply to all members of this clas...
disjoint_with 0..*
ClassDefinition
Two classes are disjoint if they have no instances in common, two slots are d...
slot_conditions 0..*
SlotDefinition
expresses constraints on a group of slots for a class expression
abstract 0..1
xsd:boolean
Indicates the class or slot cannot be directly instantiated and is intended f...
mixin 0..1
xsd:boolean
Indicates the class or slot is not intended to inherited from without being a...
string_serialization 0..1
xsd:string
Used on a slot that stores the string serialization of the containing object
id_prefixes 0..*
xsd:string
the identifier of this class or slot must begin with the URIs referenced by t...
from_schema 0..1
xsd:anyURI
id of the schema that defined the element

ClassDefinition: UML

A subset of the above normative slots are depicted as follows:

classDiagram ClassExpression "1" --> "*" AnonymousClassExpression: any_of ClassExpression "1" --> "*" AnonymousClassExpression: exactly_one_of ClassExpression "1" --> "*" AnonymousClassExpression: none_of ClassExpression "1" --> "*" AnonymousClassExpression: all_of ClassDefinition --|> ClassExpression: mixin ClassDefinition --|> Element: is_a AnonymousClassExpression --|> ClassExpression class ClassDefinition { +ClassDefinitionName name +boolean abstract +boolean mixin } ClassDefinition "*" --> "*" SlotDefinition: slots ClassDefinition "1" --> "*" SlotDefinition: slot_usage ClassDefinition "1" --> "*" SlotDefinition: attributes ClassDefinition "*"--> "0..1" ClassDefinition: is_a ClassDefinition "1" --> "*" ClassDefinition: mixins ClassDefinition "1" --> "*" AnonymousClassExpression: classification_rules ClassDefinition "1" --> "*" ClassRule: rules

ClassExpressions and anonymous ClassExpressions

Note this metaclass exemplifies a pattern that is reused by TypeDefinition, SlotDefinition and EnumDefinition metaclasses, below.

For the core definition types <D>, there are a triad of 3 metaclasses in the metamodel:

  • <D>Expression
  • Anonymous<D>Expression
  • <D>Definition

depicted as:

classDiagram D_Expression "*" --> AnonymousD_Expression: <boolean combinator> class D_Definition { +D_Name name } D_Definition --|> D_Expression AnonymousT_Expression --|> D_Expression

For many purposes, all that is required is the Definition element. The purpose of the above abstraction is to allow composition of anonymous expressions using boolean operators. For example, we may want to refer to the union of collection of ClassDefinitions.

Class Definition Example, Functional Syntax

A collection of ClassDefinition instances might look

[  
   ClassDefinition(
    name=String^"NamedThing",
    abstract=True,
    slots=[
        SlotDefinitionReference&"id",
        SlotDefinitionReference&"name",
        ...
      ]
    ),
   ClassDefinition(
    name=String^"Person",
    description=String^"A person, living or dead",
    is_a=ClassDefinitionReference&"NamedThing",
    attributes=[
        SlotDefinition(
            name=String^"height",
            ...),
        SlotDefinition(
            name=String^"age",
            ...)
   ),
   ...
],

Class Definition Example, YAML

The above example following the YAML serialization is:

NamedThing:
   abstract: true
   slots:
      - id
      - name
Person:
   description: A person, living or dead
   is_a: NamedThing
   attributes:
      height:
         ...
      age:
         ...

SlotDefinition Metaclass

Instances of SlotDefinition are not themselves instantiable. Each assignment in a LinkML ClassDefinition instance must use a SlotDefinition from the schema.

SlotDefinition: Normative subset metaslots

SlotDefinition inherits from both Element and SlotExpression. A SlotDefinition must have a name. other schema elements may refer to AnonymousSlotExpressions composed using boolean operators.

Any instance s of a SlotDefinition may have assignments in any of the following normative metaslots

Name Cardinality and Range Description
name 1..1
xsd:string
the unique name of the element within the context of the schema identifier
slot_uri 0..1
xsd:anyURI
predicate of this slot for semantic web application
identifier 0..1
xsd:boolean
True means that the key slot(s) uniquely identify the container
alias 0..1
xsd:string
the name used for a slot in the context of its owning class
multivalued 0..1
xsd:boolean
true means that slot can have more than one value
required 0..1
xsd:boolean
true means that the slot must be present in the loaded definition
recommended 0..1
xsd:boolean
true means that the slot should be present in the loaded definition, but this...
is_a 0..1
SlotDefinition
A primary parent slot from which inheritable metaslots are propagated
mixins 0..*
SlotDefinition
A collection of secondary parent mixin slots from which inheritable metaslots...
inlined 0..1
xsd:boolean
True means that keyed or identified slot appears in an outer structure by val...
inlined_as_list 0..1
xsd:boolean
True means that an inlined slot is represented as a list of range instances
pattern 0..1
xsd:string
the string value of the slot must conform to this regular expression expresse...
rank 0..1
xsd:integer
the relative order in which the element occurs, lower values are given ...
any_of 0..*
AnonymousSlotExpression
holds if at least one of the expressions hold
exactly_one_of 0..*
AnonymousSlotExpression
holds if only one of the expressions hold
none_of 0..*
AnonymousSlotExpression
holds if none of the expressions hold
all_of 0..*
AnonymousSlotExpression
holds if all of the expressions hold
domain 0..1
ClassDefinition
defines the type of the subject of the slot
inherited 0..1
xsd:boolean
true means that the value of a slot is inherited by subclasses
ifabsent 0..1
xsd:string
function that provides a default value for the slot
list_elements_unique 0..1
xsd:boolean
If True, then there must be no duplicates in the elements of a multivalued sl...
list_elements_ordered 0..1
xsd:boolean
If True, then the order of elements of a multivalued slot is guaranteed to be...
shared 0..1
xsd:boolean
If True, then the relationship between the slot domain and range is many to o...
key 0..1
xsd:boolean
True means that the key slot(s) uniquely identify the container
designates_type 0..1
xsd:boolean
True means that the key slot(s) is used to determine the instantiation (types...
symmetric 0..1
xsd:boolean
If s is symmetric, and i
reflexive 0..1
xsd:boolean
If s is reflexive, then i
locally_reflexive 0..1
xsd:boolean
If s is locally_reflexive, then i
irreflexive 0..1
xsd:boolean
If s is irreflexive, then there exists no i such i
asymmetric 0..1
xsd:boolean
If s is antisymmetric, and i
transitive 0..1
xsd:boolean
If s is transitive, and i
inverse 0..1
SlotDefinition
indicates that any instance of d s r implies that there is also an instance o...
transitive_form_of 0..1
SlotDefinition
If s transitive_form_of d, then (1) s holds whenever d holds (2) s is transit...
reflexive_transitive_form_of 0..1
SlotDefinition
transitive_form_of including the reflexive case
slot_group 0..1
SlotDefinition
allows for grouping of related slots into a grouping slot that serves the rol...
is_grouping_slot 0..1
xsd:boolean
true if this slot is a grouping slot
disjoint_with 0..*
SlotDefinition
Two classes are disjoint if they have no instances in common, two slots are d...
union_of 0..*
SlotDefinition
indicates that the domain element consists exactly of the members of the elem...
range 0..1
Element
defines the type of the object of the slot
range_expression 0..1
AnonymousClassExpression
A range that is described as a boolean expression combining existing ranges
enum_range 0..1
EnumExpression
An inlined enumeration
minimum_value 0..1
linkml:Any
for slots with ordinal ranges, the value must be equal to or higher th...
maximum_value 0..1
linkml:Any
for slots with ordinal ranges, the value must be equal to or lowe than...
structured_pattern 0..1
PatternExpression
the string value of the slot must conform to the regular expression in the pa...
implicit_prefix 0..1
xsd:string
Causes the slot value to be interpreted as a uriorcurie after prefixing with ...
equals_string 0..1
xsd:string
the slot must have range string and the value of the slot must equal the spec...
equals_string_in 0..*
xsd:string
the slot must have range string and the value of the slot must equal one of t...
equals_expression 0..1
xsd:string
the value of the slot must equal the value of the evaluated expression
minimum_cardinality 0..1
xsd:integer
the minimum number of entries for a multivalued slot
maximum_cardinality 0..1
xsd:integer
the maximum number of entries for a multivalued slot
has_member 0..1
AnonymousSlotExpression
the values of the slot is multivalued with at least one member satisfying the...
all_members 0..*
SlotDefinition
the value of the multivalued slot is a list where all elements conform to the...
abstract 0..1
xsd:boolean
Indicates the class or slot cannot be directly instantiated and is intended f...
mixin 0..1
xsd:boolean
Indicates the class or slot is not intended to inherited from without being a...
string_serialization 0..1
xsd:string
Used on a slot that stores the string serialization of the containing object
id_prefixes 0..*
xsd:string
the identifier of this class or slot must begin with the URIs referenced by t...
from_schema 0..1
xsd:anyURI
id of the schema that defined the element

SlotDefinition: Normative subset UML

A subset of the above normative slots are depicted as follows:

classDiagram class SlotExpression { +SlotDefinitionName range } SlotExpression "1" --> "*" AnonymousSlotExpression: any_of SlotExpression "1" --> "*" AnonymousSlotExpression: exactly_one_of SlotExpression "1" --> "*" AnonymousSlotExpression: none_of SlotExpression "1" --> "*" AnonymousSlotExpression: all_of class SlotDefinition { +SlotDefinitionName name +boolean identifier +boolean key +boolean abstract +boolean mixin +boolean designates_type +SlotDefinitionName is_a +SlotDefinitionName[] mixins +ClassDefinitionName range +Decimal minimum_value +Decimal maximum_value +String equals_expression +String pattern +String string_serialization +boolean symmetric +boolean asymmetric +boolean reflexive +boolean irreflexive +boolean locally_reflexive +boolean transitive +SlotDefinition transitive_form_of +SlotDefinition reflexive_transitive_form_of +SlotDefinition inverse } SlotDefinition --|> SlotExpression: mixin SlotDefinition --|> Element: is_a SlotDefinition "0..1" --> SlotDefinition: is_a SlotDefinition "*" --> SlotDefinition: mixins

Slot Definition Example, Functional Syntax

An example collection of SlotDefinitions might be:

SchemaDefinition(
  slots=[
   SlotDefinition(
    name=String^"id",
    identifier=Boolean^True,
    description=String^"A unique identifier for an object",
    range=TypeDefinitionReference&"String",
    ...
    ),
   SlotDefinition(
    name=String^"name",
    description=String^"...",
    range=String^"String",
    ...
    )

EnumDefinition Metaclass

Instances of EnumDefinition instances are instantiable. For example, a schema may have an enumeration with name "JobCode". This is an instance of an EnumDefinition, and can also be instantiated by different permissible values such as "Forklift Driver"

EnumDefinition: Normative subset metaslots

Any instance e of a EnumDefinition may have assignments in any of the following normative metaslots:

Name Cardinality and Range Description
name 1..1
xsd:string
the unique name of the element within the context of the schema identifier
is_a 0..1
Definition
A primary parent class or slot from which inheritable metaslots are propagate...
mixins 0..*
Definition
A collection of secondary parent classes or slots from which inheritable meta...
rank 0..1
xsd:integer
the relative order in which the element occurs, lower values are given...
enum_uri 0..1
xsd:anyURI
URI of the enum that provides a semantic interpretation of the element in a l...
code_set 0..1
xsd:anyURI
the identifier of an enumeration code set
pv_formula 0..1
PvFormulaOptions
Defines the specific formula to be used to generate the permissible values
permissible_values 0..*
PermissibleValue
A list of possible values for a slot range
include 0..*
AnonymousEnumExpression
An enum expression that yields a list of permissible values that are to be in...
minus 0..*
AnonymousEnumExpression
An enum expression that yields a list of permissible values that are to be su...
inherits 0..*
EnumDefinition
An enum definition that is used as the basis to create a new enum
reachable_from 0..1
ReachabilityQuery
Specifies a query for obtaining a list of permissible values based on graph r...
matches 0..1
MatchQuery
Specifies a match query that is used to calculate the list of permissible val...
concepts 0..*
xsd:anyURI
A list of identifiers that are used to construct a set of permissible values
abstract 0..1
xsd:boolean
Indicates the class or slot cannot be directly instantiated and is intended f...
mixin 0..1
xsd:boolean
Indicates the class or slot is not intended to inherited from without being a...
string_serialization 0..1
xsd:string
Used on a slot that stores the string serialization of the containing object
id_prefixes 0..*
xsd:string
the identifier of this class or slot must begin with the URIs referenced by t...
from_schema 0..1
xsd:anyURI
id of the schema that defined the element

EnumDefinition: Normative subset UML

A subset of the above normative slots are depicted as follows:

classDiagram class EnumExpression { +TypeDefinitionName range } EnumExpression "*" --> AnonymousEnumExpression: any_of EnumExpression "*" --> AnonymousEnumExpression: exactly_one_of EnumExpression "*" --> AnonymousEnumExpression: none_of EnumExpression "*" --> AnonymousEnumExpression: all_of class EnumDefinition { +EnumDefinitionName name } EnumDefinition "*" --> PermissibleValue: permissible_values class PermissibleValue { +String text +String description +UriOrCurie meaning }

TypeDefinition Metaclass

Instances of TypeDefinition are themselves instantiable. For example, a schema might contain a TypeDefinition with name "PhoneNumber". This is an instance of TypeDefinition, and can itself be instantiated by individual phone numbers.

TypeDefinition: Normative subset metaslots

Any instance t of a TypeDefinition may have assignments in any of the following normative metaslots:

Name Cardinality and Range Description
name 1..1
xsd:string
the unique name of the element within the context of the schema identifier
type_uri 0..1
xsd:anyURI
The uri that defines the possible values for the type definition
typeof 0..1
TypeDefinition
Names a parent type
base 0..1
xsd:string
python base type that implements this type definition
repr 0..1
xsd:string
the name of the python object that implements this type definition
pattern 0..1
xsd:string
the string value of the slot must conform to this regular expression expresses...
rank 0..1
xsd:integer
the relative order in which the element occurs, lower values are given ...
any_of 0..*
AnonymousTypeExpression
holds if at least one of the expressions hold
exactly_one_of 0..*
AnonymousTypeExpression
holds if only one of the expressions hold
none_of 0..*
AnonymousTypeExpression
holds if none of the expressions hold
all_of 0..*
AnonymousTypeExpression
holds if all of the expressions hold
union_of 0..*
TypeDefinition
indicates that the domain element consists exactly of the members of ...
structured_pattern 0..1
PatternExpression
the string value of the slot must conform to the regular expression in the ...
implicit_prefix 0..1
xsd:string
Causes the slot value to be interpreted as a uriorcurie after prefixing with ...
equals_string 0..1
xsd:string
the slot must have range string and the value of the slot must equal the ...
equals_string_in 0..*
xsd:string
the slot must have range string and the value of the slot must equal one of ...
minimum_value 0..1
xsd:integer
for slots with ranges of type number, the value must be equal to or higher ...
maximum_value 0..1
xsd:integer
for slots with ranges of type number, the value must be equal to or lowe than...
id_prefixes 0..*
xsd:string
the identifier of this class or slot must begin with the URIs referenced by ...
from_schema 0..1
xsd:anyURI
id of the schema that defined the element

TypeDefinition: Normative subset UML

A subset of the above normative slots are depicted as follows:

classDiagram class TypeExpression { +TypeDefinitionName range } TypeExpression "*" --> AnonymousTypeExpression: any_of TypeExpression "*" --> AnonymousTypeExpression: exactly_one_of TypeExpression "*" --> AnonymousTypeExpression: none_of TypeExpression "*" --> AnonymousTypeExpression: all_of AnonymousTypeExpression --|> TypeExpression TypeDefinition --|> TypeExpression class TypeDefinition { +TypeDefinitionName name +TypeDefinitionName typeof +TypeDefinitionName[] mixins +Uri uri +String base +String repr } TypeDefinition --|> TypeExpression: mixin TypeDefinition --|> Element: is_a

Default Types

LinkML includes a default schema of types

These are:

  • Boolean (Bool) - A binary (true or false) value
  • Date (XSDDate) - a date (year, month and day) in an idealized calendar
  • Datetime (XSDDateTime) - The combination of a date and time
  • Decimal (Decimal) - A real number with arbitrary precision that conforms to the xsd:decimal specification
  • Double (float) - A real number that conforms to the xsd:double specification
  • Float (float) - A real number that conforms to the xsd:float specification
  • Integer (int) - An integer
  • Ncname (NCName) - Prefix part of CURIE
  • Nodeidentifier (NodeIdentifier) - A URI, CURIE or BNODE that represents a node in a model.
  • Objectidentifier (ElementIdentifier) - A URI or CURIE that represents an object in the model.
  • String (str) - A character string
  • Time (XSDTime) - A time object represents a (local) time of day, independent of any particular day
  • Uri (URI) - a complete URI
  • Uriorcurie (URIorCURIE) - a URI or a CURIE

The type schema can be imported, used directly, or used as a basis to extend new types

ClassDefinitionReference Metaclass

ClassDefinitionReferences are primitive elements that provide a way to reference a particular instances.

ClassDefinitionReferences are not part of the asserted schema but are derived from derivation rules -- see next section

Prefix Metaclass

  • metamodel documentation: Prefix

A schema can contain any number of prefixes. Each prefix maps a short name such as "owl" to a URI. These are used to determine the canonical URI for any element.

Prefix: Normative subset metaslots

Name Cardinality and Range Description
prefix_prefix 0..1
xsd:string
the nsname (sans ':' for a given prefix)
prefix_reference 1..1
xsd:anyURI
A URI associated with a given prefix

Prefix: Normative subset UML

classDiagram SchemaDefinition "*" --> "*" Prefix: prefixes class Prefix { +Ncname prefix_prefix +Uri prefix_reference }

Prefix Example, Functional Syntax

SchemaDefinition(
    prefixes=[
       Prefix(prefix_prefix=Ncname("linkml")
              prefix_reference=Uri("https://w3id.org/linkml/")),
       Prefix(prefix_prefix=Ncname("schema")
              prefix_reference=Uri("http://schema.org")),
       Prefix(prefix_prefix=Ncname("wgs")
              prefix_reference=Uri("http://www.w3.org/2003/01/geo/wgs84_pos#")),
       Prefix(prefix_prefix=Ncname("qudt")
              prefix_reference=Uri("http://qudt.org/1.1/schema/qudt#"))
    ])

Prefix Example, YAML

prefixes:
  linkml: https://w3id.org/linkml/
  schema: http://schema.org/
  wgs: http://www.w3.org/2003/01/geo/wgs84_pos#
  qudt: http://qudt.org/1.1/schema/qudt#

Complete Schema Example (Informative)

For example, consider a schema that models representations of individual people and organizations they belong to may include a class definition Person, and slot definitions for name, address, relationships and so on.

This might be depicted in UML as:

classDiagram Person "0" --> "*" Person: knows class Person { +String id +String name +Float height +Date date_of_birth +JobCode occupation }

This would have a YAML serialization (see section 6):

classes:
  Person:
    description: ...
    slots:
       - id
       - name
       - height
       - date_of_birth
       - occupation
       - knows
slots:
  id:
     identifier: true
     range: string
  name:
     range: string
  date_of_birth:
     range: date
  height:
     range: float
  occupation:
     range: JobCode
  knows:
     range: Person
     multivalued: true
enums:
  JobCode:
    permissible_values:
      ForkliftDriver:
      ...:
types:
  date:
    ...

Because schemas, are instances of the metamodel, this hypothetical schema may be serialized in functional instance syntax as follows:

SchemaDefinition(
  id=String^"http://example.org/organization",
  name=String^"organization",
  prefixes=[
       Prefix(prefix_prefix=Ncname^"linkml"
              prefix_reference=Uri^"https://w3id.org/linkml/"),
       Prefix(prefix_prefix=Ncname^"org"
              prefix_reference=Uri^"http://example.org/organization/"),
       Prefix(prefix_prefix=Ncname^"schema"
              prefix_reference=Uri^"http://schema.org"),
       Prefix(prefix_prefix=Ncname^"wgs"
              prefix_reference=Uri^"http://www.w3.org/2003/01/geo/wgs84_pos#"),
       Prefix(prefix_prefix=Ncname^"qudt"
              prefix_reference=Uri^"http://qudt.org/1.1/schema/qudt#")
  ],
  default_prefix=String^"org",
  imports=[
    Uriorcurie^"linkml:types"
  ],
  classes=[
    ClassDefinition(
      name=String^"Person",
      slots=[
        SlotDefinition&"id",
        SlotDefinition&"name",
        SlotDefinition&"height",
        SlotDefinition&"age",
        SlotDefinition&"knows",
        SlotDefinition&"job",
        ...
      ]
    ),
    ClassDefinition(
      name=String^"Organization",
      slots=[
        SlotDefinition&"id",
        ...
      ]
    ),
    ...
  ],
  slots=[
    SlotDefinition(
      name=SlotDefinition&"id",
      identifier=Boolean^True,
      description=String^"...",
      range=TypeDefinition&"String",
      ...
    ),
    SlotDefinition(
      name=SlotDefinition&"name",
      description=SlotDefinition&"...",
      ...
    ),
    SlotDefinition(
      name=String^"occupation",
      ...
    ),
    SlotDefinition(
      name=String^"date_of_birth",
      ...
    ),
    SlotDefinition(
      name=String^"knows",
      description=String^"...",
      range=ClassDefinition&"Person",
      multivalued=Boolean^True,
      ...
    )
  ],
  enums=[
     EnumDefinition(
       name=String^"JobCode",
       permissible_values=[...],
     )
  ],
  types=[
     TypeDefinition(
       name=String^"Date",
       ...
     ),
     TypeDefinition(
       name=String^"String",
       ...
     ),
  ]
)