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

org.schema.QuantitativeValue Maven / Gradle / Ivy

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

/**
 * Schema.org/QuantitativeValue
 * A point value or interval for product characteristics and other purposes.
 *
 * @author schema.org
 * @class QuantitativeValue
 * @module org.schema
 * @extends StructuredValue
 */
public class QuantitativeValue extends StructuredValue {
	/**
	 * Schema.org/unitCode
	 * The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.
	 *
	 * @property unitCode
	 * @type Text
	 */
	public String unitCode;
	/**
	 * Schema.org/minValue
	 * The lower value of some characteristic or property.
	 *
	 * @property minValue
	 * @type Number
	 */
	public Double minValue;
	/**
	 * Schema.org/value
	 * The value of the quantitative value or property value node.\n\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\n* For [[PropertyValue]], it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.
	 *
	 * @property value
	 * @type StructuredValue
	 */
	public StructuredValue value;
	/**
	 * Schema.org/additionalProperty
	 * A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. schema:width, schema:color, schema:gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.
	 *
	 * @property additionalProperty
	 * @type PropertyValue
	 */
	public PropertyValue additionalProperty;
	/**
	 * Schema.org/valueReference
	 * A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.
	 *
	 * @property valueReference
	 * @type StructuredValue
	 */
	public StructuredValue valueReference;
	/**
	 * Schema.org/maxValue
	 * The upper value of some characteristic or property.
	 *
	 * @property maxValue
	 * @type Number
	 */
	public Double maxValue;
	/**
	 * Schema.org/unitText
	 * A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for
	 * unitCode.
	 *
	 * @property unitText
	 * @type Text
	 */
	public String unitText;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy