# Schema Type

**`GET /schemas/system/entity/{schemaEntity}`**

Returns the active system schema for the specified entity type.

**Authentication:** Bearer token required (`Authorization: Bearer <token>`)

***

## Request

### Path Parameters

| Parameter      | Type   | Required | Description               |
| -------------- | ------ | -------- | ------------------------- |
| `schemaEntity` | string | Yes      | Entity type of the schema |

Valid `schemaEntity` values:

| Value               | Description                     |
| ------------------- | ------------------------------- |
| `STANDARD_REGISTRY` | Standard Registry entity schema |
| `USER`              | User entity schema              |
| `POLICY`            | Policy entity schema            |
| `MINT_TOKEN`        | Fungible token mint schema      |
| `WIPE_TOKEN`        | Token wipe schema               |
| `MINT_NFTOKEN`      | Non-fungible token mint schema  |

***

## Response

### Success Response

**Status:** `200 OK`

```json
{
  "id": "63e3e5e8a01b3c001234abcd",
  "name": "Standard Registry Schema",
  "entity": "STANDARD_REGISTRY",
  "status": "PUBLISHED",
  "system": true,
  "active": true,
  "document": {
    "$id": "#StandardRegistry",
    "$schema": "http://json-schema.org/draft-07/schema",
    "type": "object",
    "properties": {}
  }
}
```

### Error Responses

| Status                      | Description                                |
| --------------------------- | ------------------------------------------ |
| `401 Unauthorized`          | Missing or invalid token                   |
| `404 Not Found`             | Schema not found for the given entity type |
| `500 Internal Server Error` | Unexpected server failure                  |


---

# Agent Instructions: 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:

```
GET https://guardian.hedera.com/docs/develop/schemas/system-schemas-apis/schema-type.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
