Documentation
¶
Overview ¶
Package source defines public job source configuration.
Index ¶
Constants ¶
View Source
const ( TypeManual = "manual" TypeRSS = "rss" TypeGreenhouse = "greenhouse" TypeLever = "lever" TypeAshby = "ashby" TypeSmart = "smartrecruiters" TypeWorkable = "workable" TypeRecruitee = "recruitee" // Scraper-backed sources. These are explicit opt-in connectors for sites // without public APIs. They do not log in, bypass CAPTCHA, or submit // applications, but they are fragile and may violate host Terms of Service. TypeLinkedIn = "linkedin" TypeIndeed = "indeed" TypeGlassdoor = "glassdoor" TypeHandshake = "handshake" )
Variables ¶
This section is empty.
Functions ¶
func SupportedType ¶
Types ¶
type Source ¶
type Source struct {
ID string `json:"id"`
Type string `json:"type"`
Name string `json:"name"`
URL string `json:"url,omitempty"`
CreatedAt time.Time `json:"created_at"`
LastCheckedAt time.Time `json:"last_checked_at,omitempty"`
Enabled bool `json:"enabled"`
}
Source is one configured public job listing source.
Click to show internal directories.
Click to hide internal directories.