JobSearchResult
Introduction
Detailed view of the JobSearchResult datatype. This page explains all the attributes of that datatype.
Attributes
Name | Type | Possible values | Description |
---|---|---|---|
itemsPerPage | integer | 65500 | The amount of found jobs displayed on one page |
numPages | integer | positive number or zero | Total number of pages. |
offset | integer | 0 | – currently not used – |
actualPage | integer | 0 | – currently not used – |
firstPostingOnPage | integer | 1 | – currently not used – |
lastPostingOnPage | integer | positive number or zero | – currently not used – |
totalNumberOfJobs | integer | positive number or zero | Total amount of jobs found by the search. |
result | Collection<SearchResult> | n/a | Contains all jobs found by the search. |
JSON response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
{ "itemsPerPage": 65500, "numPages": 1, "offset": 0, "actualPage": 0, "firstPostingOnPage": 1, "lastPostingOnPage": 32, "totalNumberOfJobs": 32, "results": [ { "jobPostingId": 11111, "postingVersionId": 555555, "title": "Random Posting", "applyOnlineLink": "https://jobdb.softgarden.de/jobdb/public/jobposting/applyonline/click?jp=11111&ADP", "config": { "ProjectLocation": ["4ffc4d482cad47df817a37c96dcd17e4"], "ProjectNumber": ["0001"], "audience": ["3a3af3667f000002010ad49215c3a5f4"], "ProjectLocationGerman": ["Hamburg"], "location": ["4ffc4d482cad47df817a37c96dcd17e4"], "company": ["ACME"], "softgardenvisibility": ["visible"], "internalPostingName": ["Random Posting"], "listingStartDate": ["1372111200000"], "jobcategory": ["00002"], "ProjectCompanyNameGerman": ["ACME" ] }, "jobStartDate": 1372111200000, "postingVersionStartDate": 1372111200000, "postingVersionEndDate": 0 }, { "jobPostingId": 11115, "postingVersionId": 555560, "title": "Special Victims Unit - N.Y. Chief-Assistant", "applyOnlineLink": "https://jobdb.softgarden.de/jobdb/public/jobposting/applyonline/click?jp=11115&ADP", "config": { "ProjectLocation": ["bca42125b5bc40d1a651266b7e4488f6"], "ProjectNumber": ["0005" ], "audience": ["3a3af3667f000002010ad49215c3a5f4"], "location": ["0d516f660154456ca9505f62fbb8afbc"], "ProjectLocationGerman": ["Frankfurt (Oder)"], "company": ["ACME"], "softgardenvisibility": ["visible"], "internalPostingName": ["Special Victims Unit – – – N.Y. Chief-Assistant"], "listingStartDate": ["1372111200000"], "jobcategory": ["00014" ], "ProjectCompanyNameGerman": ["ACME"] }, "jobStartDate": 1372111200000, "postingVersionStartDate": 1372111200000, "postingVersionEndDate": 0 }, {...}, ] } |