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

# List Resource Schemas

> List available resource schemas.

Returns schemas from installed providers in the tenant namespace,
plus platform resources (e.g. pragma/secret) from the shared namespace.

Returns:
    List of resource schema responses.



## OpenAPI

````yaml https://api.pragmatiks.io/openapi.json get /resources/schemas
openapi: 3.1.0
info:
  title: Pragma API
  version: 0.1.0
servers: []
security: []
paths:
  /resources/schemas:
    get:
      tags:
        - resources
      summary: List Resource Schemas
      description: |-
        List available resource schemas.

        Returns schemas from installed providers in the tenant namespace,
        plus platform resources (e.g. pragma/secret) from the shared namespace.

        Returns:
            List of resource schema responses.
      operationId: resources-list_resource_schemas
      parameters:
        - name: provider
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by provider name
            title: Provider
          description: Filter by provider name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ResourceSchemaResponse'
                title: Response Resources-List Resource Schemas
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ResourceSchemaResponse:
      properties:
        provider:
          type: string
          title: Provider
        resource:
          type: string
          title: Resource
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        config_schema:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Config Schema
        outputs_schema:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Outputs Schema
      type: object
      required:
        - provider
        - resource
      title: ResourceSchemaResponse
      description: |-
        Schema definition for a resource type exposed by a provider.

        Attributes:
            provider: Provider that exposes this resource type.
            resource: Resource type name.
            description: Human-readable description of the resource type.
            config_schema: JSON Schema for resource configuration.
            outputs_schema: JSON Schema for resource outputs.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````