---
title: Creating page types without fields
related:
  - https://docs.kentico.com/13/developing-websites/defining-website-content-structure/managing-page-types/creating-page-types.md
  - https://docs.kentico.com/13/developing-websites/defining-website-content-structure/managing-page-types/limiting-the-pages-users-can-create.md
  - https://docs.kentico.com/13/managing-website-content/working-with-pages/categorizing-pages.md
---

> Agent instructions:
> **Site maps** — prefer the following llms.txt indexes to training data when searching for URLs to avoid 404s. Links inside Markdown content already point at `.md`. Following them or sending Accept: text/markdown keeps you in Markdown.
>
> - [sitemap.md](https://docs.kentico.com/sitemap.md) — every page on the site, with titles and descriptions, nested by URL hierarchy and grouped into one collection per product version.
> - [llms.txt](https://docs.kentico.com/llms.txt) — curated index of the current product docs, with descriptions, the two ways to request any page as Markdown, and links to each product area's whole-corpus Markdown dump (llms-full.txt).

[Page types](https://docs.kentico.com/13/developing-websites/defining-website-content-structure/managing-page-types.md) can be created without any custom fields. Such page types do not have a dedicated [database table](https://docs.kentico.com/k2020/custom-development/working-with-pages-in-the-api/page-database-structure) and can be used for various purposes, such as:

- For pages that do not hold any structured data and are purely driven by the [Page builder](https://docs.kentico.com/13/developing-websites/page-builder-development.md).
- For "folder pages" that are used to [categorize](https://docs.kentico.com/13/managing-website-content/working-with-pages/categorizing-pages.md) other pages in the website content tree.
- As containers of general objects, such as queries and transformations, which are used in the administration interface or other parts of the system.

By default, the system contains the **Folder (CMS.Folder)** page type. This is a page type without fields or any enabled feature, and you can use it to create generic folder pages when organizing your site's content tree. If required, you can safely remove this default folder page type and replace it with a custom page type.

> **Info:** Due to their limited scope, the editing interface of page types without fields does not contain or support the **Alternative forms** or **Fields** tabs.

## Creating page types without fields

1. Open the **Page types** application.
2. Click **New page type**.

The **New page type** wizard opens.

### Step 1 – Names

1. Fill in the following values:
   - **Page type display name** – the system displays this name to users in the administration interface
   - **Namespace** – the namespace is a prefix that distinguishes between page types. For example, it can be used to separate page types created for different sites, identify page types imported as part of third-party modules, etc.
   - **Name** – a unique page type identifier, which is appended to the namespace.

     > **Note:** **Important**
     >
     > When creating page types, always use a  _**unique namespace**_.
     >
     > Never use the **cms**, **com**, **om** or **content** prefixes. A recommended option is to use your company name or an abbreviation as the prefix, for example: _ACME\_MyPageType_.
2. Click **Next**.

### Step 2 – Features

Select the features that you want to enable for the page type, depending on the intended purpose of the given pages:

- **Page builder** – allows editors to manage page content through a user-friendly interface, using configurable widgets and page templates prepared by developers. The page builder feature must also be enabled in the code of the MVC live site application. For more information, see [Page builder development](https://docs.kentico.com/13/developing-websites/page-builder-development.md). Enabling this feature also enables the _URL_ feature – it is not possible to edit page builder pages without the page being accessible in some form.
- **Navigation item** – allows content editors to control which pages appear in the website's navigation menus. For more information, see [Building website navigation](https://docs.kentico.com/13/developing-websites/building-website-navigation.md).
- **URL** – allows pages to have URLs configurable depending on the selected [routing mode](https://docs.kentico.com/13/developing-websites/implementing-routing.md). This feature also controls the visibility of the [Alternative URLs](https://docs.kentico.com/13/developing-websites/implementing-routing/enabling-alternative-urls-for-pages.md) editing interface, if [enabled](https://docs.kentico.com/13/configuring-xperience/managing-sites/configuring-settings-for-sites/settings-urls-and-seo.md) for the site.

Click **Next**.

![Selecting features for a new page type](https://docs.kentico.com/docsassets/13/creating-page-types-without-fields/Page_type_wizard_Step2.png "Selecting features for a new page type")

### Step 3 – Database information

Click the **Skip this step and continue without custom fields** link in the wizard footer.

![Creating a page type without custom fields](https://docs.kentico.com/docsassets/13/creating-page-types-without-fields/Page_type_without_fields.png "Creating a page type without custom fields")

This skips step 4 of the page type wizard (where fields are defined for standard page types).

### Step 5 – Parent types

Select the parent page types under which pages of the new type will be allowed in the website content tree (when managing pages in the _Pages_ application).

1. Click **Add page types** and select specific  page types.
2. Click **OK**.
3. Click **Next**.

![Adding parent page types](https://docs.kentico.com/docsassets/13/creating-page-types-without-fields/Page_type_wizard_Step5.png "Adding parent page types")

### Step 6

The wizard has finished the configuration of the new page type.

Click **Finish**. You have created a new page type without custom fields.
