The Typesync schema for a project is defined in a collection of YAML/JSON files. Your definition can contain as many model definition files as you need and you can organize them any way you want.

Each top-level field in a definition file must refer to a model name and the corresponding value must be the model definition. There are two types of models that you can define in a model definition file: document models and alias models.

Document models

A document model represents the shape of a document in a particular Firestore collection.

model
"document"
required

A literal field that specifies that this is a document model.

docs
string

Optional documentation explaining the model in more detail. Typesync will add this to the doc comments for the generated models.

type
hash
required

The type representing the shape of the document. A document can be represented only by an object type.

Example

user.yml
# yaml-language-server: $schema=https://schema.typesync.org/v0.8.json

User:
  model: document
  docs: Represents a user that belongs to a project.
  type:
    type: object
    fields:
      name:
        type: string
        docs: The full name of the user.
      created_at:
        type: timestamp

Alias models

An alias model is used for convenience purposes to define reusable type aliases. You can use the same alias model in multiple document models. You can also use alias models when composing other aliases.

model
"alias"
required

A literal field that specifies that this is an alias model.

docs
string

Optional documentation explaining the model in more detail. Typesync will add this to the doc comments for the generated models.

type
string | hash
required

The type of which this model is an alias. Can be any Typesync type.

Example

user.yml
# yaml-language-server: $schema=https://schema.typesync.org/v0.8.json

UserRole:
  model: alias
  docs: Represents a user's role within a project.
  type:
    type: enum
    members:
      - label: Owner
        value: owner
      - label: Admin
        value: admin
      - label: Member
        value: member

Autcomplete/Intellisense

When writing your schema definition in YAML, always include the following line at the top of each definition file.

# yaml-language-server: $schema=https://schema.typesync.org/v0.8.json

This indicates to your IDE that the file is not just any YAML file but a part of a Typesync definition by linking it to the relevant JSON Schema.. This will allow your IDE to provide Intellisense/autocomplete for definition fields.

For type hinting to take effect, you may need to install a YAML extension that automatically loads the specified JSON Schema. For VS Code, we recommend using the YAML extension by Red Hat.

For the time being, you need manually synchronize the schema version in this line with the Typesync version you’re using. For example, if you’re using Typesync version 0.4.2, you need to make sure that the version in the above schema URL is v0.4. Patch version is always excluded.

Validating with CLI

While utilizing a JSON schema can help identify syntax errors within your schema definition, the Typesync CLI provides the most reliable method to check if a definition is syntactically valid. To validate a schema definition, use the validate command as shown below:

typesync validate --definition <pathToDefinition>

For additional details on using this command, see validate.

Typesync automatically validates your definition before running any generators. The manual validation command is needed when you just want to check if your schema definition is valid without generating any artifacts.