Property Options

When defining properties in your data model, you can apply various options to control their behavior, validation, and representation. These options are defined using the - option: value syntax. In the following sections, we will look at the different options that are available.

General Options

OptionDescriptionExample
descriptionProvides a description for the property- description "The name of the person"
exampleProvides an example value for the property- example "John Doe"

JSON Schema Validation Options

These options map to standard JSON Schema validation constraints, allowing you to enforce data integrity and validation rules in your models. When you use these options, they will be translated into corresponding JSON Schema properties during schema generation, ensuring that your data adheres to the specified constraints. This provides a standardized way to validate data across different systems and implementations that support JSON Schema.

OptionDescriptionExample
minimumSpecifies the minimum value for a numeric property- minimum: 0
maximumSpecifies the maximum value for a numeric property- maximum: 100
minitemsSpecifies the minimum number of items for an array property- minitems: 1
maxitemsSpecifies the maximum number of items for an array property- maxitems: 10
minlengthSpecifies the minimum length for a string property- minlength: 3
maxlengthSpecifies the maximum length for a string property- maxlength: 50
pattern or regexSpecifies a regular expression pattern that a string property must match- pattern: "^[a-zA-Z0-9]+$"
uniqueSpecifies whether array items must be unique- unique: true
multipleofSpecifies that a numeric value must be a multiple of this number- multipleof: 5
exclusiveminimumSpecifies an exclusive minimum value for a numeric property- exclusiveminimum: 0
exclusivemaximumSpecifies an exclusive maximum value for a numeric property- exclusivemaximum: 100

Format Options

The following options are used to define how the property should be represented in different formats.

OptionDescriptionExample
xmlSpecifies that the property should be represented in XML format- xml: someName

A note on the xml option

The xml option has multiple effects:

  • Element will be set as an element in the XML Schema.
  • @Name will be set as an attribute in the XML Schema.
  • someWrapper/Element will wrap the element in a parent element called someWrapper.

Semantic Options

The following options are used to define semantic annotations. Read more about semantic annotations in the Semantics section.

OptionDescriptionExample
termSpecifies the term for the property in the ontology- term: schema:name

SQL Database Options

Database options allow you to specify how properties should be represented in relational database systems. MD-Models supports the following options:

OptionDescriptionExample
pkIndicates whether the property is a primary key in a database- primary key: true

LinkML Specific Options

Options specific to the LinkML specification:

OptionDescriptionExample
readonlyIndicates whether the property is read-only- readonly: true
recommendedIndicates whether the property is recommended- recommended: true

Custom Options

You can also define custom options that aren't covered by the predefined ones:

- name
  - MyKey: my value

Example Usage

Here's how you might use these options in a data model:

### Person (schema:object)

- id
  - type: string
  - primary key: true
  - description: The unique identifier for the person
- name
  - type: string
  - description: The name of the person
  - example: "John Doe"
- age
  - type: integer
  - description: The age of the person
  - minimum: 0

These options help to define constraints, provide validation rules, and give hints to code generators about how properties should be treated in the resulting applications and schemas.