Documentation Index
Fetch the complete documentation index at: https://jobo.world/docs/llms.txt
Use this file to discover all available pages before exploring further.
Extract Requirements & Responsibilities
Parse job descriptions to extract structured requirements and responsibilities using AI, then merge back with the original data.Flow
Configuration
AI Node:- Model:
google/gemini-2.0-flash-001 - System Prompt: “You are a job data extraction assistant. Extract requirements (must-have and preferred) and key responsibilities from the job description. Always respond with valid JSON.”
- User Prompt: “Extract requirements and responsibilities from this job posting:\n\n{{input}}”
- Output Schema:
- Strategy: Deep
- Conflict Resolution: Patch Wins
Result
The original job object is enriched with structuredrequirements and responsibilities fields extracted by AI. All original fields (title, company, location, etc.) are preserved through the merge.
Generate SEO Metadata
Generate SEO-optimized titles, meta descriptions, slugs, and keywords for job postings. Uses a Liquid node to prepare a focused context first, reducing AI token usage.Flow
Configuration
Liquid Node — prepares a concise context for the AI:- Model:
google/gemini-2.0-flash-001 - System Prompt: “Generate SEO metadata for a job posting. Respond with valid JSON only.”
- User Prompt: “Generate SEO-optimized metadata for this job:\n\n{{input}}”
- Output Schema:
- Strategy: Deep
- Conflict Resolution: Patch Wins
Result
The original job object gains SEO fields (seo_title, meta_description, slug, keywords) while preserving all original data. Ready for search engine indexing.
Schema Mapping
Use a Liquid node to remap job fields to match your database schema. No AI needed — this is a pure Liquid transformation that runs in sub-millisecond time.Flow
Configuration
Liquid Node — remaps Jobo’s schema to your internal database schema:Result
Each job is remapped from Jobo’s standard schema to your custom database schema. Because this uses only Liquid (no AI), it runs in under 1 millisecond per job and produces 100% deterministic results.When to Use Each Pattern
| Use Case | Pattern | Nodes Used | Latency |
|---|---|---|---|
| Field renaming / reformatting | Schema Mapping | Liquid only | < 1ms |
| AI enrichment (skills, classification) | Branch & Merge | AI + JSON Merge | 1–5s |
| SEO generation with context prep | Prepare → Transform → Merge | Liquid + AI + JSON Merge | 1–5s |
| Multi-field extraction | Parallel AI | Multiple AI + JSON Merge | 1–5s (parallel) |

