> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs-unsw-v6.advance-uac.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs-unsw-v6.advance-uac.com/_mcp/server.

# List qualification types and their data schemas

GET https://institution/qualification-types

Returns each qualification `type` (tertiary, subject, work_experience) and the JSON Schema its `data` object is validated against on submission. `schema.properties` lists every allowed field with its type and, where applicable, its permitted enum values. Fields whose type is `array` (e.g. tertiary's `subjects`) are relational — supply them as nested qualifications, not inside `data`.

Reference: https://docs-unsw-v6.advance-uac.com/unsw-advance-institution-api/institution/list-qualification-types-and-their-data-schemas

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /institution/qualification-types:
    get:
      operationId: List qualification types and their data schemas
      summary: List qualification types and their data schemas
      description: >-
        Returns each qualification `type` (tertiary, subject, work_experience)
        and the JSON Schema its `data` object is validated against on
        submission. `schema.properties` lists every allowed field with its type
        and, where applicable, its permitted enum values. Fields whose type is
        `array` (e.g. tertiary's `subjects`) are relational — supply them as
        nested qualifications, not inside `data`.
      tags:
        - institution
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/InstitutionQualificationTypesGetResponsesContentApplicationJsonSchemaItems
servers:
  - url: https:/
    description: https://{baseurl}
components:
  schemas:
    InstitutionQualificationTypesGetResponsesContentApplicationJsonSchemaItemsSchemaSubjectsItems:
      type: object
      properties:
        type:
          type: string
      required:
        - type
      title: >-
        InstitutionQualificationTypesGetResponsesContentApplicationJsonSchemaItemsSchemaSubjectsItems
    InstitutionQualificationTypesGetResponsesContentApplicationJsonSchemaItemsSchema:
      type: object
      properties:
        gpa:
          type: number
          format: double
        code:
          type: string
          description: Program code, e.g. 3778
        name:
          type: string
          description: Program name, e.g. Bachelor of Computer Science
        subjects:
          type: array
          items:
            $ref: >-
              #/components/schemas/InstitutionQualificationTypesGetResponsesContentApplicationJsonSchemaItemsSchemaSubjectsItems
          description: Nested subject qualifications, e.g. units within this program
        completed:
          type: boolean
        fieldOfStudy:
          type: string
        completedYear:
          type: integer
        institutionCode:
          type: string
        institutionName:
          type: string
      title: >-
        InstitutionQualificationTypesGetResponsesContentApplicationJsonSchemaItemsSchema
    InstitutionQualificationTypesGetResponsesContentApplicationJsonSchemaItems:
      type: object
      properties:
        type:
          type: string
        schema:
          $ref: >-
            #/components/schemas/InstitutionQualificationTypesGetResponsesContentApplicationJsonSchemaItemsSchema
      required:
        - type
        - schema
      title: >-
        InstitutionQualificationTypesGetResponsesContentApplicationJsonSchemaItems
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples



**Response**

```json
[
  {
    "type": "tertiary",
    "schema": {
      "properties": {
        "code": {
          "description": "Program code, e.g. 3778",
          "type": "string"
        },
        "completed": {
          "type": "boolean"
        },
        "completedYear": {
          "type": "integer"
        },
        "fieldOfStudy": {
          "type": "string"
        },
        "gpa": {
          "type": "number"
        },
        "institutionCode": {
          "type": "string"
        },
        "institutionName": {
          "type": "string"
        },
        "name": {
          "description": "Program name, e.g. Bachelor of Computer Science",
          "type": "string"
        },
        "subjects": {
          "description": "Nested subject qualifications, e.g. units within this program",
          "items": {
            "type": "subject"
          },
          "type": "array"
        }
      },
      "type": "object"
    }
  },
  {
    "type": "subject",
    "schema": {
      "properties": {
        "ascedCode": {
          "description": "ARTS-verified discipline code",
          "type": "string"
        },
        "clearPass": {
          "type": "boolean"
        },
        "code": {
          "type": "string"
        },
        "creditable": {
          "type": "boolean"
        },
        "creditedVia": {
          "enum": [
            "articulation",
            "precedent",
            "rpl"
          ],
          "type": "string"
        },
        "eligible": {
          "type": "boolean"
        },
        "fieldOfStudy": {
          "type": "string"
        },
        "focus": {
          "description": "AI-derived subject focus, e.g. microeconomics",
          "type": "string"
        },
        "grade": {
          "type": "string"
        },
        "level": {
          "enum": [
            "UG",
            "PG"
          ],
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "studyLevel": {
          "enum": [
            "introductory",
            "intermediate",
            "advanced"
          ],
          "type": "string"
        },
        "yearCompleted": {
          "type": "integer"
        }
      },
      "type": "object"
    }
  },
  {
    "type": "work_experience",
    "schema": {
      "properties": {
        "completed": {
          "type": "boolean"
        },
        "durationMonths": {
          "type": "integer"
        },
        "eligible": {
          "type": "boolean"
        },
        "employer": {
          "type": "string"
        },
        "grade": {
          "type": "string"
        },
        "oscaCode": {
          "type": "string"
        },
        "roleTitle": {
          "type": "string"
        }
      },
      "type": "object"
    }
  }
]
```

**SDK Code**

```python institution_List qualification types and their data schemas_example
import requests

url = "https://https/institution/qualification-types"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript institution_List qualification types and their data schemas_example
const url = 'https://https/institution/qualification-types';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go institution_List qualification types and their data schemas_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://https/institution/qualification-types"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby institution_List qualification types and their data schemas_example
require 'uri'
require 'net/http'

url = URI("https://https/institution/qualification-types")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java institution_List qualification types and their data schemas_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/institution/qualification-types")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php institution_List qualification types and their data schemas_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/institution/qualification-types', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp institution_List qualification types and their data schemas_example
using RestSharp;

var client = new RestClient("https://https/institution/qualification-types");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift institution_List qualification types and their data schemas_example
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://https/institution/qualification-types")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```