Skip to main content
Google Jobs
Heyflow avatar
Written by Heyflow
Updated over a month ago

Job offers can be displayed in Google search results via Google, making it easier for users to find jobs. This can be entered directly into Heyflow using structured data via the head code.

❗Important: This integration only works for flows that offer a specific position, i.e. single job posting.


Setup

Google provides precise information in the developer documentation on the schema that must be used to correctly enter the data in the head code in order to be seen by Google.

Head Code Structure

There are various properties or information that you can include in your code. A distinction is made between required and recommended properties:

  • Required properties:

    • datePosted

    • description

    • hiringOrganization

    • jobLocation

    • title

  • Recommended Properties:

    • e.g. employmentType, validThrough

This is an example of code with all the required properties:

<title>Software Engineer</title>
<script type="application/ld+json">
{
"@context" : "https://schema.org/",
"@type" : "JobPosting",
"title" : "Software Engineer",
"description" : "<p>Google aspires to be an organization that reflects the globally diverse audience that our products and technology serve. We believe that in addition to hiring the best talent, a diversity of perspectives, ideas and cultures leads to the creation of better products and services.</p>",
"datePosted" : "2024-01-18",
"employmentType" : "CONTRACTOR",
"hiringOrganization" : {
"@type" : "Organization",
"name" : "Google",
"sameAs" : "https://www.google.com",
"logo" : "https://www.example.com/images/logo.png"
},
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"streetAddress": "1600 Amphitheatre Pkwy",
"addressLocality": "Mountain View",
"addressRegion": "CA",
"postalCode": "94043",
"addressCountry": "US"
}
}
}
</script>

Insert the head code directly into Heyflow, adjust the properties accordingly, save the head code and publish your flow again.

🔎 To find out more about individual head code, take a look at this help article.


Domain Index

Your domain must also be indexed in order to be found by Google. It may be that it is already indexed by your root domain, in which case it will be faster. However, if your flow cannot yet be found by Google via the URL, you can do this manually via Google's Search Console, e.g. via a code in the head code. This will take a few hours.

Test

You can now use Google's Rich Results Test to check whether the URL of your flow correctly recognizes the structured data of the job posting and whether you have set up everything correctly in the head code in the flow.

Now search Google.com for e.g. jobs title location. You will now be given suggestions under which you can now find your job posting!

Did this answer your question?