---
title: "List schemas of a resource"
method: GET
path: "/scim/v2/Schemas/{id}"
tags: ["SCIM"]
---

# List schemas of a resource

`GET /scim/v2/Schemas/{id}`

Gets a specific resource schema by ID.

Examples:
  ```
  /scim/v2/Schemas/urn:ietf:params:scim:schemas:core:2.0:Group
  /scim/v2/Schemas/urn:ietf:params:scim:schemas:core:2.0:User

  /scim/v2/Schemas/urn:zuora:scim:schemas:1.0:UserExtension
  /scim/v2/Schemas/urn:zuora:scim:schemas:1.0:GroupExtension
  ```

## Path parameters

- `id` string, required

## Headers

- `Idempotency-Key` string
- `Accept-Encoding` string
- `Content-Encoding` string
- `Zuora-Track-Id` string
- `Zuora-Entity-Ids` string

## Response `200`

OK

- object
  - `schemas` string[] — List of schema URNs defining the structure of the response.
  - `id` string — Unique identifier of the schema.
  - `name` string — Name of the schema.
  - `description` string — Description of the schema.
  - `attributes` object[] — List of attributes defined by the schema.
    - `name` string — Name of the attribute.
    - `type` string — Data type of the attribute (e.g., string, boolean).
    - `multiValued` boolean — Indicates if the attribute can hold multiple values.
    - `description` string — Description of the attribute.
    - `required` boolean — Indicates if the attribute is required.
    - `caseExact` boolean — Indicates if the attribute value is case-sensitive.
    - `mutability` string — Specifies the mutability of the attribute (e.g., readOnly, readWrite).
    - `returned` string — Specifies when the attribute is returned in responses (e.g., always, never).
    - `uniqueness` string — Specifies the uniqueness of the attribute values (e.g., none, server).
  - `meta` object — Metadata about the schema.
    - `resourceType` string — Type of the resource (e.g., Schema).
    - `location` string — URL where the schema can be accessed.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.dev/zuora/apis/api-reference.md) · [All operations](https://skmtc.dev/zuora/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/zuora/api-reference/revisions/d11e237f3e54/schema)
