-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Description
For a document like:
"@context": "https://schema.org/",
"@type": "JobPosting",
"title": "Gest",
"employmentType": ["FULL_TIME","PART_TIME","CONTRACTOR","TEMPORARY","INTERN","VOLUNTEER","PER_DIEM","OTHER"],
"baseSalary": "",
"hiringOrganization": {
"@type": "Organization",
"name": "Debtges",
"sameAs": "https://some.htm",
"logo": "https://thumbs.some"
}
How to get a struct like:
type job struct {
title string
employmentType []string
baseSalary string
}
var j1 := job{
title: "Gest",
employmentType: []string{"FULL_TIME","PART_TIME","CONTRACTOR","TEMPORARY","INTERN","VOLUNTEER","PER_DIEM","OTHER"},
baseSalary: "",
...
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels