OrganizeAction
OrganizeAction is an Action subtype for arranging, scheduling, or planning: allocating resources, applying to a programme, bookmarking, planning a trip. Direct subtypes are AllocateAction (with AcceptAction/RejectAction/AssignAction/AuthorizeAction sub-subs), ApplyAction, BookmarkAction, and PlanAction (with ReserveAction, ScheduleAction, CancelAction).
OrganizeAction subtypes appear in application flows (ApplyAction on a JobPosting), in reservation confirmations (ReserveAction), and in personal activity streams (BookmarkAction, PlanAction). JobPosting uses a potentialAction ApplyAction to declare the apply URL.
Full example of schema.org/OrganizeAction 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": "BookmarkAction",
"name": "Bookmarked XooStructured senior schema architect role",
"agent": { "@type": "Person", "name": "Candidate" },
"object": { "@type": "JobPosting", "title": "Senior Schema Architect", "url": "https://xoocode.com/careers/senior-schema-architect" },
"startTime": "2026-03-22T11:07:00-04:00",
"actionStatus": "https://schema.org/CompletedActionStatus"
}
</script>Minimal valid version
The smallest markup that still produces a valid OrganizeAction 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": "BookmarkAction",
"agent": { "@type": "Person", "name": "Candidate" },
"object": { "@type": "JobPosting", "title": "Senior Schema Architect" }
}
</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 (ApplyAction feeds job posting apply URL)
Common OrganizeAction 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
ApplyAction outside a JobPosting potentialAction
WrongStandalone ApplyAction blocks on career pages unattached to a JobPostingRightNest ApplyAction inside JobPosting's potentialAction propertyGoogle's job posting ingestion reads the apply URL from JobPosting.potentialAction. A standalone ApplyAction elsewhere on the page is ignored.
Schema properties in this example
About the example data
A candidate bookmarking the XooStructured senior schema architect job posting for later application.
Comments
Loading comments...