startOffset - Schema.org Property

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

A Schema.org Property

This term is in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.

The start time of the clip expressed as the number of seconds from the beginning of the work.

Source

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


Examples

Example notes or example HTML without markup.

A Clip from a longer video.

Example encoded as JSON-LD in a HTML script tag.

<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "VideoObject",
  "name": "Cat video",
  "duration": "P10M",
  "hasPart": {
    "@type": "Clip",
    "name": "Segment where cat jumps",
    "startOffset": 30,
    "endOffset": 45
  }
}
</script>

Structured representation of the JSON-LD example.