All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.schema.Blog Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy