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

# List schema task

> Retrieve the schema for a single GBG GO journey task to understand its required fields, types, and validation rules. Deprecated.



## OpenAPI

````yaml docs/go-v2/openapi-v2.json POST /journey/task/schema
openapi: 3.0.4
info:
  title: GBG GO API Reference V2
  description: >-
    The GBG GO V2 API enables authentication, customer journey execution, task
    management, and tracking verification progress.
  version: 2.0.0
  license:
    name: MIT
servers:
  - url: https://eu.platform.go.gbgplc.com/v2/captain/
  - url: https://us.platform.go.gbgplc.com/v2/captain/
  - url: https://au.platform.go.gbgplc.com/v2/captain/
  - url: https://api.auth.gbgplc.com/as/token.oauth2
security:
  - bearerAuth: []
paths:
  /journey/task/schema:
    post:
      summary: List schema task
      description: >-
        Fetch the schema for a specific task to see the required fields and
        expected data structure. This schema defines the format of data required
        to complete the task.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                taskId:
                  type: string
                  description: Unique identifier for the task assigned to the customer.
                  example: TkoviRO58Q8R7qPnAkLAqBAT
              required:
                - taskId
      responses:
        '201':
          description: Schema retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  $schema:
                    type: string
                    description: The JSON Schema version of the schema.
                  type:
                    type: string
                    description: The type of the schema.
                  properties:
                    type: object
                    description: An object containing the properties of the schema.
                  required:
                    type: array
                    items:
                      type: string
                    description: An array of the required properties of the schema.
                required:
                  - $schema
                  - type
                  - properties
                  - required
      deprecated: true
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````