pryscraper/templates/indeed-job.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

46 lines
No EOL
1.1 KiB
JSON

{
"name": "Indeed Job Posting",
"description": "Extract job details from Indeed",
"site": "indeed.com",
"category": "professional",
"icon": "\ud83d\udcbc",
"url_pattern": "*://www.indeed.com/viewjob*",
"schema": {
"name": "indeed_job",
"base_selector": ".jobsearch-ViewJobLayout",
"fields": [
{
"name": "title",
"selector": ".jobsearch-JobInfoHeader-title",
"type": "text"
},
{
"name": "company",
"selector": ".jobsearch-InlineCompanyRating .css-6z8f9v",
"type": "text"
},
{
"name": "location",
"selector": ".jobsearch-JobInfoHeader-subtitle .css-6z8f9v",
"type": "text"
},
{
"name": "salary",
"selector": "#salaryInfoAndJobType",
"type": "text"
},
{
"name": "description",
"selector": "#jobDescriptionText",
"type": "text"
},
{
"name": "post_date",
"selector": ".css-1cwevpf",
"type": "text"
}
]
},
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}