@@ -18,30 +18,29 @@ export const EventDocumentHead = ({event}: EventDocumentHeadProps) => {
18
18
const startDate = utcToTz ( new Date ( event . start_date ) , event . timezone ) ;
19
19
const endDate = event . end_date ? utcToTz ( new Date ( event . end_date ) , event . timezone ) : undefined ;
20
20
21
- // Dynamically build the address object based on available data
22
21
const address = {
23
- "@type" : "PostalAddress" ,
24
- streetAddress : event . location_details ?. address_line_1 ,
25
- addressLocality : event . location_details ?. city ,
26
- addressRegion : event . location_details ?. state_or_region ,
27
- postalCode : event . location_details ?. zip_or_postal_code ,
28
- addressCountry : event . location_details ?. country
22
+ "@type" : "http://schema.org/ PostalAddress" ,
23
+ streetAddress : eventSettings ? .location_details ?. address_line_1 ,
24
+ addressLocality : eventSettings ? .location_details ?. city ,
25
+ addressRegion : eventSettings ? .location_details ?. state_or_region ,
26
+ postalCode : eventSettings ? .location_details ?. zip_or_postal_code ,
27
+ addressCountry : eventSettings ? .location_details ?. country
29
28
} ;
30
29
31
30
// Filter out undefined address properties
32
31
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
33
32
// @ts -ignore
34
33
Object . keys ( address ) . forEach ( key => address [ key ] === undefined && delete address [ key ] ) ;
35
34
36
- const location = event . location_details && Object . keys ( address ) . length > 1 ? {
37
- "@type" : "Place" ,
35
+ const location = eventSettings ? .location_details && Object . keys ( address ) . length > 1 ? {
36
+ "@type" : "http://schema.org/ Place" ,
38
37
name : event . location_details ?. venue_name ,
39
38
address
40
39
} : { } ;
41
40
42
41
const schemaOrgJSONLD = {
43
42
"@context" : "http://schema.org" ,
44
- "@type" : "Event" ,
43
+ "@type" : "http://schema.org/ Event" ,
45
44
name : title ,
46
45
startDate,
47
46
endDate,
@@ -50,19 +49,21 @@ export const EventDocumentHead = ({event}: EventDocumentHeadProps) => {
50
49
description : description ,
51
50
keywords,
52
51
organizer : {
53
- "@type" : "Organization" ,
52
+ "@type" : "http://schema.org/ Organization" ,
54
53
name : event . organizer ?. name ,
55
54
url : event . organizer ?. website
56
55
} ,
57
56
url,
57
+ eventStatus : 'https://schema.org/EventScheduled' ,
58
58
eventAttendanceMode : event . settings ?. is_online_event ? "https://schema.org/OnlineEventAttendanceMode" : "https://schema.org/OfflineEventAttendanceMode" ,
59
59
currency : event . currency ,
60
60
offers : event . tickets ?. map ( ticket => ( {
61
- "@type" : "Offer" ,
61
+ "@type" : "http://schema.org/ Offer" ,
62
62
url,
63
- price : ticket . price ?. toString ( ) ,
63
+ price : ticket . prices ?. [ 0 ] ?. price ,
64
64
priceCurrency : event . currency ,
65
- validFrom : startDate
65
+ validFrom : startDate ,
66
+ availability : ticket . is_available ? "http://schema.org/InStock" : "http://schema.org/SoldOut" ,
66
67
} ) ) ,
67
68
} ;
68
69
0 commit comments