List publications.

Fields

id (integer)

Primary key.

name (string)

Name of doctoral school.

emails (string[])

Contact emails.

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:

  • persons
  • category
  • document
  • organization_authorship

Filters

To filter for exact value matches:

?<fieldname>=<value>

Possible exact filters:

  • year
  • category
  • document
  • persons

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:

  • year: gt, gte, lt, lte
  • sci: iexact, contains, icontains, startswith, istartswith
  • pubmed: iexact, contains, icontains, startswith, istartswith
  • doi: iexact, contains, icontains, startswith, istartswith
  • pmc: iexact, contains, icontains, startswith, istartswith
  • organization_authorship: in
  • impact: isnull, gt, gte, lt, lte
  • imported: isnull, gt, gte, lt, lte, date
GET /v1/research/publication/?format=api&offset=152640&ordering=-impactfactor
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 152641,
    "next": null,
    "previous": "https://api-test.medunigraz.at/v1/research/publication/?format=api&limit=20&offset=152620&ordering=-impactfactor",
    "results": [
        {
            "id": 151364,
            "title": "Multiple epithelioid Spitz nevi or tumors with loss of BAP1 expression: a clue to a hereditary tumor syndrome.",
            "abstract": null,
            "authors": [
                "Busam, KJ",
                "Wanna, M",
                "Wiesner, T"
            ],
            "year": 2013,
            "source": "JAMA Dermatol. 2013; 149(3): 335-339. ",
            "category": 1,
            "document_type": 1,
            "sci": "ISI:000317729300013",
            "pubmed": "23552620",
            "doi": "10.1001/jamadermatol.2013.1529",
            "pmc": null,
            "organizations": [],
            "persons": [],
            "imported": "2016-02-14T01:00:00+01:00",
            "journal": "JAMA Dermatol",
            "issn": "2168-6084",
            "collection_publisher": null,
            "collection_title": null,
            "edition": null,
            "university": null,
            "country": null,
            "case_report": true,
            "impactfactor": 0.0,
            "impactfactor_year": 2013,
            "impactfactor_norm": 0.016,
            "impactfactor_norm_year": 2013,
            "impactfactor_norm_category": "DERMATOLOGY",
            "impactfactor_norm_super": 0.016,
            "impactfactor_norm_super_year": 2013,
            "impactfactor_norm_super_category": "DERMATOLOGY",
            "citations": true,
            "conference_name": null,
            "conference_place": null,
            "conference_international": false,
            "scientific_event": false,
            "invited_lecture": false,
            "keynote_speaker": false,
            "selected_presentation": false,
            "biobank_use": false,
            "bmf_use": false,
            "zmf_use": false,
            "local_affiliation": false
        }
    ]
}