Event(事件)

Event — 事件

来源: https://schema.org/Event

Event(事件)表示在特定时间和地点发生的活动,例如音乐会、讲座或节日。可以通过 offers 属性添加票务信息。对于重复发生的活动,常把每个事件单独表示为一个 Event 对象。

常用属性

属性 期望类型 说明
about Thing 内容的主题。
actor Person / PerformingGroup 参与表演的个体或团体(演员)。
aggregateRating AggregateRating 基于多条评价或评分的总体评分。
attendee Person / Organization 参加活动的个人或组织。
audience Audience 目标受众。
composer Person / Organization 作曲者或创作此表演作品的组织。
contributor Person / Organization 对 CreativeWork 或 Event 的次要贡献者。
director Person 导演(可用于演出或活动)。
doorTime DateTime / Time 开始入场的时间。
duration Duration / QuantitativeValue 活动持续时间(ISO 8601 格式)。
endDate Date / DateTime 活动结束时间。
eventAttendanceMode EventAttendanceModeEnumeration 活动参与方式:线上/线下/混合。
eventSchedule Schedule 与活动关联的日程表。
eventStatus EventStatusType 活动状态(例如已取消、已改期)。
funder Person / Organization 资助者或赞助者。
funding Grant 提供资助的 Grant 对象。
inLanguage Language / Text 活动使用的语言(BCP 47)。
isAccessibleForFree Boolean 标示活动是否免费对外开放。
keywords Text / DefinedTerm / URL 与活动相关的关键词或标签。
location Place / PostalAddress / Text / VirtualLocation 活动地点或虚拟位置。
maximumAttendeeCapacity Integer 最大参与人数。
offers Offer / Demand 与活动关联的票务或服务要约。
organizer Organization / Person 活动组织者。
performer Organization / Person 演出者或表演者。
previousStartDate Date 原始(已修改)开始时间,用于改期场景。
recordedIn CreativeWork 捕捉或记录该活动的 CreativeWork。
remainingAttendeeCapacity Integer 剩余可用参加名额。
review Review 针对该活动的评论。
sponsor Person / Organization 活动赞助者。
startDate Date / DateTime 活动开始时间。
subEvent Event 子活动(例如会议中的某一演讲)。
superEvent Event 所属的上级活动(例如某演出属于音乐节)。
typicalAgeRange Text 目标年龄范围(例如 “7-9”)。
workFeatured CreativeWork 在活动中展出或展示的作品。

示例(精简 JSON-LD)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"@context": "https://schema.org",
"@type": "Event",
"name": "示例音乐会:Foo Live",
"startDate": "2025-11-01T19:30:00+08:00",
"endDate": "2025-11-01T22:00:00+08:00",
"location": {
"@type": "Place",
"name": "示例音乐厅",
"address": {
"@type": "PostalAddress",
"streetAddress": "示例路 1 号",
"addressLocality": "示例市",
"addressRegion": "示例省",
"postalCode": "100000",
"addressCountry": "CN"
}
},
"offers": {
"@type": "Offer",
"url": "https://example.com/tickets/123",
"price": "120.00",
"priceCurrency": "CNY",
"availability": "https://schema.org/InStock"
},
"performer": {
"@type": "MusicGroup",
"name": "示例乐队"
}
}

来源:原文来自 schema.org 的 Event 类型页面,已翻译并简化以适用于本仓库的文档风格。


Event(事件)
https://www.gjxx.dev/schema/schemas/Event/
作者
gjxx
发布于
2025年10月16日
许可协议