> For the complete documentation index, see [llms.txt](https://guardian.hedera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guardian.hedera.com/docs/develop/guardian/workspace/schema-templates/create-a-schema-template.md).

# Create a Schema Template

Create reusable schemas and restrictions for draft policies.

### Prerequisites

* The user is signed in as a Standard Registry user.
* The user has permissions to manage schema templates, schemas, and draft policies.
* A draft policy exists before applying a schema template.

### Steps

1. Open the Schema Templates grid.

   The grid shows standalone schema template entities. It supports create, edit, import, export, publish, new version, delete, and filtering behavior consistent with Guardian grids.
2. Create a draft schema template.

   The template gets its own topic and is stored independently from policies. Draft template content is stored in MongoDB. Published template content follows Hedera/IPFS publication flow.
3. Open the template editor.

   The editor lets the user change the template name and description, create schemas for the template, and open template settings.
4. Create template schemas.

   Schemas created inside the template are saved with `category = TEMPLATE`, `templateId`, stable `templateSchemaId`, and field-level `templateFieldId` values.
5. Configure template restrictions.

   \
   The supported settings are:

* **Change schema settings** (`schemaSettingsLocked`): locks schema name, description, and entity type.
* **Can add custom fields** (`customFieldsLocked`): prevents adding custom fields to the schema.
* **Can edit selected field** (`fields[fieldId].locked`): prevents editing and removing an individual template field.
  * Template-owned fields are locked by default; set `locked: false` explicitly to allow policy users to edit or remove the field.
* **Guidelines** (`guidelines`): adds schema-level or field-level notes that are shown in the policy schema editor after the template is applied.

### Result

You have a draft schema template with reusable schemas and restrictions. You can apply it to an eligible draft policy.

### Troubleshooting

**Why can’t I edit a template field?**

The template restriction can lock individual fields. Update the restriction before editing the field.

### Related

* Concept: [Schema Templates Concept](/docs/develop/guardian/workspace/schema-templates.md)
* Task: [Configure Schema Template Guidelines](/docs/develop/guardian/workspace/schema-templates/configure-schema-template-guidelines.md)
* Task: [Apply a Schema Template](/docs/develop/guardian/workspace/schema-templates/apply-a-schema-template.md)
* Task: [Import a Schema Template](/docs/develop/guardian/workspace/schema-templates/import-a-schema-template.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://guardian.hedera.com/docs/develop/guardian/workspace/schema-templates/create-a-schema-template.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
