schemaorg

package module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 6, 2021 License: MIT Imports: 0 Imported by: 3

README

schema.org for golang

The library declares Go types of https://schema.org ontology.

Inspiration

Schema.org is a collaborative, community activity with a mission to create, maintain, and promote schemas for structured data on the Internet, on web pages, in email messages, and beyond.

The common vocabulary layouts content into data structure interpretable by human and machines. It also guarantees an interoperability baseline for software in the distribute systems, in the absence of strong content negotiation techniques. Despite, the scheme.org elevates creation of web structured data markup schema, it also defines an ontology usable for data design in other context such as public RESTful interfaces, gRPC or GraphQL.

A core principle of the schema.org vocabulary is to indicate an entity type. As an example, the vocabulary defines a rich collection of rdf:Property, which are essential building blocks for product types.

type Person struct {
  FamilyName schemaorg.FamilyName `json:"schema:familyName"`
}

Get started

The latest version of the library is available at its main branch. All development, including new features and bug fixes, take place on the main branch using forking and pull requests as described in contribution guidelines. The stable version is available via Golang modules.

Core domain types (product types)

Ontologies use rdf:Property to depict characteristic of entities, which differs significantly from Golang type system. Instead of defining product type in terms of named properties, ontologies describe properties in terms of types to which they apply, which allows to extends concepts, defining additional properties without the need to re-define the original description of types.

rdf:Property is a relation between subject resources and object resources. The concept of property at Go programming languages does not correspond to the rdf:Property, with an exception that "properties" of structs has names and corresponding types.

/*
The statement 
  Person schema:familyName "Doe"
*/
type Person struct {
  FamilyName schemaorg.FamilyName `json:"schema:familyName"`
}

Type-level meta-programming helps us better reflect the rdf:Property concept but type-level programming is not supported at Golang. Therefore, this library reflects the rdf:Property to the type.

/*
{
  "@id": "schema:familyName",
  "@type": "rdf:Property",
  "rdfs:comment": "Family name. In the U.S., the last name of a Person.",
  "rdfs:label": "familyName",
  ...
}
*/
type FamilyName string

So that, the application "assembles" core domain type as a product of the types defined by schema.org

import "github.com/fogfish/schemaorg"

type Person struct {
  ID         schemaorg.Identifier `json:"schema:@id"`
  GivenName  schemaorg.GivenName  `json:"schema:givenName"`
  FamilyName schemaorg.FamilyName `json:"schema:familyName"`
  Email      schemaorg.Email      `json:"schema:email"`
}

How To Contribute

The library is auto-generated from schema.org JSON-LD definition using schemacli utility.

Use the following commands to re-generate the type definitions

schemacli property -f schemaorg-all-http.jsonld > types.go

If you experience any issues with the library or requires a new feature, please let us know via GitHub issues.

License

See LICENSE

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Abstract

type Abstract string

Abstract is https://schema.org/abstract

An abstract is a short description that summarizes a [[CreativeWork]].

type AcceptsReservations

type AcceptsReservations string

AcceptsReservations is https://schema.org/acceptsReservations

Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings ```Yes``` or ```No```.

type AccessCode

type AccessCode string

AccessCode is https://schema.org/accessCode

Password, PIN, or access code needed for delivery (e.g. from a locker).

type AccessMode

type AccessMode string

AccessMode is https://schema.org/accessMode

The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Expected values include: auditory, tactile, textual, visual, colorDependent, chartOnVisual, chemOnVisual, diagramOnVisual, mathOnVisual, musicOnVisual, textOnVisual.

type AccessibilityAPI

type AccessibilityAPI string

AccessibilityAPI is https://schema.org/accessibilityAPI

Indicates that the resource is compatible with the referenced accessibility API ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).

type AccessibilityControl

type AccessibilityControl string

AccessibilityControl is https://schema.org/accessibilityControl

Identifies input methods that are sufficient to fully control the described resource ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).

type AccessibilityFeature

type AccessibilityFeature string

AccessibilityFeature is https://schema.org/accessibilityFeature

Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).

type AccessibilityHazard

type AccessibilityHazard string

AccessibilityHazard is https://schema.org/accessibilityHazard

A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 ([WebSchemas wiki lists possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).

type AccessibilitySummary

type AccessibilitySummary string

AccessibilitySummary is https://schema.org/accessibilitySummary

A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as "short descriptions are present but long descriptions will be needed for non-visual users" or "short descriptions are present and no long descriptions are needed."

type AccommodationCategory

type AccommodationCategory string

AccommodationCategory is https://schema.org/accommodationCategory

Category of an [[Accommodation]], following real estate conventions e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values).

type AccountId

type AccountId string

AccountId is https://schema.org/accountId

The identifier for the account the payment will be applied to.

type AcquireLicensePage

type AcquireLicensePage string

AcquireLicensePage is https://schema.org/acquireLicensePage

Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item.

type AcrissCode

type AcrissCode string

AcrissCode is https://schema.org/acrissCode

The ACRISS Car Classification Code is a code used by many car rental companies, for classifying vehicles. ACRISS stands for Association of Car Rental Industry Systems and Standards.

type ActionOption

type ActionOption string

ActionOption is https://schema.org/actionOption

A sub property of object. The options subject to this action.

type ActionPlatform

type ActionPlatform string

ActionPlatform is https://schema.org/actionPlatform

The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication.

type ActionableFeedbackPolicy

type ActionableFeedbackPolicy string

ActionableFeedbackPolicy is https://schema.org/actionableFeedbackPolicy

For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom’s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.

type ActiveIngredient

type ActiveIngredient string

ActiveIngredient is https://schema.org/activeIngredient

An active ingredient, typically chemical compounds and/or biologic substances.

type ActivityFrequency

type ActivityFrequency string

ActivityFrequency is https://schema.org/activityFrequency

How often one should engage in the activity.

type AdditionalName

type AdditionalName string

AdditionalName is https://schema.org/additionalName

An additional name for a Person, can be used for a middle name.

type AdditionalType

type AdditionalType string

AdditionalType is https://schema.org/additionalType

An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.

type AdditionalVariable

type AdditionalVariable string

AdditionalVariable is https://schema.org/additionalVariable

Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.

type Address

type Address string

Address is https://schema.org/address

Physical address of the item.

type AddressCountry

type AddressCountry string

AddressCountry is https://schema.org/addressCountry

The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1).

type AddressLocality

type AddressLocality string

AddressLocality is https://schema.org/addressLocality

The locality in which the street address is, and which is in the region. For example, Mountain View.

type AddressRegion

type AddressRegion string

AddressRegion is https://schema.org/addressRegion

The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country)

type AdministrationRoute

type AdministrationRoute string

AdministrationRoute is https://schema.org/administrationRoute

A route by which this drug may be administered, e.g. 'oral'.

type AfterMedia

type AfterMedia string

AfterMedia is https://schema.org/afterMedia

A media object representing the circumstances after performing this direction.

type Aircraft

type Aircraft string

Aircraft is https://schema.org/aircraft

The kind of aircraft (e.g., "Boeing 747").

type AlcoholWarning

type AlcoholWarning string

AlcoholWarning is https://schema.org/alcoholWarning

Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.

type Algorithm

type Algorithm string

Algorithm is https://schema.org/algorithm

The algorithm or rules to follow to compute the score.

type AlignmentType

type AlignmentType string

AlignmentType is https://schema.org/alignmentType

A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.

type AlternateName

type AlternateName string

AlternateName is https://schema.org/alternateName

An alias for the item.

type AlternativeHeadline

type AlternativeHeadline string

AlternativeHeadline is https://schema.org/alternativeHeadline

A secondary title of the CreativeWork.

type ApplicationCategory

type ApplicationCategory string

ApplicationCategory is https://schema.org/applicationCategory

Type of software application, e.g. 'Game, Multimedia'.

type ApplicationSubCategory

type ApplicationSubCategory string

ApplicationSubCategory is https://schema.org/applicationSubCategory

Subcategory of the application, e.g. 'Arcade Game'.

type ApplicationSuite

type ApplicationSuite string

ApplicationSuite is https://schema.org/applicationSuite

The name of the application suite to which the application belongs (e.g. Excel belongs to Office).

type ArchivedAt

type ArchivedAt string

ArchivedAt is https://schema.org/archivedAt

Indicates a page or other link involved in archival of a [[CreativeWork]]. In the case of [[MediaReview]], the items in a [[MediaReviewItem]] may often become inaccessible, but be archived by archival, journalistic, activist, or law enforcement organizations. In such cases, the referenced page may not directly publish the content.

type AreaServed

type AreaServed string

AreaServed is https://schema.org/areaServed

The geographic area where a service or offered item is provided.

type ArrivalGate

type ArrivalGate string

ArrivalGate is https://schema.org/arrivalGate

Identifier of the flight's arrival gate.

type ArrivalPlatform

type ArrivalPlatform string

ArrivalPlatform is https://schema.org/arrivalPlatform

The platform where the train arrives.

type ArrivalTerminal

type ArrivalTerminal string

ArrivalTerminal is https://schema.org/arrivalTerminal

Identifier of the flight's arrival terminal.

type ArtMedium

type ArtMedium string

ArtMedium is https://schema.org/artMedium

The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)

type Artform

type Artform string

Artform is https://schema.org/artform

e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.

type ArticleBody

type ArticleBody string

ArticleBody is https://schema.org/articleBody

The actual body of the article.

type ArticleSection

type ArticleSection string

ArticleSection is https://schema.org/articleSection

Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.

type ArtworkSurface

type ArtworkSurface string

ArtworkSurface is https://schema.org/artworkSurface

The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc.

type Aspect

type Aspect string

Aspect is https://schema.org/aspect

An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.

type Assembly

type Assembly string

Assembly is https://schema.org/assembly

Library file name e.g., mscorlib.dll, system.web.dll.

type AssemblyVersion

type AssemblyVersion string

AssemblyVersion is https://schema.org/assemblyVersion

Associated product/technology version. e.g., .NET Framework 4.5.

type Assesses

type Assesses string

Assesses is https://schema.org/assesses

The item being described is intended to assess the competency or learning outcome defined by the referenced term.

type AssociatedDisease

type AssociatedDisease string

AssociatedDisease is https://schema.org/associatedDisease

Disease associated to this BioChemEntity. Such disease can be a MedicalCondition or a URL. If you want to add an evidence supporting the association, please use PropertyValue.

type AssociatedPathophysiology

type AssociatedPathophysiology string

AssociatedPathophysiology is https://schema.org/associatedPathophysiology

If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.

type AudienceType

type AudienceType string

AudienceType is https://schema.org/audienceType

The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).

type AvailableLanguage

type AvailableLanguage string

AvailableLanguage is https://schema.org/availableLanguage

A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]

type AvailableOnDevice

type AvailableOnDevice string

AvailableOnDevice is https://schema.org/availableOnDevice

Device required to run the application. Used in cases where a specific make/model is required to run the application.

type Award

type Award string

Award is https://schema.org/award

An award won by or for this item.

type Awards

type Awards string

Awards is https://schema.org/awards

Awards won by or for this item.

type Backstory

type Backstory string

Backstory is https://schema.org/backstory

For an [[Article]], typically a [[NewsArticle]], the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc.

type BankAccountType

type BankAccountType string

BankAccountType is https://schema.org/bankAccountType

The type of a bank account.

type Bed

type Bed string

Bed is https://schema.org/bed

The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.

If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property.

type BeforeMedia

type BeforeMedia string

BeforeMedia is https://schema.org/beforeMedia

A media object representing the circumstances before performing this direction.

type BeneficiaryBank

type BeneficiaryBank string

BeneficiaryBank is https://schema.org/beneficiaryBank

A bank or bank’s branch, financial institution or international financial institution operating the beneficiary’s bank account or releasing funds for the beneficiary.

type Benefits

type Benefits string

Benefits is https://schema.org/benefits

Description of benefits associated with the job.

type BenefitsSummaryUrl

type BenefitsSummaryUrl string

BenefitsSummaryUrl is https://schema.org/benefitsSummaryUrl

The URL that goes directly to the summary of benefits and coverage for the specific standard plan or plan variation.

type BiomechnicalClass

type BiomechnicalClass string

BiomechnicalClass is https://schema.org/biomechnicalClass

The biomechanical properties of the bone.

type Bitrate

type Bitrate string

Bitrate is https://schema.org/bitrate

The bitrate of the media object.

type BoardingGroup

type BoardingGroup string

BoardingGroup is https://schema.org/boardingGroup

The airline-specific indicator of boarding order / preference.

type BodyLocation

type BodyLocation string

BodyLocation is https://schema.org/bodyLocation

Location in the body of the anatomical structure.

type BodyType

type BodyType string

BodyType is https://schema.org/bodyType

Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).

type BookEdition

type BookEdition string

BookEdition is https://schema.org/bookEdition

The edition of the book.

type Box

type Box string

Box is https://schema.org/box

A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.

type BranchCode

type BranchCode string

BranchCode is https://schema.org/branchCode

A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\n\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047" is a branchCode for a particular branch.

type Breadcrumb string

Breadcrumb is https://schema.org/breadcrumb

A set of links that can help a user understand and navigate a website hierarchy.

type BreastfeedingWarning

type BreastfeedingWarning string

BreastfeedingWarning is https://schema.org/breastfeedingWarning

Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.

type BroadcastChannelId

type BroadcastChannelId string

BroadcastChannelId is https://schema.org/broadcastChannelId

The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.

type BroadcastDisplayName

type BroadcastDisplayName string

BroadcastDisplayName is https://schema.org/broadcastDisplayName

The name displayed in the channel guide. For many US affiliates, it is the network name.

type BroadcastFrequency

type BroadcastFrequency string

BroadcastFrequency is https://schema.org/broadcastFrequency

The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. "87 FM".

type BroadcastServiceTier

type BroadcastServiceTier string

BroadcastServiceTier is https://schema.org/broadcastServiceTier

The type of service required to have access to the channel (e.g. Standard or Premium).

type BroadcastSignalModulation

type BroadcastSignalModulation string

BroadcastSignalModulation is https://schema.org/broadcastSignalModulation

The modulation (e.g. FM, AM, etc) used by a particular broadcast service.

type BroadcastSubChannel

type BroadcastSubChannel string

BroadcastSubChannel is https://schema.org/broadcastSubChannel

The subchannel used for the broadcast.

type BroadcastTimezone

type BroadcastTimezone string

BroadcastTimezone is https://schema.org/broadcastTimezone

The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601) for which the service bases its broadcasts

type BrowserRequirements

type BrowserRequirements string

BrowserRequirements is https://schema.org/browserRequirements

Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.

type BusName

type BusName string

BusName is https://schema.org/busName

The name of the bus (e.g. Bolt Express).

type BusNumber

type BusNumber string

BusNumber is https://schema.org/busNumber

The unique identifier for the bus.

type ByDay

type ByDay string

ByDay is https://schema.org/byDay

Defines the day(s) of the week on which a recurring [[Event]] takes place. May be specified using either [[DayOfWeek]], or alternatively [Text] conforming to iCal's syntax for byDay recurrence rules.

type CallSign

type CallSign string

CallSign is https://schema.org/callSign

A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles.

type Caption

type Caption string

Caption is https://schema.org/caption

The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the [[encodingFormat]].

type CarrierRequirements

type CarrierRequirements string

CarrierRequirements is https://schema.org/carrierRequirements

Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).

type CatalogNumber

type CatalogNumber string

CatalogNumber is https://schema.org/catalogNumber

The catalog number for the release.

type Category

type Category string

Category is https://schema.org/category

A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.

type CharacterName

type CharacterName string

CharacterName is https://schema.org/characterName

The name of a character played in some acting or performing role, i.e. in a PerformanceRole.

type ChemicalComposition

type ChemicalComposition string

ChemicalComposition is https://schema.org/chemicalComposition

The chemical composition describes the identity and relative ratio of the chemical elements that make up the substance.

type ChildTaxon

type ChildTaxon string

ChildTaxon is https://schema.org/childTaxon

Closest child taxa of the taxon in question.

type Circle

type Circle string

Circle is https://schema.org/circle

A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.

type Citation

type Citation string

Citation is https://schema.org/citation

A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.

type ClaimReviewed

type ClaimReviewed string

ClaimReviewed is https://schema.org/claimReviewed

A short summary of the specific claims reviewed in a ClaimReview.

type ClincalPharmacology

type ClincalPharmacology string

ClincalPharmacology is https://schema.org/clincalPharmacology

Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).

type ClinicalPharmacology

type ClinicalPharmacology string

ClinicalPharmacology is https://schema.org/clinicalPharmacology

Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).

type CodeRepository

type CodeRepository string

CodeRepository is https://schema.org/codeRepository

Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).

type CodeSampleType

type CodeSampleType string

CodeSampleType is https://schema.org/codeSampleType

What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.

type CodeValue

type CodeValue string

CodeValue is https://schema.org/codeValue

A short textual code that uniquely identifies the value.

type CodingSystem

type CodingSystem string

CodingSystem is https://schema.org/codingSystem

The coding system, e.g. 'ICD-10'.

type Colleague

type Colleague string

Colleague is https://schema.org/colleague

A colleague of the person.

type Color

type Color string

Color is https://schema.org/color

The color of the product.

type CommentText

type CommentText string

CommentText is https://schema.org/commentText

The text of the UserComment.

type CompetencyRequired

type CompetencyRequired string

CompetencyRequired is https://schema.org/competencyRequired

Knowledge, skill, ability or personal attribute that must be demonstrated by a person or other entity in order to do something such as earn an Educational Occupational Credential or understand a LearningResource.

type ConditionsOfAccess

type ConditionsOfAccess string

ConditionsOfAccess is https://schema.org/conditionsOfAccess

Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.\n\nFor example "Available by appointment from the Reading Room" or "Accessible only from logged-in accounts ".

type ConfirmationNumber

type ConfirmationNumber string

ConfirmationNumber is https://schema.org/confirmationNumber

A number that confirms the given order or payment has been received.

type ContactType

type ContactType string

ContactType is https://schema.org/contactType

A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.

type ContentRating

type ContentRating string

ContentRating is https://schema.org/contentRating

Official rating of a piece of content—for example,'MPAA PG-13'.

type ContentSize

type ContentSize string

ContentSize is https://schema.org/contentSize

File size in (mega/kilo) bytes.

type ContentType

type ContentType string

ContentType is https://schema.org/contentType

The supported content type(s) for an EntryPoint response.

type ContentUrl

type ContentUrl string

ContentUrl is https://schema.org/contentUrl

Actual bytes of the media object, for example the image file or video file.

type Contraindication

type Contraindication string

Contraindication is https://schema.org/contraindication

A contraindication for this therapy.

type CookingMethod

type CookingMethod string

CookingMethod is https://schema.org/cookingMethod

The method of cooking, such as Frying, Steaming, ...

type CopyrightNotice

type CopyrightNotice string

CopyrightNotice is https://schema.org/copyrightNotice

Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work.

type Correction

type Correction string

Correction is https://schema.org/correction

Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document.

type CorrectionsPolicy

type CorrectionsPolicy string

CorrectionsPolicy is https://schema.org/correctionsPolicy

For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors.

type CostCurrency

type CostCurrency string

CostCurrency is https://schema.org/costCurrency

The currency (in 3-letter of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217.

type CostOrigin

type CostOrigin string

CostOrigin is https://schema.org/costOrigin

Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.

type CostPerUnit

type CostPerUnit string

CostPerUnit is https://schema.org/costPerUnit

The cost per unit of the drug.

type CountriesNotSupported

type CountriesNotSupported string

CountriesNotSupported is https://schema.org/countriesNotSupported

Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.

type CountriesSupported

type CountriesSupported string

CountriesSupported is https://schema.org/countriesSupported

Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.

type CountryOfAssembly

type CountryOfAssembly string

CountryOfAssembly is https://schema.org/countryOfAssembly

The place where the product was assembled.

type CountryOfLastProcessing

type CountryOfLastProcessing string

CountryOfLastProcessing is https://schema.org/countryOfLastProcessing

The place where the item (typically [[Product]]) was last processed and tested before importation.

type CourseCode

type CourseCode string

CourseCode is https://schema.org/courseCode

The identifier for the [[Course]] used by the course [[provider]] (e.g. CS101 or 6.001).

type CourseMode

type CourseMode string

CourseMode is https://schema.org/courseMode

The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. "online", "onsite" or "blended"; "synchronous" or "asynchronous"; "full-time" or "part-time") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).

type CoursePrerequisites

type CoursePrerequisites string

CoursePrerequisites is https://schema.org/coursePrerequisites

Requirements for taking the Course. May be completion of another [[Course]] or a textual description like "permission of instructor". Requirements may be a pre-requisite competency, referenced using [[AlignmentObject]].

type CourseWorkload

type CourseWorkload string

CourseWorkload is https://schema.org/courseWorkload

The amount of work expected of students taking the course, often provided as a figure per week or per month, and may be broken down by type. For example, "2 hours of lectures, 1 hour of lab work and 3 hours of independent study per week".

type CreativeWorkStatus

type CreativeWorkStatus string

CreativeWorkStatus is https://schema.org/creativeWorkStatus

The status of a creative work in terms of its stage in a lifecycle. Example terms include Incomplete, Draft, Published, Obsolete. Some organizations define a set of terms for the stages of their publication lifecycle.

type CredentialCategory

type CredentialCategory string

CredentialCategory is https://schema.org/credentialCategory

The category or type of credential being described, for example "degree”, “certificate”, “badge”, or more specific term.

type CreditText

type CreditText string

CreditText is https://schema.org/creditText

Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work.

type CssSelector

type CssSelector string

CssSelector is https://schema.org/cssSelector

A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual "Web page element".

type CurrenciesAccepted

type CurrenciesAccepted string

CurrenciesAccepted is https://schema.org/currenciesAccepted

The currency accepted.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR".

type Currency

type Currency string

Currency is https://schema.org/currency

The currency in which the monetary amount is expressed.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR".

type CvdCollectionDate

type CvdCollectionDate string

CvdCollectionDate is https://schema.org/cvdCollectionDate

collectiondate - Date for which patient counts are reported.

type CvdFacilityCounty

type CvdFacilityCounty string

CvdFacilityCounty is https://schema.org/cvdFacilityCounty

Name of the County of the NHSN facility that this data record applies to. Use [[cvdFacilityId]] to identify the facility. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.

type CvdFacilityId

type CvdFacilityId string

CvdFacilityId is https://schema.org/cvdFacilityId

Identifier of the NHSN facility that this data record applies to. Use [[cvdFacilityCounty]] to indicate the county. To provide other details, [[healthcareReportingData]] can be used on a [[Hospital]] entry.

type DataFeedElement

type DataFeedElement string

DataFeedElement is https://schema.org/dataFeedElement

An item within in a data feed. Data feeds may have many elements.

type Dateline

type Dateline string

Dateline is https://schema.org/dateline

A [dateline](https://en.wikipedia.org/wiki/Dateline) is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.

Structured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]].

Dateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: "BEIRUT, Lebanon, June 2.", "Paris, France", "December 19, 2017 11:43AM Reporting from Washington", "Beijing/Moscow", "QUEZON CITY, Philippines".

type DefaultValue

type DefaultValue string

DefaultValue is https://schema.org/defaultValue

The default value of the input. For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.

type DepartureGate

type DepartureGate string

DepartureGate is https://schema.org/departureGate

Identifier of the flight's departure gate.

type DeparturePlatform

type DeparturePlatform string

DeparturePlatform is https://schema.org/departurePlatform

The platform from which the train departs.

type DepartureTerminal

type DepartureTerminal string

DepartureTerminal is https://schema.org/departureTerminal

Identifier of the flight's departure terminal.

type Dependencies

type Dependencies string

Dependencies is https://schema.org/dependencies

Prerequisites needed to fulfill steps in article.

type Description

type Description string

Description is https://schema.org/description

A description of the item.

type Device

type Device string

Device is https://schema.org/device

Device required to run the application. Used in cases where a specific make/model is required to run the application.

type DietFeatures

type DietFeatures string

DietFeatures is https://schema.org/dietFeatures

Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.

type DisambiguatingDescription

type DisambiguatingDescription string

DisambiguatingDescription is https://schema.org/disambiguatingDescription

A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.

type DiscountCode

type DiscountCode string

DiscountCode is https://schema.org/discountCode

Code used to redeem a discount.

type DiscountCurrency

type DiscountCurrency string

DiscountCurrency is https://schema.org/discountCurrency

The currency of the discount.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR".

type DiscussionUrl

type DiscussionUrl string

DiscussionUrl is https://schema.org/discussionUrl

A link to the page containing the comments of the CreativeWork.

type DiseasePreventionInfo

type DiseasePreventionInfo string

DiseasePreventionInfo is https://schema.org/diseasePreventionInfo

Information about disease prevention.

type DiseaseSpreadStatistics

type DiseaseSpreadStatistics string

DiseaseSpreadStatistics is https://schema.org/diseaseSpreadStatistics

Statistical information about the spread of a disease, either as [[WebContent]], or

described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is
provided, the page indicated might also contain more such markup.

type DiversityPolicy

type DiversityPolicy string

DiversityPolicy is https://schema.org/diversityPolicy

Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom’s diversity policy on both staffing and sources, typically providing staffing data.

type DiversityStaffingReport

type DiversityStaffingReport string

DiversityStaffingReport is https://schema.org/diversityStaffingReport

For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.

type Documentation

type Documentation string

Documentation is https://schema.org/documentation

Further documentation describing the Web API in more detail.

type DosageForm

type DosageForm string

DosageForm is https://schema.org/dosageForm

A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.

type DoseUnit

type DoseUnit string

DoseUnit is https://schema.org/doseUnit

The unit of the dose, e.g. 'mg'.

type DownloadUrl

type DownloadUrl string

DownloadUrl is https://schema.org/downloadUrl

If the file can be downloaded, URL to download the binary.

type DriveWheelConfiguration

type DriveWheelConfiguration string

DriveWheelConfiguration is https://schema.org/driveWheelConfiguration

The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain.

type DrugUnit

type DrugUnit string

DrugUnit is https://schema.org/drugUnit

The unit in which the drug is measured, e.g. '5 mg tablet'.

type Duns

type Duns string

Duns is https://schema.org/duns

The Dun & Bradstreet DUNS number for identifying an organization or business person.

type DuringMedia

type DuringMedia string

DuringMedia is https://schema.org/duringMedia

A media object representing the circumstances while performing this direction.

type EditEIDR

type EditEIDR string

EditEIDR is https://schema.org/editEIDR

An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing a specific edit / edition for a work of film or television.

For example, the motion picture known as "Ghostbusters" whose [[titleEIDR]] is "10.5240/7EC7-228A-510A-053E-CBB8-J", has several edits e.g. "10.5240/1F2A-E1C5-680A-14C6-E76B-I" and "10.5240/8A35-3BEE-6497-5D12-9E4F-3".

Since schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.

type EduQuestionType

type EduQuestionType string

EduQuestionType is https://schema.org/eduQuestionType

For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: "Multiple choice", "Open ended", "Flashcard".

type EducationRequirements

type EducationRequirements string

EducationRequirements is https://schema.org/educationRequirements

Educational background needed for the position or Occupation.

type EducationalCredentialAwarded

type EducationalCredentialAwarded string

EducationalCredentialAwarded is https://schema.org/educationalCredentialAwarded

A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.

type EducationalFramework

type EducationalFramework string

EducationalFramework is https://schema.org/educationalFramework

The framework to which the resource being described is aligned.

type EducationalLevel

type EducationalLevel string

EducationalLevel is https://schema.org/educationalLevel

The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators.

type EducationalProgramMode

type EducationalProgramMode string

EducationalProgramMode is https://schema.org/educationalProgramMode

Similar to courseMode, The medium or means of delivery of the program as a whole. The value may either be a text label (e.g. "online", "onsite" or "blended"; "synchronous" or "asynchronous"; "full-time" or "part-time") or a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous ).

type EducationalRole

type EducationalRole string

EducationalRole is https://schema.org/educationalRole

An educationalRole of an EducationalAudience.

type EducationalUse

type EducationalUse string

EducationalUse is https://schema.org/educationalUse

The purpose of a work in the context of education; for example, 'assignment', 'group work'.

type EligibilityToWorkRequirement

type EligibilityToWorkRequirement string

EligibilityToWorkRequirement is https://schema.org/eligibilityToWorkRequirement

The legal requirements such as citizenship, visa and other documentation required for an applicant to this job.

type EligibleRegion

type EligibleRegion string

EligibleRegion is https://schema.org/eligibleRegion

The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\n\nSee also [[ineligibleRegion]].

type Email

type Email string

Email is https://schema.org/email

Email address.

type EmbedUrl

type EmbedUrl string

EmbedUrl is https://schema.org/embedUrl

A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag.

type EmbeddedTextCaption

type EmbeddedTextCaption string

EmbeddedTextCaption is https://schema.org/embeddedTextCaption

Represents textual captioning from a [[MediaObject]], e.g. text of a 'meme'.

type EmployerOverview

type EmployerOverview string

EmployerOverview is https://schema.org/employerOverview

A description of the employer, career opportunities and work environment for this position.

type EmploymentType

type EmploymentType string

EmploymentType is https://schema.org/employmentType

Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).

type EncodingFormat

type EncodingFormat string

EncodingFormat is https://schema.org/encodingFormat

Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).

In cases where a [[CreativeWork]] has several media type representations, [encoding] can be used to indicate each [[MediaObject]] alongside particular [[encodingFormat]] information.

Unregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry.

type EncodingType

type EncodingType string

EncodingType is https://schema.org/encodingType

The supported encoding type(s) for an EntryPoint request.

type EngineType

type EngineType string

EngineType is https://schema.org/engineType

The type of engine or engines powering the vehicle.

type Epidemiology

type Epidemiology string

Epidemiology is https://schema.org/epidemiology

The characteristics of associated patients, such as age, gender, race etc.

type EpisodeNumber

type EpisodeNumber string

EpisodeNumber is https://schema.org/episodeNumber

Position of the episode within an ordered group of episodes.

type EstimatedCost

type EstimatedCost string

EstimatedCost is https://schema.org/estimatedCost

The estimated cost of the supply or supplies consumed when performing instructions.

type EstimatedFlightDuration

type EstimatedFlightDuration string

EstimatedFlightDuration is https://schema.org/estimatedFlightDuration

The estimated time the flight will take.

type EthicsPolicy

type EthicsPolicy string

EthicsPolicy is https://schema.org/ethicsPolicy

Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.

type EvidenceOrigin

type EvidenceOrigin string

EvidenceOrigin is https://schema.org/evidenceOrigin

Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.

type ExecutableLibraryName

type ExecutableLibraryName string

ExecutableLibraryName is https://schema.org/executableLibraryName

Library file name e.g., mscorlib.dll, system.web.dll.

type ExerciseType

type ExerciseType string

ExerciseType is https://schema.org/exerciseType

Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.

type ExifData

type ExifData string

ExifData is https://schema.org/exifData

exif data for this object.

type ExpectedPrognosis

type ExpectedPrognosis string

ExpectedPrognosis is https://schema.org/expectedPrognosis

The likely outcome in either the short term or long term of the medical condition.

type ExperienceRequirements

type ExperienceRequirements string

ExperienceRequirements is https://schema.org/experienceRequirements

Description of skills and experience needed for the position or Occupation.

type ExpertConsiderations

type ExpertConsiderations string

ExpertConsiderations is https://schema.org/expertConsiderations

Medical expert advice related to the plan.

type FamilyName

type FamilyName string

FamilyName is https://schema.org/familyName

Family name. In the U.S., the last name of a Person.

type FaxNumber

type FaxNumber string

FaxNumber is https://schema.org/faxNumber

The fax number.

type FeatureList

type FeatureList string

FeatureList is https://schema.org/featureList

Features or modules provided by this application (and possibly required by other applications).

type FeesAndCommissionsSpecification

type FeesAndCommissionsSpecification string

FeesAndCommissionsSpecification is https://schema.org/feesAndCommissionsSpecification

Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.

type FileFormat

type FileFormat string

FileFormat is https://schema.org/fileFormat

Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry.

type FileSize

type FileSize string

FileSize is https://schema.org/fileSize

Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.

type FinancialAidEligible

type FinancialAidEligible string

FinancialAidEligible is https://schema.org/financialAidEligible

A financial aid type or program which students may use to pay for tuition or fees associated with the program.

type FlightDistance

type FlightDistance string

FlightDistance is https://schema.org/flightDistance

The distance of the flight.

type FlightNumber

type FlightNumber string

FlightNumber is https://schema.org/flightNumber

The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.

type FloorLevel

type FloorLevel string

FloorLevel is https://schema.org/floorLevel

The floor level for an [[Accommodation]] in a multi-storey building. Since counting

systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.

type Followup

type Followup string

Followup is https://schema.org/followup

Typical or recommended followup care after the procedure is performed.

type FoodWarning

type FoodWarning string

FoodWarning is https://schema.org/foodWarning

Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.

type Frequency

type Frequency string

Frequency is https://schema.org/frequency

How often the dose is taken, e.g. 'daily'.

type FuelType

type FuelType string

FuelType is https://schema.org/fuelType

The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle.

type FunctionalClass

type FunctionalClass string

FunctionalClass is https://schema.org/functionalClass

The degree of mobility the joint allows.

type GameLocation

type GameLocation string

GameLocation is https://schema.org/gameLocation

Real or fictional location of the game (or part of game).

type GamePlatform

type GamePlatform string

GamePlatform is https://schema.org/gamePlatform

The electronic systems used to play <a href="http://en.wikipedia.org/wiki/Category:Video_game_platforms">video games</a>.

type Gender

type Gender string

Gender is https://schema.org/gender

Gender of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While http://schema.org/Male and http://schema.org/Female may be used, text strings are also acceptable for people who do not identify as a binary gender. The [[gender]] property can also be used in an extended sense to cover e.g. the gender of sports teams. As with the gender of individuals, we do not try to enumerate all possibilities. A mixed-gender [[SportsTeam]] can be indicated with a text value of "Mixed".

type Genre

type Genre string

Genre is https://schema.org/genre

Genre of the creative work, broadcast channel or group.

type GettingTestedInfo

type GettingTestedInfo string

GettingTestedInfo is https://schema.org/gettingTestedInfo

Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic.

type GivenName

type GivenName string

GivenName is https://schema.org/givenName

Given name. In the U.S., the first name of a Person.

type GlobalLocationNumber

type GlobalLocationNumber string

GlobalLocationNumber is https://schema.org/globalLocationNumber

The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.

type Gtin

type Gtin string

Gtin is https://schema.org/gtin

A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/gtin)). GTINs identify trade items, including products and services, using numeric identification codes. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties. The GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/) express GTINs as URLs. A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a "GS1 Digital Link" URL based on such a string. The numeric component should also have a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged.

type Gtin12

type Gtin12 string

Gtin12 is https://schema.org/gtin12

The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.

type Gtin13

type Gtin13 string

Gtin13 is https://schema.org/gtin13

The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.

type Gtin14

type Gtin14 string

Gtin14 is https://schema.org/gtin14

The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.

type Gtin8

type Gtin8 string

Gtin8 is https://schema.org/gtin8

The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.

type HasBioPolymerSequence

type HasBioPolymerSequence string

HasBioPolymerSequence is https://schema.org/hasBioPolymerSequence

A symbolic representation of a BioChemEnity. For example, a nucleotide sequence of a Gene or an amino acid sequence of a Protein.

type HasMap

type HasMap string

HasMap is https://schema.org/hasMap

A URL to a map of the place.

type HasMenu

type HasMenu string

HasMenu is https://schema.org/hasMenu

Either the actual menu as a structured representation, as text, or a URL of the menu.

type HasMolecularFunction

type HasMolecularFunction string

HasMolecularFunction is https://schema.org/hasMolecularFunction

Molecular function performed by this BioChemEntity; please use PropertyValue if you want to include any evidence.

type HasRepresentation

type HasRepresentation string

HasRepresentation is https://schema.org/hasRepresentation

A common representation such as a protein sequence or chemical structure for this entity. For images use schema.org/image.

type Headline

type Headline string

Headline is https://schema.org/headline

Headline of the article.

type HealthPlanCoinsuranceOption

type HealthPlanCoinsuranceOption string

HealthPlanCoinsuranceOption is https://schema.org/healthPlanCoinsuranceOption

Whether the coinsurance applies before or after deductible, etc. TODO: Is this a closed set?

type HealthPlanCopayOption

type HealthPlanCopayOption string

HealthPlanCopayOption is https://schema.org/healthPlanCopayOption

Whether the copay is before or after deductible, etc. TODO: Is this a closed set?

type HealthPlanDrugOption

type HealthPlanDrugOption string

HealthPlanDrugOption is https://schema.org/healthPlanDrugOption

TODO.

type HealthPlanDrugTier

type HealthPlanDrugTier string

HealthPlanDrugTier is https://schema.org/healthPlanDrugTier

The tier(s) of drugs offered by this formulary or insurance plan.

type HealthPlanId

type HealthPlanId string

HealthPlanId is https://schema.org/healthPlanId

The 14-character, HIOS-generated Plan ID number. (Plan IDs must be unique, even across different markets.)

type HealthPlanMarketingUrl

type HealthPlanMarketingUrl string

HealthPlanMarketingUrl is https://schema.org/healthPlanMarketingUrl

The URL that goes directly to the plan brochure for the specific standard plan or plan variation.

type HealthPlanNetworkId

type HealthPlanNetworkId string

HealthPlanNetworkId is https://schema.org/healthPlanNetworkId

Name or unique ID of network. (Networks are often reused across different insurance plans).

type HealthPlanNetworkTier

type HealthPlanNetworkTier string

HealthPlanNetworkTier is https://schema.org/healthPlanNetworkTier

The tier(s) for this network.

type HealthPlanPharmacyCategory

type HealthPlanPharmacyCategory string

HealthPlanPharmacyCategory is https://schema.org/healthPlanPharmacyCategory

The category or type of pharmacy associated with this cost sharing.

type HighPrice

type HighPrice string

HighPrice is https://schema.org/highPrice

The highest price of all offers available.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.

type HonorificPrefix

type HonorificPrefix string

HonorificPrefix is https://schema.org/honorificPrefix

An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.

type HonorificSuffix

type HonorificSuffix string

HonorificSuffix is https://schema.org/honorificSuffix

An honorific suffix following a Person's name such as M.D. /PhD/MSCSW.

type HowPerformed

type HowPerformed string

HowPerformed is https://schema.org/howPerformed

How the procedure is performed.

type HttpMethod

type HttpMethod string

HttpMethod is https://schema.org/httpMethod

An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.

type IataCode

type IataCode string

IataCode is https://schema.org/iataCode

IATA identifier for an airline or airport.

type IcaoCode

type IcaoCode string

IcaoCode is https://schema.org/icaoCode

ICAO identifier for an airport.

type Identifier

type Identifier string

Identifier is https://schema.org/identifier

The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.

type Image

type Image string

Image is https://schema.org/image

An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].

type InChI

type InChI string

InChI is https://schema.org/inChI

Non-proprietary identifier for molecular entity that can be used in printed and electronic data sources thus enabling easier linking of diverse data compilations.

type InChIKey

type InChIKey string

InChIKey is https://schema.org/inChIKey

InChIKey is a hashed version of the full InChI (using the SHA-256 algorithm).

type InCodeSet

type InCodeSet string

InCodeSet is https://schema.org/inCodeSet

A [[CategoryCodeSet]] that contains this category code.

type InDefinedTermSet

type InDefinedTermSet string

InDefinedTermSet is https://schema.org/inDefinedTermSet

A [[DefinedTermSet]] that contains this term.

type InLanguage

type InLanguage string

InLanguage is https://schema.org/inLanguage

The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]].

type InProductGroupWithID

type InProductGroupWithID string

InProductGroupWithID is https://schema.org/inProductGroupWithID

Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]].

type InSupportOf

type InSupportOf string

InSupportOf is https://schema.org/inSupportOf

Qualification, candidature, degree, application that Thesis supports.

type IncentiveCompensation

type IncentiveCompensation string

IncentiveCompensation is https://schema.org/incentiveCompensation

Description of bonus and commission compensation aspects of the job.

type Incentives

type Incentives string

Incentives is https://schema.org/incentives

Description of bonus and commission compensation aspects of the job.

type Industry

type Industry string

Industry is https://schema.org/industry

The industry associated with the job position.

type IneligibleRegion

type IneligibleRegion string

IneligibleRegion is https://schema.org/ineligibleRegion

The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.\n\nSee also [[eligibleRegion]].

type InfectiousAgent

type InfectiousAgent string

InfectiousAgent is https://schema.org/infectiousAgent

The actual infectious agent, such as a specific bacterium.

type Ingredients

type Ingredients string

Ingredients is https://schema.org/ingredients

A single ingredient used in the recipe, e.g. sugar, flour or garlic.

type InstallUrl

type InstallUrl string

InstallUrl is https://schema.org/installUrl

URL at which the app may be installed, if different from the URL of the item.

type Intensity

type Intensity string

Intensity is https://schema.org/intensity

Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.

type InteractivityType

type InteractivityType string

InteractivityType is https://schema.org/interactivityType

The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.

type IsBasedOn

type IsBasedOn string

IsBasedOn is https://schema.org/isBasedOn

A resource from which this work is derived or from which it is a modification or adaption.

type IsBasedOnUrl

type IsBasedOnUrl string

IsBasedOnUrl is https://schema.org/isBasedOnUrl

A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.

type IsInvolvedInBiologicalProcess

type IsInvolvedInBiologicalProcess string

IsInvolvedInBiologicalProcess is https://schema.org/isInvolvedInBiologicalProcess

Biological process this BioChemEntity is involved in; please use PropertyValue if you want to include any evidence.

type IsLocatedInSubcellularLocation

type IsLocatedInSubcellularLocation string

IsLocatedInSubcellularLocation is https://schema.org/isLocatedInSubcellularLocation

Subcellular location where this BioChemEntity is located; please use PropertyValue if you want to include any evidence.

type IsPartOf

type IsPartOf string

IsPartOf is https://schema.org/isPartOf

Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of.

type Isbn

type Isbn string

Isbn is https://schema.org/isbn

The ISBN of the book.

type IsicV4

type IsicV4 string

IsicV4 is https://schema.org/isicV4

The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.

type IsrcCode

type IsrcCode string

IsrcCode is https://schema.org/isrcCode

The International Standard Recording Code for the recording.

type Issn

type Issn string

Issn is https://schema.org/issn

The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.

type IssueNumber

type IssueNumber string

IssueNumber is https://schema.org/issueNumber

Identifies the issue of publication; for example, "iii" or "2".

type IswcCode

type IswcCode string

IswcCode is https://schema.org/iswcCode

The International Standard Musical Work Code for the composition.

type ItemListElement

type ItemListElement string

ItemListElement is https://schema.org/itemListElement

For itemListElement values, you can use simple strings (e.g. "Peter", "Paul", "Mary"), existing entities, or use ListItem.\n\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\n\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.

type ItemListOrder

type ItemListOrder string

ItemListOrder is https://schema.org/itemListOrder

Type of ordering (e.g. Ascending, Descending, Unordered).

type ItemLocation

type ItemLocation string

ItemLocation is https://schema.org/itemLocation

Current location of the item.

type IupacName

type IupacName string

IupacName is https://schema.org/iupacName

Systematic method of naming chemical compounds as recommended by the International Union of Pure and Applied Chemistry (IUPAC).

type JobBenefits

type JobBenefits string

JobBenefits is https://schema.org/jobBenefits

Description of benefits associated with the job.

type JobLocationType

type JobLocationType string

JobLocationType is https://schema.org/jobLocationType

A description of the job location (e.g TELECOMMUTE for telecommute jobs).

type JobTitle

type JobTitle string

JobTitle is https://schema.org/jobTitle

The job title of the person (for example, Financial Manager).

type Jurisdiction

type Jurisdiction string

Jurisdiction is https://schema.org/jurisdiction

Indicates a legal jurisdiction, e.g. of some legislation, or where some government service is based.

type Keywords

type Keywords string

Keywords is https://schema.org/keywords

Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.

type KnownVehicleDamages

type KnownVehicleDamages string

KnownVehicleDamages is https://schema.org/knownVehicleDamages

A textual description of known damages, both repaired and unrepaired.

type KnowsAbout

type KnowsAbout string

KnowsAbout is https://schema.org/knowsAbout

Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.

type KnowsLanguage

type KnowsLanguage string

KnowsLanguage is https://schema.org/knowsLanguage

Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).

type LabelDetails

type LabelDetails string

LabelDetails is https://schema.org/labelDetails

Link to the drug's label details.

type Latitude

type Latitude string

Latitude is https://schema.org/latitude

The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).

type LayoutImage

type LayoutImage string

LayoutImage is https://schema.org/layoutImage

A schematic image showing the floorplan layout.

type LearningResourceType

type LearningResourceType string

LearningResourceType is https://schema.org/learningResourceType

The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.

type LegalName

type LegalName string

LegalName is https://schema.org/legalName

The official name of the organization, e.g. the registered company name.

type LegalStatus

type LegalStatus string

LegalStatus is https://schema.org/legalStatus

The drug or supplement's legal status, including any controlled substance schedules that apply.

type LegislationIdentifier

type LegislationIdentifier string

LegislationIdentifier is https://schema.org/legislationIdentifier

An identifier for the legislation. This can be either a string-based identifier, like the CELEX at EU level or the NOR in France, or a web-based, URL/URI identifier, like an ELI (European Legislation Identifier) or an URN-Lex.

type LegislationJurisdiction

type LegislationJurisdiction string

LegislationJurisdiction is https://schema.org/legislationJurisdiction

The jurisdiction from which the legislation originates.

type LegislationType

type LegislationType string

LegislationType is https://schema.org/legislationType

The type of the legislation. Examples of values are "law", "act", "directive", "decree", "regulation", "statutory instrument", "loi organique", "règlement grand-ducal", etc., depending on the country.

type LeiCode

type LeiCode string

LeiCode is https://schema.org/leiCode

An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.

type License

type License string

License is https://schema.org/license

A license document that applies to this content, typically indicated by URL.

type Line

type Line string

Line is https://schema.org/line

A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.

type LinkRelationship

type LinkRelationship string

LinkRelationship is https://schema.org/linkRelationship

Indicates the relationship type of a Web link.

type LoanType

type LoanType string

LoanType is https://schema.org/loanType

The type of a loan or credit.

type Location

type Location string

Location is https://schema.org/location

The location of, for example, where an event is happening, where an organization is located, or where an action takes place.

type LodgingUnitDescription

type LodgingUnitDescription string

LodgingUnitDescription is https://schema.org/lodgingUnitDescription

A full description of the lodging unit.

type LodgingUnitType

type LodgingUnitType string

LodgingUnitType is https://schema.org/lodgingUnitType

Textual description of the unit type (including suite vs. room, size of bed, etc.).

type Logo string

Logo is https://schema.org/logo

An associated logo.

type LowPrice

type LowPrice string

LowPrice is https://schema.org/lowPrice

The lowest price of all offers available.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.

type MainEntityOfPage

type MainEntityOfPage string

MainEntityOfPage is https://schema.org/mainEntityOfPage

Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See [background notes](/docs/datamodel.html#mainEntityBackground) for details.

type Map

type Map string

Map is https://schema.org/map

A URL to a map of the place.

type Maps

type Maps string

Maps is https://schema.org/maps

A URL to a map of the place.

type Masthead

type Masthead string

Masthead is https://schema.org/masthead

For a [[NewsMediaOrganization]], a link to the masthead page or a page listing top editorial management.

type Material

type Material string

Material is https://schema.org/material

A material that something is made from, e.g. leather, wool, cotton, paper.

type MaterialExtent

type MaterialExtent string

MaterialExtent is https://schema.org/materialExtent

The quantity of the materials being described or an expression of the physical space they occupy.

type MathExpression

type MathExpression string

MathExpression is https://schema.org/mathExpression

A mathematical expression (e.g. 'x^2-3x=0') that may be solved for a specific variable, simplified, or transformed. This can take many formats, e.g. LaTeX, Ascii-Math, or math as you would write with a keyboard.

type MealService

type MealService string

MealService is https://schema.org/mealService

Description of the meals that will be provided or available for purchase.

type MeasurementTechnique

type MeasurementTechnique string

MeasurementTechnique is https://schema.org/measurementTechnique

A technique or technology used in a [[Dataset]] (or [[DataDownload]], [[DataCatalog]]), corresponding to the method used for measuring the corresponding variable(s) (described using [[variableMeasured]]). This is oriented towards scientific and scholarly dataset publication but may have broader applicability; it is not intended as a full representation of measurement, but rather as a high level summary for dataset discovery.

For example, if [[variableMeasured]] is: molecule concentration, [[measurementTechnique]] could be: "mass spectrometry" or "nmr spectroscopy" or "colorimetry" or "immunofluorescence".

If the [[variableMeasured]] is "depression rating", the [[measurementTechnique]] could be "Zung Scale" or "HAM-D" or "Beck Depression Inventory".

If there are several [[variableMeasured]] properties recorded for some given data object, use a [[PropertyValue]] for each [[variableMeasured]] and attach the corresponding [[measurementTechnique]].

type MechanismOfAction

type MechanismOfAction string

MechanismOfAction is https://schema.org/mechanismOfAction

The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.

type MeetsEmissionStandard

type MeetsEmissionStandard string

MeetsEmissionStandard is https://schema.org/meetsEmissionStandard

Indicates that the vehicle meets the respective emission standard.

type MembershipNumber

type MembershipNumber string

MembershipNumber is https://schema.org/membershipNumber

A unique identifier for the membership.

type MemoryRequirements

type MemoryRequirements string

MemoryRequirements is https://schema.org/memoryRequirements

Minimum memory requirements.

type Menu string

Menu is https://schema.org/menu

Either the actual menu as a structured representation, as text, or a URL of the menu.

type MerchantReturnLink string

MerchantReturnLink is https://schema.org/merchantReturnLink

Specifies a Web page or service by URL, for product returns.

type MissionCoveragePrioritiesPolicy

type MissionCoveragePrioritiesPolicy string

MissionCoveragePrioritiesPolicy is https://schema.org/missionCoveragePrioritiesPolicy

For a [[NewsMediaOrganization]], a statement on coverage priorities, including any public agenda or stance on issues.

type Model

type Model string

Model is https://schema.org/model

The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.

type MolecularFormula

type MolecularFormula string

MolecularFormula is https://schema.org/molecularFormula

The empirical formula is the simplest whole number ratio of all the atoms in a molecule.

type MolecularWeight

type MolecularWeight string

MolecularWeight is https://schema.org/molecularWeight

This is the molecular weight of the entity being described, not of the parent. Units should be included in the form '&lt;Number&gt; &lt;unit&gt;', for example '12 amu' or as '&lt;QuantitativeValue&gt;.

type MonoisotopicMolecularWeight

type MonoisotopicMolecularWeight string

MonoisotopicMolecularWeight is https://schema.org/monoisotopicMolecularWeight

The monoisotopic mass is the sum of the masses of the atoms in a molecule using the unbound, ground-state, rest mass of the principal (most abundant) isotope for each element instead of the isotopic average mass. Please include the units the form '&lt;Number&gt; &lt;unit&gt;', for example '770.230488 g/mol' or as '&lt;QuantitativeValue&gt;.

type Mpn

type Mpn string

Mpn is https://schema.org/mpn

The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.

type MuscleAction

type MuscleAction string

MuscleAction is https://schema.org/muscleAction

The movement the muscle generates.

type MusicCompositionForm

type MusicCompositionForm string

MusicCompositionForm is https://schema.org/musicCompositionForm

The type of composition (e.g. overture, sonata, symphony, etc.).

type MusicalKey

type MusicalKey string

MusicalKey is https://schema.org/musicalKey

The key, mode, or scale this composition uses.

type Naics

type Naics string

Naics is https://schema.org/naics

The North American Industry Classification System (NAICS) code for a particular organization or business person.

type Name

type Name string

Name is https://schema.org/name

The name of the item.

type NamedPosition

type NamedPosition string

NamedPosition is https://schema.org/namedPosition

A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.

type NaturalProgression

type NaturalProgression string

NaturalProgression is https://schema.org/naturalProgression

The expected progression of the condition if it is not treated and allowed to progress naturally.

type NegativeNotes

type NegativeNotes string

NegativeNotes is https://schema.org/negativeNotes

Indicates, in the context of a [[Review]] (e.g. framed as 'pro' vs 'con' considerations), negative considerations - either as unstructured text, or a list.

type NewsUpdatesAndGuidelines

type NewsUpdatesAndGuidelines string

NewsUpdatesAndGuidelines is https://schema.org/newsUpdatesAndGuidelines

Indicates a page with news updates and guidelines. This could often be (but is not required to be) the main page containing [[SpecialAnnouncement]] markup on a site.

type NoBylinesPolicy

type NoBylinesPolicy string

NoBylinesPolicy is https://schema.org/noBylinesPolicy

For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement explaining when authors of articles are not named in bylines.

type NonProprietaryName

type NonProprietaryName string

NonProprietaryName is https://schema.org/nonProprietaryName

The generic name of this drug or supplement.

type NormalRange

type NormalRange string

NormalRange is https://schema.org/normalRange

Range of acceptable values for a typical patient, when applicable.

type Nsn

type Nsn string

Nsn is https://schema.org/nsn

Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]].

type NumberOfAirbags

type NumberOfAirbags string

NumberOfAirbags is https://schema.org/numberOfAirbags

The number or type of airbags in the vehicle.

type OccupationalCategory

type OccupationalCategory string

OccupationalCategory is https://schema.org/occupationalCategory

A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.\n Note: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.

type OccupationalCredentialAwarded

type OccupationalCredentialAwarded string

OccupationalCredentialAwarded is https://schema.org/occupationalCredentialAwarded

A description of the qualification, award, certificate, diploma or other occupational credential awarded as a consequence of successful completion of this course or program.

type OpeningHours

type OpeningHours string

OpeningHours is https://schema.org/openingHours

The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\n\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \n* Here is an example: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.\n* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>.

type OperatingSystem

type OperatingSystem string

OperatingSystem is https://schema.org/operatingSystem

Operating systems supported (Windows 7, OSX 10.6, Android 1.6).

type Option

type Option string

Option is https://schema.org/option

A sub property of object. The options subject to this action.

type OrderItemNumber

type OrderItemNumber string

OrderItemNumber is https://schema.org/orderItemNumber

The identifier of the order item.

type OrderNumber

type OrderNumber string

OrderNumber is https://schema.org/orderNumber

The identifier of the transaction.

type OriginalMediaContextDescription

type OriginalMediaContextDescription string

OriginalMediaContextDescription is https://schema.org/originalMediaContextDescription

Describes, in a [[MediaReview]] when dealing with [[DecontextualizedContent]], background information that can contribute to better interpretation of the [[MediaObject]].

type OriginalMediaLink string

OriginalMediaLink is https://schema.org/originalMediaLink

Link to the page containing an original version of the content, or directly to an online copy of the original [[MediaObject]] content, e.g. video file.

type Overdosage

type Overdosage string

Overdosage is https://schema.org/overdosage

Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.

type OwnershipFundingInfo

type OwnershipFundingInfo string

OwnershipFundingInfo is https://schema.org/ownershipFundingInfo

For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.

type PageStart

type PageStart string

PageStart is https://schema.org/pageStart

The page on which the work starts; for example "135" or "xiii".

type Pagination

type Pagination string

Pagination is https://schema.org/pagination

Any description of pages that is not separated into pageStart and pageEnd; for example, "1-6, 9, 55" or "10-12, 46-49".

type ParentTaxon

type ParentTaxon string

ParentTaxon is https://schema.org/parentTaxon

Closest parent taxon of the taxon in question.

type PassengerPriorityStatus

type PassengerPriorityStatus string

PassengerPriorityStatus is https://schema.org/passengerPriorityStatus

The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).

type PassengerSequenceNumber

type PassengerSequenceNumber string

PassengerSequenceNumber is https://schema.org/passengerSequenceNumber

The passenger's sequence number as assigned by the airline.

type Pathophysiology

type Pathophysiology string

Pathophysiology is https://schema.org/pathophysiology

Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.

type Pattern

type Pattern string

Pattern is https://schema.org/pattern

A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.

type PaymentAccepted

type PaymentAccepted string

PaymentAccepted is https://schema.org/paymentAccepted

Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.

type PaymentMethodId

type PaymentMethodId string

PaymentMethodId is https://schema.org/paymentMethodId

An identifier for the method of payment used (e.g. the last 4 digits of the credit card).

type PaymentStatus

type PaymentStatus string

PaymentStatus is https://schema.org/paymentStatus

The status of payment; whether the invoice has been paid or not.

type PaymentUrl

type PaymentUrl string

PaymentUrl is https://schema.org/paymentUrl

The URL for sending a payment.

type Permissions

type Permissions string

Permissions is https://schema.org/permissions

Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).

type PermittedUsage

type PermittedUsage string

PermittedUsage is https://schema.org/permittedUsage

Indications regarding the permitted usage of the accommodation.

type PhoneticText

type PhoneticText string

PhoneticText is https://schema.org/phoneticText

Representation of a text [[textValue]] using the specified [[speechToTextMarkup]]. For example the city name of Houston in IPA: /ˈhjuːstən/.

type PhysicalRequirement

type PhysicalRequirement string

PhysicalRequirement is https://schema.org/physicalRequirement

A description of the types of physical activity associated with the job. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.

type PhysiologicalBenefits

type PhysiologicalBenefits string

PhysiologicalBenefits is https://schema.org/physiologicalBenefits

Specific physiologic benefits associated to the plan.

type PlayerType

type PlayerType string

PlayerType is https://schema.org/playerType

Player type required&#x2014;for example, Flash or Silverlight.

type Polygon

type Polygon string

Polygon is https://schema.org/polygon

A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.

type Position

type Position string

Position is https://schema.org/position

The position of an item in a series or sequence of items.

type PositiveNotes

type PositiveNotes string

PositiveNotes is https://schema.org/positiveNotes

Indicates, in the context of a [[Review]] (e.g. framed as 'pro' vs 'con' considerations), positive considerations - either as unstructured text, or a list.

type PossibleComplication

type PossibleComplication string

PossibleComplication is https://schema.org/possibleComplication

A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.

type PostOfficeBoxNumber

type PostOfficeBoxNumber string

PostOfficeBoxNumber is https://schema.org/postOfficeBoxNumber

The post office box number for PO box addresses.

type PostOp

type PostOp string

PostOp is https://schema.org/postOp

A description of the postoperative procedures, care, and/or followups for this device.

type PostalCode

type PostalCode string

PostalCode is https://schema.org/postalCode

The postal code. For example, 94043.

type PostalCodeBegin

type PostalCodeBegin string

PostalCodeBegin is https://schema.org/postalCodeBegin

First postal code in a range (included).

type PostalCodeEnd

type PostalCodeEnd string

PostalCodeEnd is https://schema.org/postalCodeEnd

Last postal code in the range (included). Needs to be after [[postalCodeBegin]].

type PostalCodePrefix

type PostalCodePrefix string

PostalCodePrefix is https://schema.org/postalCodePrefix

A defined range of postal codes indicated by a common textual prefix. Used for non-numeric systems such as UK.

type PreOp

type PreOp string

PreOp is https://schema.org/preOp

A description of the workup, testing, and other preparations required before implanting this device.

type PregnancyWarning

type PregnancyWarning string

PregnancyWarning is https://schema.org/pregnancyWarning

Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.

type Preparation

type Preparation string

Preparation is https://schema.org/preparation

Typical preparation that a patient must undergo before having the procedure performed.

type PrescribingInfo

type PrescribingInfo string

PrescribingInfo is https://schema.org/prescribingInfo

Link to prescribing information for the drug.

type PrescriptionStatus

type PrescriptionStatus string

PrescriptionStatus is https://schema.org/prescriptionStatus

Indicates the status of drug prescription eg. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc.

type Price

type Price string

Price is https://schema.org/price

The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\n\nUsage guidelines:\n\n* Use the [[priceCurrency]] property (with standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR") instead of including [ambiguous symbols](http://en.wikipedia.org/wiki/Dollar_sign#Currencies_that_use_the_dollar_or_peso_sign) such as '$' in the value.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n* Note that both [RDFa](http://www.w3.org/TR/xhtml-rdfa-primer/#using-the-content-attribute) and Microdata syntax allow the use of a "content=" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.

type PriceCurrency

type PriceCurrency string

PriceCurrency is https://schema.org/priceCurrency

The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\n\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. "BTC"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. "Ithaca HOUR".

type PriceRange

type PriceRange string

PriceRange is https://schema.org/priceRange

The price range of the business, for example ```$$$```.

type PriceType

type PriceType string

PriceType is https://schema.org/priceType

Defines the type of a price specified for an offered product, for example a list price, a (temporary) sale price or a manufacturer suggested retail price. If multiple prices are specified for an offer the [[priceType]] property can be used to identify the type of each such specified price. The value of priceType can be specified as a value from enumeration PriceTypeEnumeration or as a free form text string for price types that are not already predefined in PriceTypeEnumeration.

type PrintColumn

type PrintColumn string

PrintColumn is https://schema.org/printColumn

The number of the column in which the NewsArticle appears in the print edition.

type PrintEdition

type PrintEdition string

PrintEdition is https://schema.org/printEdition

The edition of the print product in which the NewsArticle appears.

type PrintPage

type PrintPage string

PrintPage is https://schema.org/printPage

If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).

type PrintSection

type PrintSection string

PrintSection is https://schema.org/printSection

If this NewsArticle appears in print, this field indicates the print section in which the article appeared.

type Procedure

type Procedure string

Procedure is https://schema.org/procedure

A description of the procedure involved in setting up, using, and/or installing the device.

type ProcessorRequirements

type ProcessorRequirements string

ProcessorRequirements is https://schema.org/processorRequirements

Processor architecture required to run the application (e.g. IA64).

type ProductGroupID

type ProductGroupID string

ProductGroupID is https://schema.org/productGroupID

Indicates a textual identifier for a ProductGroup.

type ProductID

type ProductID string

ProductID is https://schema.org/productID

The product identifier, such as ISBN. For example: ``` meta itemprop="productID" content="isbn:123-456-789" ```.

type ProductReturnLink string

ProductReturnLink is https://schema.org/productReturnLink

Indicates a Web page or service by URL, for product return.

type ProductSupported

type ProductSupported string

ProductSupported is https://schema.org/productSupported

The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. "iPhone") or a general category of products or services (e.g. "smartphones").

type ProficiencyLevel

type ProficiencyLevel string

ProficiencyLevel is https://schema.org/proficiencyLevel

Proficiency needed for this content; expected values: 'Beginner', 'Expert'.

type ProgramName

type ProgramName string

ProgramName is https://schema.org/programName

The program providing the membership.

type ProgramPrerequisites

type ProgramPrerequisites string

ProgramPrerequisites is https://schema.org/programPrerequisites

Prerequisites for enrolling in the program.

type ProgramType

type ProgramType string

ProgramType is https://schema.org/programType

The type of educational or occupational program. For example, classroom, internship, alternance, etc..

type ProgrammingLanguage

type ProgrammingLanguage string

ProgrammingLanguage is https://schema.org/programmingLanguage

The computer programming language.

type ProgrammingModel

type ProgrammingModel string

ProgrammingModel is https://schema.org/programmingModel

Indicates whether API is managed or unmanaged.

type PropertyID

type PropertyID string

PropertyID is https://schema.org/propertyID

A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be (1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3) a URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry). Standards bodies should promote a standard prefix for the identifiers of properties from their standards.

type ProprietaryName

type ProprietaryName string

ProprietaryName is https://schema.org/proprietaryName

Proprietary name given to the diet plan, typically by its originator or creator.

type ProviderMobility

type ProviderMobility string

ProviderMobility is https://schema.org/providerMobility

Indicates the mobility of a provided service (e.g. 'static', 'dynamic').

type PublicTransportClosuresInfo

type PublicTransportClosuresInfo string

PublicTransportClosuresInfo is https://schema.org/publicTransportClosuresInfo

Information about public transport closures.

type PublicationType

type PublicationType string

PublicationType is https://schema.org/publicationType

The type of the medical article, taken from the US NLM MeSH publication type catalog. See also [MeSH documentation](http://www.nlm.nih.gov/mesh/pubtypes.html).

type PublishingPrinciples

type PublishingPrinciples string

PublishingPrinciples is https://schema.org/publishingPrinciples

The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].

While such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.

type Qualifications

type Qualifications string

Qualifications is https://schema.org/qualifications

Specific qualifications required for this role or Occupation.

type QuarantineGuidelines

type QuarantineGuidelines string

QuarantineGuidelines is https://schema.org/quarantineGuidelines

Guidelines about quarantine rules, e.g. in the context of a pandemic.

type Query

type Query string

Query is https://schema.org/query

A sub property of instrument. The query used on this action.

type RatingExplanation

type RatingExplanation string

RatingExplanation is https://schema.org/ratingExplanation

A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with "fact check" markup using [[ClaimReview]].

type RecipeCategory

type RecipeCategory string

RecipeCategory is https://schema.org/recipeCategory

The category of the recipe—for example, appetizer, entree, etc.

type RecipeCuisine

type RecipeCuisine string

RecipeCuisine is https://schema.org/recipeCuisine

The cuisine of the recipe (for example, French or Ethiopian).

type RecipeIngredient

type RecipeIngredient string

RecipeIngredient is https://schema.org/recipeIngredient

A single ingredient used in the recipe, e.g. sugar, flour or garlic.

type RecipeInstructions

type RecipeInstructions string

RecipeInstructions is https://schema.org/recipeInstructions

A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items.

type RecipeYield

type RecipeYield string

RecipeYield is https://schema.org/recipeYield

The quantity produced by the recipe (for example, number of people served, number of servings, etc).

type RecommendationStrength

type RecommendationStrength string

RecommendationStrength is https://schema.org/recommendationStrength

Strength of the guideline's recommendation (e.g. 'class I').

type RelatedLink string

RelatedLink is https://schema.org/relatedLink

A link related to this web page, for example to other related web pages.

type ReleaseNotes

type ReleaseNotes string

ReleaseNotes is https://schema.org/releaseNotes

Description of what changed in this version.

type RepeatFrequency

type RepeatFrequency string

RepeatFrequency is https://schema.org/repeatFrequency

Defines the frequency at which [[Event]]s will occur according to a schedule [[Schedule]]. The intervals between

events should be defined as a [[Duration]] of time.

type ReplyToUrl

type ReplyToUrl string

ReplyToUrl is https://schema.org/replyToUrl

The URL at which a reply may be posted to the specified UserComment.

type ReportNumber

type ReportNumber string

ReportNumber is https://schema.org/reportNumber

The number or other unique designator assigned to a Report by the publishing organization.

type RequiredCollateral

type RequiredCollateral string

RequiredCollateral is https://schema.org/requiredCollateral

Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)

type RequiredGender

type RequiredGender string

RequiredGender is https://schema.org/requiredGender

Audiences defined by a person's gender.

type Requirements

type Requirements string

Requirements is https://schema.org/requirements

Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).

type ReservationId

type ReservationId string

ReservationId is https://schema.org/reservationId

A unique identifier for the reservation.

type Responsibilities

type Responsibilities string

Responsibilities is https://schema.org/responsibilities

Responsibilities associated with this role or Occupation.

type RestPeriods

type RestPeriods string

RestPeriods is https://schema.org/restPeriods

How often one should break from the activity.

type ReturnPolicyCountry

type ReturnPolicyCountry string

ReturnPolicyCountry is https://schema.org/returnPolicyCountry

The country where the product has to be sent to for returns, for example "Ireland" using the [[name]] property of [[Country]]. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). Note that this can be different from the country where the product was originally shipped from or sent too.

type ReviewAspect

type ReviewAspect string

ReviewAspect is https://schema.org/reviewAspect

This Review or Rating is relevant to this part or facet of the itemReviewed.

type ReviewBody

type ReviewBody string

ReviewBody is https://schema.org/reviewBody

The actual body of the review.

type Risks

type Risks string

Risks is https://schema.org/risks

Specific physiologic risks associated to the diet plan.

type RoleName

type RoleName string

RoleName is https://schema.org/roleName

A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.

type Runtime

type Runtime string

Runtime is https://schema.org/runtime

Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).

type RuntimePlatform

type RuntimePlatform string

RuntimePlatform is https://schema.org/runtimePlatform

Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).

type Rxcui

type Rxcui string

Rxcui is https://schema.org/rxcui

The RxCUI drug identifier from RXNORM.

type SafetyConsideration

type SafetyConsideration string

SafetyConsideration is https://schema.org/safetyConsideration

Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.

type SalaryCurrency

type SalaryCurrency string

SalaryCurrency is https://schema.org/salaryCurrency

The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) ) used for the main salary information in this job posting or for this employee.

type SameAs

type SameAs string

SameAs is https://schema.org/sameAs

URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.

type SampleType

type SampleType string

SampleType is https://schema.org/sampleType

What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.

type ScheduleTimezone

type ScheduleTimezone string

ScheduleTimezone is https://schema.org/scheduleTimezone

Indicates the timezone for which the time(s) indicated in the [[Schedule]] are given. The value provided should be among those listed in the IANA Time Zone Database.

type SchemaVersion

type SchemaVersion string

SchemaVersion is https://schema.org/schemaVersion

Indicates (by URL or string) a particular version of a schema used in some CreativeWork. This property was created primarily to

indicate the use of a specific schema.org release, e.g. ```10.0``` as a simple string, or more explicitly via URL, ```http://schema.org/docs/releases.html#v10.0```. There may be situations in which other schemas might usefully be referenced this way, e.g. ```http://dublincore.org/specifications/dublin-core/dces/1999-07-02/``` but this has not been carefully explored in the community.

type SchoolClosuresInfo

type SchoolClosuresInfo string

SchoolClosuresInfo is https://schema.org/schoolClosuresInfo

Information about school closures.

type Screenshot

type Screenshot string

Screenshot is https://schema.org/screenshot

A link to a screenshot image of the app.

type SdLicense

type SdLicense string

SdLicense is https://schema.org/sdLicense

A license document that applies to this structured data, typically indicated by URL.

type Season

type Season string

Season is https://schema.org/season

A season in a media series.

type SeasonNumber

type SeasonNumber string

SeasonNumber is https://schema.org/seasonNumber

Position of the season within an ordered group of seasons.

type SeatNumber

type SeatNumber string

SeatNumber is https://schema.org/seatNumber

The location of the reserved seat (e.g., 27).

type SeatRow

type SeatRow string

SeatRow is https://schema.org/seatRow

The row location of the reserved seat (e.g., B).

type SeatSection

type SeatSection string

SeatSection is https://schema.org/seatSection

The section location of the reserved seat (e.g. Orchestra).

type SeatingType

type SeatingType string

SeatingType is https://schema.org/seatingType

The type/class of the seat.

type SecurityClearanceRequirement

type SecurityClearanceRequirement string

SecurityClearanceRequirement is https://schema.org/securityClearanceRequirement

A description of any security clearance requirements of the job.

type SecurityScreening

type SecurityScreening string

SecurityScreening is https://schema.org/securityScreening

The type of security screening the passenger is subject to.

type SensoryRequirement

type SensoryRequirement string

SensoryRequirement is https://schema.org/sensoryRequirement

A description of any sensory requirements and levels necessary to function on the job, including hearing and vision. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.

type SerialNumber

type SerialNumber string

SerialNumber is https://schema.org/serialNumber

The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.

type ServesCuisine

type ServesCuisine string

ServesCuisine is https://schema.org/servesCuisine

The cuisine of the restaurant.

type ServiceType

type ServiceType string

ServiceType is https://schema.org/serviceType

The type of service being offered, e.g. veterans' benefits, emergency relief, etc.

type ServiceUrl

type ServiceUrl string

ServiceUrl is https://schema.org/serviceUrl

The website to access the service.

type ServingSize

type ServingSize string

ServingSize is https://schema.org/servingSize

The serving size, in terms of the number of volume or mass.

type Sha256

type Sha256 string

Sha256 is https://schema.org/sha256

The [SHA-2](https://en.wikipedia.org/wiki/SHA-2) SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'

type ShippingLabel

type ShippingLabel string

ShippingLabel is https://schema.org/shippingLabel

Label to match an [[OfferShippingDetails]] with a [[ShippingRateSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).

type ShippingSettingsLink string

ShippingSettingsLink is https://schema.org/shippingSettingsLink

Link to a page containing [[ShippingRateSettings]] and [[DeliveryTimeSettings]] details.

type Significance

type Significance string

Significance is https://schema.org/significance

The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.

type SignificantLink string

SignificantLink is https://schema.org/significantLink

One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.

type SignificantLinks string

SignificantLinks is https://schema.org/significantLinks

The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.

type Size

type Size string

Size is https://schema.org/size

A standardized size of a product or creative work, specified either through a simple textual string (for example 'XL', '32Wx34L'), a QuantitativeValue with a unitCode, or a comprehensive and structured [[SizeSpecification]]; in other cases, the [[width]], [[height]], [[depth]] and [[weight]] properties may be more applicable.

type SizeGroup

type SizeGroup string

SizeGroup is https://schema.org/sizeGroup

The size group (also known as "size type") for a product's size. Size groups are common in the fashion industry to define size segments and suggested audiences for wearable products. Multiple values can be combined, for example "men's big and tall", "petite maternity" or "regular"

type SizeSystem

type SizeSystem string

SizeSystem is https://schema.org/sizeSystem

The size system used to identify a product's size. Typically either a standard (for example, "GS1" or "ISO-EN13402"), country code (for example "US" or "JP"), or a measuring system (for example "Metric" or "Imperial").

type Skills

type Skills string

Skills is https://schema.org/skills

A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.

type Sku

type Sku string

Sku is https://schema.org/sku

The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.

type Slogan

type Slogan string

Slogan is https://schema.org/slogan

A slogan or motto associated with the item.

type Smiles

type Smiles string

Smiles is https://schema.org/smiles

A specification in form of a line notation for describing the structure of chemical species using short ASCII strings. Double bond stereochemistry \ indicators may need to be escaped in the string in formats where the backslash is an escape character.

type SoftwareRequirements

type SoftwareRequirements string

SoftwareRequirements is https://schema.org/softwareRequirements

Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).

type SoftwareVersion

type SoftwareVersion string

SoftwareVersion is https://schema.org/softwareVersion

Version of the software instance.

type Speakable

type Speakable string

Speakable is https://schema.org/speakable

Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.

The *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:

1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.

2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the [[cssSelector]] property.

3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.

For more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this we define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property.

type SpecialCommitments

type SpecialCommitments string

SpecialCommitments is https://schema.org/specialCommitments

Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.

type SpeechToTextMarkup

type SpeechToTextMarkup string

SpeechToTextMarkup is https://schema.org/speechToTextMarkup

Form of markup used. eg. [SSML](https://www.w3.org/TR/speech-synthesis11) or [IPA](https://www.wikidata.org/wiki/Property:P898).

type Sport

type Sport string

Sport is https://schema.org/sport

A type of sport (e.g. Baseball).

type Status

type Status string

Status is https://schema.org/status

The status of the study (enumerated).

type Step

type Step string

Step is https://schema.org/step

A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.

type Steps

type Steps string

Steps is https://schema.org/steps

A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).

type StorageRequirements

type StorageRequirements string

StorageRequirements is https://schema.org/storageRequirements

Storage requirements (free space required).

type StreetAddress

type StreetAddress string

StreetAddress is https://schema.org/streetAddress

The street address. For example, 1600 Amphitheatre Pkwy.

type StrengthUnit

type StrengthUnit string

StrengthUnit is https://schema.org/strengthUnit

The units of an active ingredient's strength, e.g. mg.

type StructuralClass

type StructuralClass string

StructuralClass is https://schema.org/structuralClass

The name given to how bone physically connects to each other.

type SubStageSuffix

type SubStageSuffix string

SubStageSuffix is https://schema.org/subStageSuffix

The substage, e.g. 'a' for Stage IIIa.

type SubtitleLanguage

type SubtitleLanguage string

SubtitleLanguage is https://schema.org/subtitleLanguage

Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).

type SuggestedGender

type SuggestedGender string

SuggestedGender is https://schema.org/suggestedGender

The suggested gender of the intended person or audience, for example "male", "female", or "unisex".

type Supply

type Supply string

Supply is https://schema.org/supply

A sub-property of instrument. A supply consumed when performing instructions or a direction.

type Surface

type Surface string

Surface is https://schema.org/surface

A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.

type TargetDescription

type TargetDescription string

TargetDescription is https://schema.org/targetDescription

The description of a node in an established educational framework.

type TargetName

type TargetName string

TargetName is https://schema.org/targetName

The name of a node in an established educational framework.

type TargetPlatform

type TargetPlatform string

TargetPlatform is https://schema.org/targetPlatform

Type of app development: phone, Metro style, desktop, XBox, etc.

type TargetPopulation

type TargetPopulation string

TargetPopulation is https://schema.org/targetPopulation

Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.

type TargetUrl

type TargetUrl string

TargetUrl is https://schema.org/targetUrl

The URL of a node in an established educational framework.

type TaxID

type TaxID string

TaxID is https://schema.org/taxID

The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.

type TaxonRank

type TaxonRank string

TaxonRank is https://schema.org/taxonRank

The taxonomic rank of this taxon given preferably as a URI from a controlled vocabulary – (typically the ranks from TDWG TaxonRank ontology or equivalent Wikidata URIs).

type TaxonomicRange

type TaxonomicRange string

TaxonomicRange is https://schema.org/taxonomicRange

The taxonomic grouping of the organism that expresses, encodes, or in someway related to the BioChemEntity.

type Teaches

type Teaches string

Teaches is https://schema.org/teaches

The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term.

type Telephone

type Telephone string

Telephone is https://schema.org/telephone

The telephone number.

type TemporalCoverage

type TemporalCoverage string

TemporalCoverage is https://schema.org/temporalCoverage

The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in [ISO 8601 time interval format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In

the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written "2011/2012"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL.
Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via "1939/1945".

Open-ended date ranges can be written with ".." in place of the end date. For example, "2015-11/.." indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated.

type TermCode

type TermCode string

TermCode is https://schema.org/termCode

A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]

type TermsOfService

type TermsOfService string

TermsOfService is https://schema.org/termsOfService

Human-readable terms of service documentation.

type Text

type Text string

Text is https://schema.org/text

The textual content of this CreativeWork.

type TextValue

type TextValue string

TextValue is https://schema.org/textValue

Text value being annotated.

type ThumbnailUrl

type ThumbnailUrl string

ThumbnailUrl is https://schema.org/thumbnailUrl

A thumbnail image relevant to the Thing.

type TickerSymbol

type TickerSymbol string

TickerSymbol is https://schema.org/tickerSymbol

The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022.

type TicketNumber

type TicketNumber string

TicketNumber is https://schema.org/ticketNumber

The unique identifier for the ticket.

type TicketToken

type TicketToken string

TicketToken is https://schema.org/ticketToken

Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.

type TimeOfDay

type TimeOfDay string

TimeOfDay is https://schema.org/timeOfDay

The time of day the program normally runs. For example, "evenings".

type TissueSample

type TissueSample string

TissueSample is https://schema.org/tissueSample

The type of tissue sample required for the test.

type Title

type Title string

Title is https://schema.org/title

The title of the job.

type TitleEIDR

type TitleEIDR string

TitleEIDR is https://schema.org/titleEIDR

An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.

For example, the motion picture known as "Ghostbusters" has a titleEIDR of "10.5240/7EC7-228A-510A-053E-CBB8-J". This title (or work) may have several variants, which EIDR calls "edits". See [[editEIDR]].

Since schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.

type Tool

type Tool string

Tool is https://schema.org/tool

A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.

type TotalPrice

type TotalPrice string

TotalPrice is https://schema.org/totalPrice

The total price for the reservation or ticket, including applicable taxes, shipping, etc.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.

type TourBookingPage

type TourBookingPage string

TourBookingPage is https://schema.org/tourBookingPage

A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.

type TouristType

type TouristType string

TouristType is https://schema.org/touristType

Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc.

type TrackingNumber

type TrackingNumber string

TrackingNumber is https://schema.org/trackingNumber

Shipper tracking number.

type TrackingUrl

type TrackingUrl string

TrackingUrl is https://schema.org/trackingUrl

Tracking url for the parcel delivery.

type TrainName

type TrainName string

TrainName is https://schema.org/trainName

The name of the train (e.g. The Orient Express).

type TrainNumber

type TrainNumber string

TrainNumber is https://schema.org/trainNumber

The unique identifier for the train.

type Transcript

type Transcript string

Transcript is https://schema.org/transcript

If this MediaObject is an AudioObject or VideoObject, the transcript of that object.

type TransitTimeLabel

type TransitTimeLabel string

TransitTimeLabel is https://schema.org/transitTimeLabel

Label to match an [[OfferShippingDetails]] with a [[DeliveryTimeSettings]] (within the context of a [[shippingSettingsLink]] cross-reference).

type TransmissionMethod

type TransmissionMethod string

TransmissionMethod is https://schema.org/transmissionMethod

How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.

type TravelBans

type TravelBans string

TravelBans is https://schema.org/travelBans

Information about travel bans, e.g. in the context of a pandemic.

type TypeOfBed

type TypeOfBed string

TypeOfBed is https://schema.org/typeOfBed

The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity.

type TypicalAgeRange

type TypicalAgeRange string

TypicalAgeRange is https://schema.org/typicalAgeRange

The typical expected age range, e.g. '7-9', '11-'.

type UnitCode

type UnitCode string

UnitCode is https://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.

type UnitText

type UnitText string

UnitText is https://schema.org/unitText

A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for <a href='unitCode'>unitCode</a>.

type UnnamedSourcesPolicy

type UnnamedSourcesPolicy string

UnnamedSourcesPolicy is https://schema.org/unnamedSourcesPolicy

For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.

type Url

type Url string

Url is https://schema.org/url

URL of the item.

type UrlTemplate

type UrlTemplate string

UrlTemplate is https://schema.org/urlTemplate

An url template (RFC6570) that will be used to construct the target of the execution of the action.

type UsageInfo

type UsageInfo string

UsageInfo is https://schema.org/usageInfo

The schema.org [[usageInfo]] property indicates further information about a [[CreativeWork]]. This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.

This property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.

type UsesHealthPlanIdStandard

type UsesHealthPlanIdStandard string

UsesHealthPlanIdStandard is https://schema.org/usesHealthPlanIdStandard

The standard for interpreting thePlan ID. The preferred is "HIOS". See the Centers for Medicare & Medicaid Services for more details.

type Utterances

type Utterances string

Utterances is https://schema.org/utterances

Text of an utterances (spoken words, lyrics etc.) that occurs at a certain section of a media object, represented as a [[HyperTocEntry]].

type Value

type Value string

Value is https://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'.\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.

type ValueName

type ValueName string

ValueName is https://schema.org/valueName

Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.

type ValuePattern

type ValuePattern string

ValuePattern is https://schema.org/valuePattern

Specifies a regular expression for testing literal values according to the HTML spec.

type ValueReference

type ValueReference string

ValueReference is https://schema.org/valueReference

A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.

type VariableMeasured

type VariableMeasured string

VariableMeasured is https://schema.org/variableMeasured

The variableMeasured property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.

type VariablesMeasured

type VariablesMeasured string

VariablesMeasured is https://schema.org/variablesMeasured

Originally named [[variablesMeasured]], The [[variableMeasured]] property can indicate (repeated as necessary) the variables that are measured in some dataset, either described as text or as pairs of identifier and description using PropertyValue.

type VariantCover

type VariantCover string

VariantCover is https://schema.org/variantCover

A description of the variant cover

for the issue, if the issue is a variant printing. For example, "Bryan Hitch
Variant Cover" or "2nd Printing Variant".

type VariesBy

type VariesBy string

VariesBy is https://schema.org/variesBy

Indicates the property or properties by which the variants in a [[ProductGroup]] vary, e.g. their size, color etc. Schema.org properties can be referenced by their short name e.g. "color"; terms defined elsewhere can be referenced with their URIs.

type VatID

type VatID string

VatID is https://schema.org/vatID

The Value-added Tax ID of the organization or person.

type VehicleConfiguration

type VehicleConfiguration string

VehicleConfiguration is https://schema.org/vehicleConfiguration

A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.

type VehicleIdentificationNumber

type VehicleIdentificationNumber string

VehicleIdentificationNumber is https://schema.org/vehicleIdentificationNumber

The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.

type VehicleInteriorColor

type VehicleInteriorColor string

VehicleInteriorColor is https://schema.org/vehicleInteriorColor

The color or color combination of the interior of the vehicle.

type VehicleInteriorType

type VehicleInteriorType string

VehicleInteriorType is https://schema.org/vehicleInteriorType

The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.

type VehicleSpecialUsage

type VehicleSpecialUsage string

VehicleSpecialUsage is https://schema.org/vehicleSpecialUsage

Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale.

type VehicleTransmission

type VehicleTransmission string

VehicleTransmission is https://schema.org/vehicleTransmission

The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) ("gearbox" for cars).

type VerificationFactCheckingPolicy

type VerificationFactCheckingPolicy string

VerificationFactCheckingPolicy is https://schema.org/verificationFactCheckingPolicy

Disclosure about verification and fact-checking processes for a [[NewsMediaOrganization]] or other fact-checking [[Organization]].

type Version

type Version string

Version is https://schema.org/version

The version of the CreativeWork embodied by a specified resource.

type VideoFormat

type VideoFormat string

VideoFormat is https://schema.org/videoFormat

The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).

type VideoFrameSize

type VideoFrameSize string

VideoFrameSize is https://schema.org/videoFrameSize

The frame size of the video.

type VideoQuality

type VideoQuality string

VideoQuality is https://schema.org/videoQuality

The quality of the video.

type VolumeNumber

type VolumeNumber string

VolumeNumber is https://schema.org/volumeNumber

Identifies the volume of publication or multi-part work; for example, "iii" or "2".

type Warning

type Warning string

Warning is https://schema.org/warning

Any FDA or other warnings about the drug (text or URL).

type WebFeed

type WebFeed string

WebFeed is https://schema.org/webFeed

The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped updates. This is usually RSS or Atom.

type WorkHours

type WorkHours string

WorkHours is https://schema.org/workHours

The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).

type WorstRating

type WorstRating string

WorstRating is https://schema.org/worstRating

The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.

type Xpath

type Xpath string

Xpath is https://schema.org/xpath

An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual "Web page element".

type Yield

type Yield string

Yield is https://schema.org/yield

The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles.

Directories

Path Synopsis
schemaext module

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL