Home > other >  JobPosting Structured Data > how to add multiple apply links
JobPosting Structured Data > how to add multiple apply links

Time:02-10

I have a "JobPosting" type of structured data installed on a website. Being the main location where the applicant can apply for the job, there is indeed a "directApply" property set to true

That being said, i'd like to know if this is possible to add multiple apply links if the job is also available to being applied to on linkedIn for example (and others, for that matter).

I saw that it is somehow possible by looking at job listing on google. You may look at this screenshot i.e. Google Jobs Listing

This is what my json looks like so far.

<script type="application/ld json">
    {
        "@context" : "https://schema.org/",
        "@type" : "JobPosting",
        "title" : "Directeur en fiscalité",
        "description" : "<p>...</p>",
        "datePosted" : "2022-02-07",
        "validThrough" : "2022-02-16",
        "employmentType" : "FULL_TIME", 
        "hiringOrganization" : {
            "@type" : "Organization",
            "name" : "...",
            "sameAs" : "https://...",
            "logo" : "https://....png"
        },
        "jobLocation": {
                "@type": "Place",
                "address": {
                    "@type": "PostalAddress",
                    "streetAddress": "...",
                    "addressLocality": "...",
                    "addressRegion": "QC",
                    "postalCode": "...",
                    "addressCountry": "Canada"
                }
            },
        "baseSalary": {
            "@type": "MonetaryAmount",
            "currency": "CAD",
            "value": {
                "@type": "QuantitativeValue",
                "value": 34.00,
                "unitText": "HOUR"
            }
        },
        "directApply": true
    }
</script>

CodePudding user response:

  •  Tags:  
  • Related