InteractAction
InteractAction is an Action subtype for social and community interactions: following, joining, leaving, registering, communicating, subscribing. Direct subtypes include SubscribeAction, FollowAction, JoinAction, LeaveAction, RegisterAction, BefriendAction, MarryAction, and CommunicateAction (with its own sub-subtypes: CommentAction, ReplyAction, ShareAction, AskAction, InviteAction, InformAction, CheckInAction, CheckOutAction).
InteractAction is most common in social networks and community platforms. Most search-visible uses go through subtypes (SubscribeAction in email markup, JoinAction and LeaveAction in community activity streams).
Full example of schema.org/InteractAction json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "RegisterAction",
"name": "Registered for XooStructured Schema Fundamentals (Spring 2026)",
"agent": { "@type": "Person", "name": "Priya Reddy" },
"object": { "@type": "CourseInstance", "name": "XooStructured Schema Fundamentals, Spring 2026 cohort" },
"startTime": "2026-01-18T10:14:00-05:00",
"actionStatus": "https://schema.org/CompletedActionStatus"
}
</script>Minimal valid version
The smallest markup that still produces a valid InteractAction entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "RegisterAction",
"agent": { "@type": "Person", "name": "Priya Reddy" },
"object": { "@type": "CourseInstance", "name": "Schema Fundamentals Spring 2026" }
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsNo dedicated rich result
Common InteractAction mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Bare InteractAction instead of RegisterAction/JoinAction
Wrong"@type": "InteractAction" for a course registrationRight"@type": "RegisterAction"Subtypes carry the specific verb. A bare InteractAction forces every consumer to parse the name or target to infer the action.
Schema properties in this example
About the example data
A participant registering for the XooStructured Schema Fundamentals course, the course referenced by the Course example.
Comments
Loading comments...