stevegrunwell/schemify

View on GitHub
includes/schemas/WebPage.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * The WebPage Schema.
 *
 * @package Schemify
 * @link    http://schema.org/WebPage
 */

namespace Schemify\Schemas;

class WebPage extends CreativeWork {

    /**
     * The properties this schema may utilize.
     *
     * @var array $properties
     */
    protected static $properties = array(
        'breadcrumb',
        'lastReviewed',
        'mainContentOfPage',
        'primaryImageOfPage',
        'relatedLink',
        'reviewedBy',
        'significantLink',
        'specialty',
    );
}