structured-data-testing-tool
Version:
A library and command line tool to help test for Structured Data.
20 lines (19 loc) • 596 B
JavaScript
const LiveBlogPosting = {
name: 'LiveBlogPosting',
description: 'A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates.',
schema: 'LiveBlogPosting',
conditional: {
test: 'LiveBlogPosting'
},
tests: [
// Expected by Google
{ test: `LiveBlogPosting` },
{ test: `LiveBlogPosting[*]."@type"`, expect: 'LiveBlogPosting' },
// Warnings
{ test: `LiveBlogPosting[*].coverageEndTime`, warning: true },
{ test: `LiveBlogPosting[*].coverageStartTime`, warning: true },
],
}
module.exports = {
LiveBlogPosting
}