Attorney
Attorney is a direct LegalService subtype for individual attorneys, solo law offices, and partner pages. For the firm-level entity, use LegalService.
Full example of schema.org/Attorney 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": "Attorney",
"name": "Alvarez Law Office",
"description": "Solo-practice attorney focused on family law and estate planning in northeast Pennsylvania.",
"address": { "@type": "PostalAddress", "streetAddress": "210 Main St, Suite 2", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-1111",
"openingHours": "Mo-Fr 09:00-17:00",
"priceRange": "$$$",
"url": "https://xoocode.com/shops/alvarez-law"
}
</script>Minimal valid version
The smallest markup that still produces a valid Attorney 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": "Attorney",
"name": "Alvarez Law Office",
"address": { "@type": "PostalAddress", "streetAddress": "210 Main St", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
Attorney is a structural type. It does not produce a rich result on its own.
Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). Attorney becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common Attorney 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
Attorney vs Person
WrongAttorney for a bare individual profileRightAttorney for the practice/office; Person with jobTitle 'Attorney' for the individual as a human entityAttorney is a business/practice type. The human attorney is a Person. A solo office often has both entities.
Schema properties in this example
About the example data
"Alvarez Law Office", a fictional solo-practice attorney in Dunmore.
Comments
Loading comments...