npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@art-design-digital/payload-plugin-google-for-jobs-v3

v1.0.1

Published

A Payload plugin for Google for Jobs.

Downloads

16

Readme

Payload Plugin Google for Jobs v3

A Payload CMS v3 plugin that adds Google for Jobs structured data fields to your job posting collections.

Features

  • Adds all necessary fields for Google for Jobs structured data to existing collections
  • Fields are added in a dedicated "Google for Jobs" tab
  • Full i18n support (EN, DE, ES, FR, NL)
  • Optional localization for the job description field
  • Conditional salary fields (single value or range)

Installation

npm install @art-design-digital/payload-plugin-google-for-jobs-v3
# or
pnpm add @art-design-digital/payload-plugin-google-for-jobs-v3
# or
yarn add @art-design-digital/payload-plugin-google-for-jobs-v3

Usage

Add the plugin to your Payload config:

import { buildConfig } from 'payload'
import { googleForJobsPlugin } from '@art-design-digital/payload-plugin-google-for-jobs-v3'

export default buildConfig({
  // ... your config
  plugins: [
    googleForJobsPlugin({
      // Add Google for Jobs fields to these collections
      collections: ['jobs'],
      // Optional: Enable localization for the description field
      localized: true,
      // Optional: Disable the plugin
      disabled: false,
    }),
  ],
})

Configuration Options

| Option | Type | Default | Description | | ------------- | ---------- | ---------- | ------------------------------------------------------- | | collections | string[] | (required) | Collection slugs to add Google for Jobs fields to | | localized | boolean | false | Enable localization for the description field | | disabled | boolean | false | Disable the plugin (schema is preserved for migrations) |

Added Fields

The plugin adds the following fields to your collections in a "Google for Jobs" tab:

Required Fields

| Field | Type | Description | | ----------------- | -------- | ----------------------------------------------------------------------------------------------------- | | jobCategory | select | Category: Job, Apprenticeship, or Dual Study | | employmentType | select | Employment type (multi-select): Full-time, Part-time, Contractor, Temporary, Intern, Volunteer, Other | | description | richText | Job description (optionally localized) | | jobLocationType | select | Workplace type: Remote, On-site, or Hybrid |

Recommended Fields

| Field | Type | Description | | ------------------------------ | -------- | ------------------------------------------------------------- | | identifier | text | Unique job ID from your internal system | | validThrough | date | Application deadline | | applicantLocationRequirements| text | Geographic restrictions for remote workers (visible for remote/hybrid jobs) | | directApply | checkbox | Whether applicants can apply directly via the job URL | | salaryRange | checkbox | Toggle between single salary and salary range | | baseSalaryMinValue | number | Minimum salary (visible when salaryRange is true) | | baseSalaryMaxValue | number | Maximum salary (visible when salaryRange is true) | | baseSalaryValue | number | Salary (visible when salaryRange is false) | | baseSalaryUnitText | select | Salary unit: Hour, Day, Week, Month, or Year |

Google for Jobs Values

The following values are used for Google for Jobs structured data:

Employment Type

  • FULL_TIME - Full-time
  • PART_TIME - Part-time
  • CONTRACTOR - Freelancer/Contractor
  • TEMPORARY - Temporary
  • INTERN - Internship
  • VOLUNTEER - Volunteer
  • OTHER - Other

Job Location Type

  • TELECOMMUTE - Remote/Home office
  • ONSITE - On-site
  • HYBRID - Hybrid

Salary Unit

  • HOUR - Per hour
  • DAY - Per day
  • WEEK - Per week
  • MONTH - Per month
  • YEAR - Per year

i18n Support

The plugin includes translations for:

  • English (en)
  • German (de)
  • Spanish (es)
  • French (fr)
  • Dutch (nl)

All field labels, descriptions, and options are translated based on your Payload admin language setting.

TypeScript

The plugin exports types for use in your project:

import type { GoogleForJobsPluginConfig } from '@art-design-digital/payload-plugin-google-for-jobs-v3'

License

MIT