List bidding endowments.

Fields

id (integer)

Primary key.

bidding (integer)

Foreign key to bidding.

information (string)

Generic textual information.

amount (number)

Monetary amount of endowment.

currency (string)

Currency used to define amount.

Filters

To filter for exact value matches:

?<fieldname>=<value>

Possible exact filters:

  • bidding

For advanced filtering use lookups:

?<fieldname>__<lookup>=<value>

All fields with advanced lookups can also be used for exact value matches as described above.

Possible advanced lookups:

  • amount: gt, gte, lt, lte
GET /v1/research/bidding:endowment/?format=api
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 14,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 986,
            "bidding": 839,
            "information": "monthly grant rate",
            "amount": "1250.00",
            "currency": "EUR"
        },
        {
            "id": 1128,
            "bidding": 999,
            "information": "max.",
            "amount": "20000.00",
            "currency": "EUR"
        },
        {
            "id": 1155,
            "bidding": 1024,
            "information": "for up to 5 years up to",
            "amount": "1500000.00",
            "currency": "EUR"
        },
        {
            "id": 746,
            "bidding": 43,
            "information": "Höhe des Stipendiums pro Jahr",
            "amount": "52080.00",
            "currency": "EUR"
        },
        {
            "id": 1177,
            "bidding": 1045,
            "information": "maximum per project ",
            "amount": "650000.00",
            "currency": "EUR"
        },
        {
            "id": 1178,
            "bidding": 1046,
            "information": "per project up to",
            "amount": "500000.00",
            "currency": "EUR"
        },
        {
            "id": 1100,
            "bidding": 30,
            "information": "Personalkostensatz Doktorand*in pro Jahr",
            "amount": "47520.00",
            "currency": "EUR"
        },
        {
            "id": 1173,
            "bidding": 401,
            "information": "Dissertationen: 1 Preis zu",
            "amount": "1700.00",
            "currency": "EUR"
        },
        {
            "id": 1014,
            "bidding": 870,
            "information": "Gehalt für die Projektleitung pro Jahr",
            "amount": "95640.00",
            "currency": "EUR"
        },
        {
            "id": 822,
            "bidding": 717,
            "information": "in der Höhe von",
            "amount": "4000.00",
            "currency": "EUR"
        },
        {
            "id": 953,
            "bidding": 718,
            "information": "in der Höhe von",
            "amount": "15000.00",
            "currency": "EUR"
        },
        {
            "id": 1042,
            "bidding": 903,
            "information": "Budget in der Höhe von",
            "amount": "8320000.00",
            "currency": "EUR"
        },
        {
            "id": 890,
            "bidding": 755,
            "information": "in der Höhe von",
            "amount": "3000.00",
            "currency": "EUR"
        },
        {
            "id": 1144,
            "bidding": 1014,
            "information": "Förderhöhe bis ",
            "amount": "9000000.00",
            "currency": "EUR"
        }
    ]
}