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

org.schema.Book Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/Book
 * A book.
 *
 * @author schema.org
 * @class Book
 * @module org.schema
 * @extends CreativeWork
 */
public class Book extends CreativeWork {
	/**
	 * Schema.org/isbn
	 * The ISBN of the book.
	 *
	 * @property isbn
	 * @type Text
	 */
	public String isbn;
	/**
	 * Schema.org/bookEdition
	 * The edition of the book.
	 *
	 * @property bookEdition
	 * @type Text
	 */
	public String bookEdition;
	/**
	 * Schema.org/bookFormat
	 * The format of the book.
	 *
	 * @property bookFormat
	 * @type BookFormatType
	 */
	public BookFormatType bookFormat;
	/**
	 * Schema.org/numberOfPages
	 * The number of pages in the book.
	 *
	 * @property numberOfPages
	 * @type Integer
	 */
	public Integer numberOfPages;
	/**
	 * Schema.org/illustrator
	 * The illustrator of the book.
	 *
	 * @property illustrator
	 * @type Person
	 */
	public Person illustrator;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public Book() {
		context = "http://schema.org/";
		type = "Book";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy