Note: You are viewing the development version of Schema.org. See how we work for more details.

about

A Schema.org Property
The subject matter of the content.

Inverse-property: subjectOf


Values expected to be one of these types

Used on these types


Sub-properties

Source

https://github.com/schemaorg/schemaorg/issues/1670


Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. A JSON example for an Article about a particular event.
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org/",
  4.   "@type": "Article",
  5.   "name": "Apple announces iPhone SE",
  6.   "description": "New iPhone announced at 11:30 in California.",
  7.   "about": {
  8.     "@type": "Event",
  9.     "name": "Apple's March 21 Announcements"
  10.   },
  11.   "contentReferenceTime": "2016-03-21T11:30:00-07:00"
  12. }
  13. </script>
Structured representation of the JSON-LD example.