> ## Documentation Index
> Fetch the complete documentation index at: https://langwatch.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List the SCIM resource schemas

> The attribute definitions for the User and Group resources (RFC 7643 section 7), which an identity provider reads to build its attribute mapping. A LangWatch group is an access group: its membership drives role bindings, and it is not a team. Unauthenticated, like the rest of SCIM discovery.



## OpenAPI

````yaml GET /api/scim/v2/Schemas
openapi: 3.1.0
info:
  title: LangWatch API
  version: 1.0.0
  description: LangWatch openapi spec
servers:
  - url: https://app.langwatch.ai
security:
  - project_api_key: []
paths:
  /api/scim/v2/Schemas:
    get:
      tags:
        - SCIM
      summary: List the SCIM resource schemas
      description: >-
        The attribute definitions for the User and Group resources (RFC 7643
        section 7), which an identity provider reads to build its attribute
        mapping. A LangWatch group is an access group: its membership drives
        role bindings, and it is not a team. Unauthenticated, like the rest of
        SCIM discovery.
      operationId: scimListSchemas
      parameters: []
      responses:
        '200':
          description: The User and Group schema definitions.
          content:
            application/json:
              schema:
                type: object
                properties:
                  schemas:
                    type: array
                    items:
                      type: string
                    description: The SCIM schema URNs this resource conforms to.
                  totalResults:
                    type: integer
                    description: How many resources match, before pagination.
                  startIndex:
                    type: integer
                  itemsPerPage:
                    type: integer
                  Resources:
                    type: array
                    items:
                      type: object
                      properties:
                        schemas:
                          type: array
                          items:
                            type: string
                          description: The SCIM schema URNs this resource conforms to.
                        id:
                          type: string
                          description: The schema URN.
                        name:
                          type: string
                        description:
                          type: string
                        attributes:
                          type: array
                          description: >-
                            The attribute definitions, in the shape RFC 7643
                            section 7 gives them.
                          items:
                            type: object
                        meta:
                          type: object
                          properties:
                            resourceType:
                              type: string
                            location:
                              type: string
      security: []
components:
  securitySchemes:
    project_api_key:
      type: apiKey
      in: header
      name: X-Auth-Token
      description: >-
        Project API key for sending traces and accessing project-scoped
        resources. Format: sk-lw-... (no underscore). Obtain one by creating a
        project via the Admin API or the LangWatch UI.

````