Skip to content

Commit

Permalink
Make sub fields for Place on JobPostingJsonLd optional (#1251)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiKloepfer committed Jun 21, 2023
1 parent 4c69f9b commit 1b22541
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/jsonld/jobPosting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ export interface HiringOrganization {
}

export interface Place {
addressLocality: string;
addressRegion: string;
postalCode: string;
streetAddress: string;
addressLocality?: string;
addressRegion?: string;
postalCode?: string;
streetAddress?: string;
addressCountry: string;
}

Expand Down

0 comments on commit 1b22541

Please sign in to comment.