Atlas CMS

Content Types

Understand the schema (blueprint) behind your content — fields, types, and how they shape the data you fetch.

Content Types

A Content Type is the schema (blueprint) for your content in Atlas CMS — like a table definition in a relational database. It declares the fields that make up an entity. The actual data you store against a content type is called an Entry.

You create and manage content types through the Atlas dashboard. This page explains the concepts behind content types and the field types available, so you know what to expect when reading entries through the Public API.

Admin API coming later

Creating and managing content types via API (without the dashboard) will be covered when the Admin API reference is added in a later phase.

Fields

Every field on a content type has these properties:

PropertyDescription
nameMachine name used as the key in entry data (e.g. full_name).
labelHuman-readable label shown in the dashboard.
field_typeThe kind of value stored (see below).
requiredWhether the field must have a value.
localizableWhether this field can have per-locale values.
filterableWhether list queries can filter by this field.
sortableWhether list queries can sort by this field.

Field Types

field_typeUse forExample value in API response
textShort, single-line text"John Doe"
textareaPlain multi-line text"Short bio..."
richtextLong-form formatted content (Editor.js JSON by default; if the field is named body, request body_html or body_text via ?fields=){ "blocks": [{ "type": "paragraph", "data": { "text": "..." } }] }
numberInteger or decimal42
booleanTrue/false flagtrue
dateDate and time"2026-01-01T00:00:00Z"
selectOne choice from a fixed list"published"
imageMedia file (resolved to full object){ "url": "https://cdn…/photo.webp", "width": 1200, "height": 630, "alt": "…" }
relationEntry of another content type (resolved one level deep){ "slug": "arya-santoso", "data": { "name": "Arya Santoso" } }
content_type_referenceReference to a content type"<content-type-id>"

Block Types

A content type with is_block: true is called a block type. Block types are used as reusable building blocks inside Pages — each block renders as a section of a page (hero, feature row, CTA, etc.) rather than standing alone as an entry. Their fields follow the same rules and field types as regular content types.

Discovering a Content Type's Fields

Because every workspace defines its own content types, the field names inside data vary per workspace. Use the Schema Explorer on the Entries page to fetch a content type's real fields and generate an example payload matching that type's schema.

Next Steps

  • Entries — how to fetch entry data through the Public API.
  • Localization — mark fields as localizable and read locale-specific values.

On this page