org.schema.Blog Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/Blog
* A blog.
*
* @author schema.org
* @class Blog
* @module org.schema
* @extends CreativeWork
*/
public class Blog extends CreativeWork {
/**
* Schema.org/blogPosts
* The postings that are part of this blog.
*
* @property blogPosts
* @type BlogPosting
*/
public BlogPosting blogPosts;
/**
* Schema.org/blogPost
* A posting that is part of this blog.
*
* @property blogPost
* @type BlogPosting
*/
public BlogPosting blogPost;
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public Blog() {
context = "http://schema.org/";
type = "Blog";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy