endOffset
A Schema.org Property
This term is in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.
- Canonical URL: https://schema.org/endOffset
- Check for open issues.
The end 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 1
Copied
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.