Docs Menu
Docs Home
/ /
Atlas App Services
/ / / /

realm-cli schema datamodels

On this page

  • Syntax
  • Options
  • Inherited Options

Important

Realm CLI is Deprecated

realm-cli is deprecated and will not receive future features or bug fixes. Instead, use the App Services CLI.

App Services CLI is available on npm. To install the CLI on your system, ensure that you have Node.js installed and then run the following command in your shell:

npm install -g atlas-app-services-cli

Generate data models based on your Schema (alias: datamodel)

Translates your Schema's objects into Atlas App Services data models. The data models define your data as native objects, which can be easily integrated into your own repo to use with Atlas Device Sync.

NOTE: You must have a valid JSON Schema before using this command.

With this command, you can:
  • Specify the language with a "--language" flag

  • Filter which Schema objects you'd like to include in your output with "--name" flags

  • Combine your Schema objects into a single output with a "--flat" flag

  • Omit import groups from your model with a "--no-imports" flag

realm-cli schema datamodels [options]
Name
Type
Required
Description

-a, --app

string

false

Specify the name or ID of an App to generate its data models

-l, --language

String

false

Specify the language to generate schema data models in (Default value: <none>)

--flat

false

View generated data models (and associated imports) as a single code block

--no-imports

false

View generated data models without imports

--name

strings

false

Filter generated data models by name(s)

-h, --help

false

help for datamodels

Name
Type
Required
Description

--profile

string

false

Specify your profile (Default value: "default") (default "default")

--telemetry

String

false

Enable/Disable CLI usage tracking for your current profile (Default value: "on"; Allowed values: "on", "off")

-o, --output-target

string

false

Write CLI output to the specified filepath

-f, --output-format

String

false

Set the CLI output format (Default value: <blank>; Allowed values: <blank>, "json")

--disable-colors

false

Disable all CLI output styling (e.g. colors, font styles, etc.)

-y, --yes

false

Automatically proceed through CLI commands by agreeing to any required user prompts

Back

schema