Skip to content

Latest commit

 

History

History
292 lines (274 loc) · 8.84 KB

absolventa_xml.md

File metadata and controls

292 lines (274 loc) · 8.84 KB

Absolventa XML

This file belongs to the deprecated RESTful API. We advise customers to use our Pull API.

<?xml version="1.0" encoding="UTF-8"?>
<job_offer>
  <title>Seefahrer:in (w/m/d)</title>
  <mode>premium</mode>

  <application_email>[email protected]</application_email>
  <application_url><![CDATA[https://www.example.com/jobs/seefahrt/apply]]></application_url>
  <started_at>2019-11-11T13:14:40+01:00</started_at>

  <!--
    If the at least one of nodes <city> or <zip> (and optionally street and country) are given
    on top level (relatively to <job_offer>) like below this comment, we will
    create one <job_offer_location> object out of it that adds to the <job_offer_locations>
    list below.
  -->
  <city>Berlin</city>
  <street>Friedrichstraße 67</street>
  <zip>10318</zip>
  <country>Deutschland</country>

  <!--
    If you want to submit more than one location,
    you need to pass it explicitly as <job_offer_locations> list.
    If you have specified both, one location by top-level nodes
    like above these lines and locations list like below this comment
    using the node <job_offer_locations>, we will add them together.
  -->
  <job_offer_locations>
    <job_offer_location>
      <city>Berlin</city>
      <street>Greifswalder Straße 212</street>
      <zip>10405</zip>
      <country>Deutschland</country>
    </job_offer_location>
    <job_offer_location>
      <city>Berlin</city>
      <street>Oranienburger Straße 33</street>
      <zip>10178</zip>
      <country>Deutschland</country>
    </job_offer_location>
  </job_offer_locations>

  <description_headline>Komm' an Bord!</description_headline>
  <description>
    <![CDATA[
      <p>
        Unser renormiertes Seefahrtsunternehmen heuert verlässlich und regelmäßig die besten
        Seefrauen und -männer (w/m/d) östlich des Atlantiks an. Generationen von Seefahrtsexperten
        haben ihre Karriere mit ersten nautischen Schritten in unserem Unternehmen gestartet.
      </p>
    ]]>
  </description>

  <qualifications_headline>Du bist mutig genug, in allen Ozeanen dieser Welt zu schwimmen?</qualifications_headline>
  <qualifications>
    <![CDATA[
      <ul>
        <li>Du kannst schwimmen (Seepferdchen notwendig)</li>
        <li>Ein leichtes Schaukeln ist für dich kein Problem</li>
      </ul>
    ]]>
  </qualifications>

  <tasks_headline>Du kannst im Schlaf unter tosendem Sturm problemlos Segel setzen?</tasks_headline>
  <tasks>
    <![CDATA[
      <ul>
        <li>Du peppst die rauhen und kantigen Geschichten unserer weltweit verstreuten Mitarbeiter linguistisch gekonnt auf</li>
        <li>Dein Instikt lässt dich spielerisch prüfbare Fakten von hanebüchenem Seemannsgarn unterscheiden</li>
      </ul>
    ]]>
  </tasks>

  <benefits_headline>Bestens ausgerüstet!</benefits_headline>
  <benefits>
    <![CDATA[
      <ul>
        <li>Reise zum Ende der Welt</li>
        <li>Ein loyales Team</li>
        <li>Remote first: Wir begrüßen ausdrücklich das eigenständige, asynchrone Arbeiten in entlegenen Gegenden</li>
      </ul>
    ]]>
  </benefits>

  <company_description_headline>Unser Geschäft ist kein Voodoo!</company_description_headline>
  <company_description>
    <![CDATA[
      <p>Marley & Threepwood Ventures - Ihr Partner in Sachen Seefahrt- und Handelsbeziehungen</p>
    ]]>
  </company_description>

  <video_url><![CDATA[https://api.example.com/videos/seemannsgarn]]></video_url>
  <header_image_url><![CDATA[https://api.example.com/content/header_image.jpg]]></header_image_url>

  <contact_headline>Frag' unsere Expertin Elaine!</contact_headline>
  <contact>
    <![CDATA[
      <p>Elaine Marley</p>
      <p>[email protected]</p>
      <small>Senior Seefahrt-Personalmanagerin</small>
    ]]>
  </contact>

  <color>#efefef</color>
</job_offer>

Data fields

HTML tags

Some text fields allow passing HTML tags. However, to guarantee a good interplay with our native UI, not all HTML tags are allowed. The following tags are allowed: strong, em, u, ol, ul, li, p, br, a. All other HTML tags will get stripped out automatically. Some HTML tags make use of attributes. We allow the following attributes: href, class, target. All other attributes will get stripped out automatically.

List of fields

attribute value type
mode This value needs to to match the booked contract. Possible values: standard or premium. Defaults to standard if omitted. Cannot be changed after creation. String optional
title Title String required
description_headline Headline summarizing the introductory description content. Text optional
description Description text of your job ad. Text/HTML required
company_description_headline Headline summarizing the company_description content. Text/HTML optional
company_description Description text of your company. Text/HTML optional
qualifications_headline Headline summarizing the introductory qualifications content. Text optional
qualifications Text summarizing the requirements of the candiates. Text/HTML optional
tasks_headline Headline summarizing the tasks content. Text optional
tasks Text summarizing the job tasks of the candiates. Text/HTML optional
benefits_headline Headline summarizing the benefits content. Text optional
benefits Text summarizing the job benefits of the candiates. Text/HTML optional
contact_headline Headline summarizing the contact content. Text optional
contact Text summarizing the contact information for the candiates. Text/HTML optional
video_url URL to embeddable video content. Text optional
header_image_url URL to image that is being displayed at the top of the job ad.
  • Image resolution: 2340 x 936 px (5:2 aspect ratio)
  • Max. file size: 1 MB
  • Formats: jpg, png
Text optional
color Hex code for headline color. Text optional
started_at Date the job offer starts being published to our platform. Note that once the job offer has been published this field cannot be edited any longer. If left out, we immediately publish your job offer. Datetime optional
apprenticeship_started_at Date on which the apprenticeship will start. Only relevant for job ads targeted at https://www.azubi.de. Datetime optional
application_method Info about the application method. String required (Either email or url)
application_url URL pointing to the application online formular of the job offer. String required (If application_method is set to url)
application_email E-Mail address potential candidates shall send their applications to String required (If application_method is set to email)
job_offer_locations List of job_offer_location objects. Each job_offer_location contained in the list has to include at least a city and a zip value. job_offer_location object optional