List science branches from CAMPUSonline.

Fields

id (integer)

Primary key.

code (string)

Extended code, an expanded form of the primary key.

level (integer)

The level (1-4) where this science branch is located.

name (object)

A dictionary of names using language as its key.

short (object)

A dictionary of short names using language as its key.

parent (integer)

Foreign key to parent CAMPUSonline science branch. A value of null inidcated a root branch.

Filters

To filter for exact value matches:

?<fieldname>=<value>

Expansions

To activate relation expansion add the desired fields as a comma separated list to the expand query parameter like this:

?expand=<field>,<field>,<field>,...

The following relational fields can be expanded:

  • parent
GET /v1/campusonline/sciencebranch/?format=api&offset=1460
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 1474,
    "next": null,
    "previous": "https://api-test.medunigraz.at/v1/campusonline/sciencebranch/?format=api&limit=20&offset=1440",
    "results": [
        {
            "id": 507,
            "code": "507",
            "level": 2,
            "name": {
                "de": "Humangeographie, Regionale Geographie, Raumplanung",
                "en": "Human Geography, Regional Geography, Regional Planning"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": 5
        },
        {
            "id": 508,
            "code": "508",
            "level": 2,
            "name": {
                "de": "Medien- und Kommunikationswissenschaften",
                "en": "Media and Communication Sciences"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": 5
        },
        {
            "id": 509,
            "code": "509",
            "level": 2,
            "name": {
                "de": "Andere Sozialwissenschaften",
                "en": "Other Social Sciences"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": 5
        },
        {
            "id": 601,
            "code": "601",
            "level": 2,
            "name": {
                "de": "Geschichte, Archäologie",
                "en": "History, Archaeology"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": 6
        },
        {
            "id": 602,
            "code": "602",
            "level": 2,
            "name": {
                "de": "Sprach- und Literaturwissenschaften",
                "en": "Linguistics and Literature"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": 6
        },
        {
            "id": 603,
            "code": "603",
            "level": 2,
            "name": {
                "de": "Philosophie, Ethik, Religion",
                "en": "Philosophy, Ethics, Religion"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": 6
        },
        {
            "id": 604,
            "code": "604",
            "level": 2,
            "name": {
                "de": "Kunstwissenschaften",
                "en": "Arts"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": 6
        },
        {
            "id": 605,
            "code": "605",
            "level": 2,
            "name": {
                "de": "Andere Geisteswissenschaften",
                "en": "Other Humanities"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": 6
        },
        {
            "id": 1,
            "code": "1",
            "level": 1,
            "name": {
                "de": "NATURWISSENSCHAFTEN",
                "en": "NATURAL SCIENCES"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": null
        },
        {
            "id": 2,
            "code": "2",
            "level": 1,
            "name": {
                "de": "TECHNISCHE WISSENSCHAFTEN",
                "en": "TECHNICAL SCIENCES"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": null
        },
        {
            "id": 3,
            "code": "3",
            "level": 1,
            "name": {
                "de": "HUMANMEDIZIN, GESUNDHEITSWISSENSCHAFTEN",
                "en": "HUMAN MEDICINE, HEALTH SCIENCES"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": null
        },
        {
            "id": 4,
            "code": "4",
            "level": 1,
            "name": {
                "de": "AGRARWISSENSCHAFTEN, VETERINÄRMEDIZIN",
                "en": "AGRICULTURAL SCIENCES, VETERINARY MEDICINE"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": null
        },
        {
            "id": 5,
            "code": "5",
            "level": 1,
            "name": {
                "de": "SOZIALWISSENSCHAFTEN",
                "en": "SOCIAL SCIENCES"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": null
        },
        {
            "id": 6,
            "code": "6",
            "level": 1,
            "name": {
                "de": "GEISTESWISSENSCHAFTEN",
                "en": "HUMANITIES"
            },
            "short": {
                "de": null,
                "en": null
            },
            "parent": null
        }
    ]
}