This repository has been archived on 2026-04-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
n8n-helper/src/models/job_listing.py
T

13 lines
582 B
Python

from pydantic import BaseModel, Field
class JobListing(BaseModel):
title: str | None = Field(None, description="Job title")
company: str | None = Field(None, description="Company name")
location: str | None = Field(None, description="Location")
description: str | None = Field(None, description="Job description")
salary: int | None = Field(None, description="Salary")
business_id: str | None = Field(None, description="Business ID")
url: str | None = Field(None, description="Job URL")
apply_url: str | None = Field(None, description="Apply URL")