code
stringlengths 17
296k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function isAccessibleForFree($isAccessibleForFree)
{
return $this->setProperty('isAccessibleForFree', $isAccessibleForFree);
} | A flag to signal that the item, event, or place is accessible for free.
@param bool|bool[] $isAccessibleForFree
@return static
@see https://schema.org/isAccessibleForFree | isAccessibleForFree | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function isBasedOn($isBasedOn)
{
return $this->setProperty('isBasedOn', $isBasedOn);
} | A resource from which this work is derived or from which it is a
modification or adaptation.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|string|string[] $isBasedOn
@return static
@see https://schema.org/isBasedOn | isBasedOn | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function isBasedOnUrl($isBasedOnUrl)
{
return $this->setProperty('isBasedOnUrl', $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.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|string|string[] $isBasedOnUrl
@return static
@see https://schema.org/isBasedOnUrl | isBasedOnUrl | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function isFamilyFriendly($isFamilyFriendly)
{
return $this->setProperty('isFamilyFriendly', $isFamilyFriendly);
} | Indicates whether this content is family friendly.
@param bool|bool[] $isFamilyFriendly
@return static
@see https://schema.org/isFamilyFriendly | isFamilyFriendly | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function isPartOf($isPartOf)
{
return $this->setProperty('isPartOf', $isPartOf);
} | Indicates an item or CreativeWork that this item, or CreativeWork (in
some sense), is part of.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $isPartOf
@return static
@see https://schema.org/isPartOf | isPartOf | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function keywords($keywords)
{
return $this->setProperty('keywords', $keywords);
} | Keywords or tags used to describe some item. Multiple textual entries in
a keywords list are typically delimited by commas, or by repeating the
property.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $keywords
@return static
@see https://schema.org/keywords | keywords | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function learningResourceType($learningResourceType)
{
return $this->setProperty('learningResourceType', $learningResourceType);
} | The predominant type or kind characterizing the learning resource. For
example, 'presentation', 'handout'.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $learningResourceType
@return static
@see https://schema.org/learningResourceType | learningResourceType | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function license($license)
{
return $this->setProperty('license', $license);
} | A license document that applies to this content, typically indicated by
URL.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $license
@return static
@see https://schema.org/license | license | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function locationCreated($locationCreated)
{
return $this->setProperty('locationCreated', $locationCreated);
} | The location where the CreativeWork was created, which may not be the
same as the location depicted in the CreativeWork.
@param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $locationCreated
@return static
@see https://schema.org/locationCreated | locationCreated | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function mainEntity($mainEntity)
{
return $this->setProperty('mainEntity', $mainEntity);
} | Indicates the primary entity described in some page or other
CreativeWork.
@param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $mainEntity
@return static
@see https://schema.org/mainEntity | mainEntity | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function mainEntityOfPage($mainEntityOfPage)
{
return $this->setProperty('mainEntityOfPage', $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.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $mainEntityOfPage
@return static
@see https://schema.org/mainEntityOfPage | mainEntityOfPage | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function maintainer($maintainer)
{
return $this->setProperty('maintainer', $maintainer);
} | A maintainer of a [[Dataset]], software package
([[SoftwareApplication]]), or other [[Project]]. A maintainer is a
[[Person]] or [[Organization]] that manages contributions to, and/or
publication of, some (typically complex) artifact. It is common for
distributions of software and data to be based on "upstream" sources.
When [[maintainer]] is applied to a specific version of something e.g. a
particular version or packaging of a [[Dataset]], it is always possible
that the upstream source has a different maintainer. The [[isBasedOn]]
property can be used to indicate such relationships between datasets to
make the different maintenance roles clear. Similarly in the case of
software, a package may have dedicated maintainers working on integration
into software distributions such as Ubuntu, as well as upstream
maintainers of the underlying work.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $maintainer
@return static
@see https://schema.org/maintainer
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2311 | maintainer | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function material($material)
{
return $this->setProperty('material', $material);
} | A material that something is made from, e.g. leather, wool, cotton,
paper.
@param \Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|string|string[] $material
@return static
@see https://schema.org/material | material | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function materialExtent($materialExtent)
{
return $this->setProperty('materialExtent', $materialExtent);
} | The quantity of the materials being described or an expression of the
physical space they occupy.
@param \Spatie\SchemaOrg\Contracts\QuantitativeValueContract|\Spatie\SchemaOrg\Contracts\QuantitativeValueContract[]|string|string[] $materialExtent
@return static
@see https://schema.org/materialExtent
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1759 | materialExtent | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function mentions($mentions)
{
return $this->setProperty('mentions', $mentions);
} | Indicates that the CreativeWork contains a reference to, but is not
necessarily about a concept.
@param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $mentions
@return static
@see https://schema.org/mentions | mentions | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function musicBy($musicBy)
{
return $this->setProperty('musicBy', $musicBy);
} | The composer of the soundtrack.
@param \Spatie\SchemaOrg\Contracts\MusicGroupContract|\Spatie\SchemaOrg\Contracts\MusicGroupContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $musicBy
@return static
@see https://schema.org/musicBy | musicBy | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function offers($offers)
{
return $this->setProperty('offers', $offers);
} | An offer to provide this item—for example, an offer to sell a
product, rent the DVD of a movie, perform a service, or give away tickets
to an event. Use [[businessFunction]] to indicate the kind of transaction
offered, i.e. sell, lease, etc. This property can also be used to
describe a [[Demand]]. While this property is listed as expected on a
number of common types, it can be used in others. In that case, using a
second type, such as Product or a subtype of Product, can clarify the
nature of the offer.
@param \Spatie\SchemaOrg\Contracts\DemandContract|\Spatie\SchemaOrg\Contracts\DemandContract[]|\Spatie\SchemaOrg\Contracts\OfferContract|\Spatie\SchemaOrg\Contracts\OfferContract[] $offers
@return static
@see https://schema.org/offers
@link https://github.com/schemaorg/schemaorg/issues/2289 | offers | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function partOfSeason($partOfSeason)
{
return $this->setProperty('partOfSeason', $partOfSeason);
} | The season to which this episode belongs.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkSeasonContract|\Spatie\SchemaOrg\Contracts\CreativeWorkSeasonContract[] $partOfSeason
@return static
@see https://schema.org/partOfSeason | partOfSeason | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function partOfSeries($partOfSeries)
{
return $this->setProperty('partOfSeries', $partOfSeries);
} | The series to which this episode or season belongs.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkSeriesContract|\Spatie\SchemaOrg\Contracts\CreativeWorkSeriesContract[] $partOfSeries
@return static
@see https://schema.org/partOfSeries | partOfSeries | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function pattern($pattern)
{
return $this->setProperty('pattern', $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.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $pattern
@return static
@see https://schema.org/pattern
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1797 | pattern | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function position($position)
{
return $this->setProperty('position', $position);
} | The position of an item in a series or sequence of items.
@param int|int[]|string|string[] $position
@return static
@see https://schema.org/position | position | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function potentialAction($potentialAction)
{
return $this->setProperty('potentialAction', $potentialAction);
} | Indicates a potential Action, which describes an idealized action in
which this thing would play an 'object' role.
@param \Spatie\SchemaOrg\Contracts\ActionContract|\Spatie\SchemaOrg\Contracts\ActionContract[] $potentialAction
@return static
@see https://schema.org/potentialAction | potentialAction | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function producer($producer)
{
return $this->setProperty('producer', $producer);
} | The person or organization who produced the work (e.g. music album,
movie, TV/radio series etc.).
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $producer
@return static
@see https://schema.org/producer | producer | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function productionCompany($productionCompany)
{
return $this->setProperty('productionCompany', $productionCompany);
} | The production company or studio responsible for the item, e.g. series,
video game, episode etc.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $productionCompany
@return static
@see https://schema.org/productionCompany | productionCompany | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function provider($provider)
{
return $this->setProperty('provider', $provider);
} | The service provider, service operator, or service performer; the goods
producer. Another party (a seller) may offer those services or goods on
behalf of the provider. A provider may also serve as the seller.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $provider
@return static
@see https://schema.org/provider
@see https://pending.schema.org | provider | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function publication($publication)
{
return $this->setProperty('publication', $publication);
} | A publication event associated with the item.
@param \Spatie\SchemaOrg\Contracts\PublicationEventContract|\Spatie\SchemaOrg\Contracts\PublicationEventContract[] $publication
@return static
@see https://schema.org/publication | publication | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function publisher($publisher)
{
return $this->setProperty('publisher', $publisher);
} | The publisher of the creative work.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $publisher
@return static
@see https://schema.org/publisher | publisher | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function publisherImprint($publisherImprint)
{
return $this->setProperty('publisherImprint', $publisherImprint);
} | The publishing division which published the comic.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $publisherImprint
@return static
@see https://schema.org/publisherImprint
@see https://bib.schema.org | publisherImprint | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function publishingPrinciples($publishingPrinciples)
{
return $this->setProperty('publishingPrinciples', $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.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $publishingPrinciples
@return static
@see https://schema.org/publishingPrinciples | publishingPrinciples | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function recordedAt($recordedAt)
{
return $this->setProperty('recordedAt', $recordedAt);
} | The Event where the CreativeWork was recorded. The CreativeWork may
capture all or part of the event.
@param \Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $recordedAt
@return static
@see https://schema.org/recordedAt | recordedAt | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function releasedEvent($releasedEvent)
{
return $this->setProperty('releasedEvent', $releasedEvent);
} | The place and time the release was issued, expressed as a
PublicationEvent.
@param \Spatie\SchemaOrg\Contracts\PublicationEventContract|\Spatie\SchemaOrg\Contracts\PublicationEventContract[] $releasedEvent
@return static
@see https://schema.org/releasedEvent | releasedEvent | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function sameAs($sameAs)
{
return $this->setProperty('sameAs', $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.
@param string|string[] $sameAs
@return static
@see https://schema.org/sameAs | sameAs | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function schemaVersion($schemaVersion)
{
return $this->setProperty('schemaVersion', $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,
```https://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.
@param string|string[] $schemaVersion
@return static
@see https://schema.org/schemaVersion | schemaVersion | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function sdDatePublished($sdDatePublished)
{
return $this->setProperty('sdDatePublished', $sdDatePublished);
} | Indicates the date on which the current structured data was generated /
published. Typically used alongside [[sdPublisher]].
@param \DateTimeInterface|\DateTimeInterface[] $sdDatePublished
@return static
@see https://schema.org/sdDatePublished
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1886 | sdDatePublished | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function sdLicense($sdLicense)
{
return $this->setProperty('sdLicense', $sdLicense);
} | A license document that applies to this structured data, typically
indicated by URL.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $sdLicense
@return static
@see https://schema.org/sdLicense
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1886 | sdLicense | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function sdPublisher($sdPublisher)
{
return $this->setProperty('sdPublisher', $sdPublisher);
} | Indicates the party responsible for generating and publishing the current
structured data markup, typically in cases where the structured data is
derived automatically from existing published content but published on a
different site. For example, student projects and open data initiatives
often re-publish existing content with more explicitly structured
metadata. The
[[sdPublisher]] property helps make such practices more explicit.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $sdPublisher
@return static
@see https://schema.org/sdPublisher
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1886 | sdPublisher | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function size($size)
{
return $this->setProperty('size', $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.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|\Spatie\SchemaOrg\Contracts\QuantitativeValueContract|\Spatie\SchemaOrg\Contracts\QuantitativeValueContract[]|\Spatie\SchemaOrg\Contracts\SizeSpecificationContract|\Spatie\SchemaOrg\Contracts\SizeSpecificationContract[]|string|string[] $size
@return static
@see https://schema.org/size
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1797 | size | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function sourceOrganization($sourceOrganization)
{
return $this->setProperty('sourceOrganization', $sourceOrganization);
} | The Organization on whose behalf the creator was working.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $sourceOrganization
@return static
@see https://schema.org/sourceOrganization | sourceOrganization | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function spatial($spatial)
{
return $this->setProperty('spatial', $spatial);
} | The "spatial" property can be used in cases when more specific properties
(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are
not known to be appropriate.
@param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $spatial
@return static
@see https://schema.org/spatial | spatial | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function spatialCoverage($spatialCoverage)
{
return $this->setProperty('spatialCoverage', $spatialCoverage);
} | The spatialCoverage of a CreativeWork indicates the place(s) which are
the focus of the content. It is a subproperty of
contentLocation intended primarily for more technical and detailed
materials. For example with a Dataset, it indicates
areas that the dataset describes: a dataset of New York weather
would have spatialCoverage which was the place: the state of New York.
@param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $spatialCoverage
@return static
@see https://schema.org/spatialCoverage | spatialCoverage | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function sponsor($sponsor)
{
return $this->setProperty('sponsor', $sponsor);
} | A person or organization that supports a thing through a pledge, promise,
or financial contribution. E.g. a sponsor of a Medical Study or a
corporate sponsor of an event.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $sponsor
@return static
@see https://schema.org/sponsor | sponsor | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function subjectOf($subjectOf)
{
return $this->setProperty('subjectOf', $subjectOf);
} | A CreativeWork or Event about this Thing.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $subjectOf
@return static
@see https://schema.org/subjectOf
@link https://github.com/schemaorg/schemaorg/issues/1670 | subjectOf | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function teaches($teaches)
{
return $this->setProperty('teaches', $teaches);
} | The item being described is intended to help a person learn the
competency or learning outcome defined by the referenced term.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $teaches
@return static
@see https://schema.org/teaches
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2427 | teaches | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function temporal($temporal)
{
return $this->setProperty('temporal', $temporal);
} | The "temporal" property can be used in cases where more specific
properties
(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]],
[[datePublished]]) are not known to be appropriate.
@param \DateTimeInterface|\DateTimeInterface[]|string|string[] $temporal
@return static
@see https://schema.org/temporal | temporal | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function temporalCoverage($temporalCoverage)
{
return $this->setProperty('temporalCoverage', $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.
@param \DateTimeInterface|\DateTimeInterface[]|string|string[] $temporalCoverage
@return static
@see https://schema.org/temporalCoverage | temporalCoverage | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function text($text)
{
return $this->setProperty('text', $text);
} | The textual content of this CreativeWork.
@param string|string[] $text
@return static
@see https://schema.org/text | text | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function thumbnail($thumbnail)
{
return $this->setProperty('thumbnail', $thumbnail);
} | Thumbnail image for an image or video.
@param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[] $thumbnail
@return static
@see https://schema.org/thumbnail | thumbnail | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function thumbnailUrl($thumbnailUrl)
{
return $this->setProperty('thumbnailUrl', $thumbnailUrl);
} | A thumbnail image relevant to the Thing.
@param string|string[] $thumbnailUrl
@return static
@see https://schema.org/thumbnailUrl | thumbnailUrl | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function timeRequired($timeRequired)
{
return $this->setProperty('timeRequired', $timeRequired);
} | Approximate or typical time it usually takes to work with or through the
content of this work for the typical or target audience.
@param \Spatie\SchemaOrg\Contracts\DurationContract|\Spatie\SchemaOrg\Contracts\DurationContract[] $timeRequired
@return static
@see https://schema.org/timeRequired | timeRequired | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function trailer($trailer)
{
return $this->setProperty('trailer', $trailer);
} | The trailer of a movie or TV/radio series, season, episode, etc.
@param \Spatie\SchemaOrg\Contracts\VideoObjectContract|\Spatie\SchemaOrg\Contracts\VideoObjectContract[] $trailer
@return static
@see https://schema.org/trailer | trailer | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function translationOfWork($translationOfWork)
{
return $this->setProperty('translationOfWork', $translationOfWork);
} | The work that this work has been translated from. E.g. 物种起源 is a
translationOf “On the Origin of Species”.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $translationOfWork
@return static
@see https://schema.org/translationOfWork
@see https://bib.schema.org | translationOfWork | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function translator($translator)
{
return $this->setProperty('translator', $translator);
} | Organization or person who adapts a creative work to different languages,
regional differences and technical requirements of a target market, or
that translates during some event.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $translator
@return static
@see https://schema.org/translator | translator | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function typicalAgeRange($typicalAgeRange)
{
return $this->setProperty('typicalAgeRange', $typicalAgeRange);
} | The typical expected age range, e.g. '7-9', '11-'.
@param string|string[] $typicalAgeRange
@return static
@see https://schema.org/typicalAgeRange | typicalAgeRange | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function usageInfo($usageInfo)
{
return $this->setProperty('usageInfo', $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.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $usageInfo
@return static
@see https://schema.org/usageInfo
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2454 | usageInfo | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function version($version)
{
return $this->setProperty('version', $version);
} | The version of the CreativeWork embodied by a specified resource.
@param float|float[]|int|int[]|string|string[] $version
@return static
@see https://schema.org/version | version | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function workExample($workExample)
{
return $this->setProperty('workExample', $workExample);
} | Example/instance/realization/derivation of the concept of this creative
work. E.g. the paperback edition, first edition, or e-book.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $workExample
@return static
@see https://schema.org/workExample | workExample | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function workTranslation($workTranslation)
{
return $this->setProperty('workTranslation', $workTranslation);
} | A work that is a translation of the content of this work. E.g. 西遊記
has an English workTranslation “Journey to the West”, a German
workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation
Tây du ký bình khảo.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $workTranslation
@return static
@see https://schema.org/workTranslation
@see https://bib.schema.org | workTranslation | php | spatie/schema-org | src/RadioEpisode.php | https://github.com/spatie/schema-org/blob/master/src/RadioEpisode.php | MIT |
public function acceptedPaymentMethod($acceptedPaymentMethod)
{
return $this->setProperty('acceptedPaymentMethod', $acceptedPaymentMethod);
} | The payment method(s) that are accepted in general by an organization, or
for some specific demand or offer.
@param \Spatie\SchemaOrg\Contracts\LoanOrCreditContract|\Spatie\SchemaOrg\Contracts\LoanOrCreditContract[]|\Spatie\SchemaOrg\Contracts\PaymentMethodContract|\Spatie\SchemaOrg\Contracts\PaymentMethodContract[]|string|string[] $acceptedPaymentMethod
@return static
@see https://schema.org/acceptedPaymentMethod
@link https://github.com/schemaorg/schemaorg/issues/3537 | acceptedPaymentMethod | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function actionableFeedbackPolicy($actionableFeedbackPolicy)
{
return $this->setProperty('actionableFeedbackPolicy', $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.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $actionableFeedbackPolicy
@return static
@see https://schema.org/actionableFeedbackPolicy
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1525 | actionableFeedbackPolicy | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function additionalProperty($additionalProperty)
{
return $this->setProperty('additionalProperty', $additionalProperty);
} | A property-value pair representing an additional characteristic of the
entity, e.g. a product feature or another characteristic for which there
is no matching property in schema.org.
Note: Publishers should be aware that applications designed to use
specific schema.org properties (e.g. https://schema.org/width,
https://schema.org/color, https://schema.org/gtin13, ...) will typically
expect such data to be provided using those properties, rather than using
the generic property/value mechanism.
@param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[] $additionalProperty
@return static
@see https://schema.org/additionalProperty | additionalProperty | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function additionalType($additionalType)
{
return $this->setProperty('additionalType', $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.
Typically the value is a URI-identified RDF class, and in this case
corresponds to the
use of rdf:type in RDF. Text values can be used sparingly, for cases
where useful information can be added without their being an appropriate
schema to reference. In the case of text values, the class label should
follow the schema.org [style
guide](https://schema.org/docs/styleguide.html).
@param string|string[] $additionalType
@return static
@see https://schema.org/additionalType | additionalType | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function agentInteractionStatistic($agentInteractionStatistic)
{
return $this->setProperty('agentInteractionStatistic', $agentInteractionStatistic);
} | The number of completed interactions for this entity, in a particular
role (the 'agent'), in a particular action (indicated in the statistic),
and in a particular context (i.e. interactionService).
@param \Spatie\SchemaOrg\Contracts\InteractionCounterContract|\Spatie\SchemaOrg\Contracts\InteractionCounterContract[] $agentInteractionStatistic
@return static
@see https://schema.org/agentInteractionStatistic
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2858 | agentInteractionStatistic | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function aggregateRating($aggregateRating)
{
return $this->setProperty('aggregateRating', $aggregateRating);
} | The overall rating, based on a collection of reviews or ratings, of the
item.
@param \Spatie\SchemaOrg\Contracts\AggregateRatingContract|\Spatie\SchemaOrg\Contracts\AggregateRatingContract[] $aggregateRating
@return static
@see https://schema.org/aggregateRating | aggregateRating | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function amenityFeature($amenityFeature)
{
return $this->setProperty('amenityFeature', $amenityFeature);
} | An amenity feature (e.g. a characteristic or service) of the
Accommodation. This generic property does not make a statement about
whether the feature is included in an offer for the main accommodation or
available at extra costs.
@param \Spatie\SchemaOrg\Contracts\LocationFeatureSpecificationContract|\Spatie\SchemaOrg\Contracts\LocationFeatureSpecificationContract[] $amenityFeature
@return static
@see https://schema.org/amenityFeature | amenityFeature | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function areaServed($areaServed)
{
return $this->setProperty('areaServed', $areaServed);
} | The geographic area where a service or offered item is provided.
@param \Spatie\SchemaOrg\Contracts\AdministrativeAreaContract|\Spatie\SchemaOrg\Contracts\AdministrativeAreaContract[]|\Spatie\SchemaOrg\Contracts\GeoShapeContract|\Spatie\SchemaOrg\Contracts\GeoShapeContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[]|string|string[] $areaServed
@return static
@see https://schema.org/areaServed | areaServed | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function award($award)
{
return $this->setProperty('award', $award);
} | An award won by or for this item.
@param string|string[] $award
@return static
@see https://schema.org/award | award | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function awards($awards)
{
return $this->setProperty('awards', $awards);
} | Awards won by or for this item.
@param string|string[] $awards
@return static
@see https://schema.org/awards | awards | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function branchCode($branchCode)
{
return $this->setProperty('branchCode', $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.
For example, in the URL
http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047"
is a branchCode for a particular branch.
@param string|string[] $branchCode
@return static
@see https://schema.org/branchCode | branchCode | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function branchOf($branchOf)
{
return $this->setProperty('branchOf', $branchOf);
} | The larger organization that this local business is a branch of, if any.
Not to be confused with (anatomical) [[branch]].
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $branchOf
@return static
@see https://schema.org/branchOf | branchOf | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function brand($brand)
{
return $this->setProperty('brand', $brand);
} | The brand(s) associated with a product or service, or the brand(s)
maintained by an organization or business person.
@param \Spatie\SchemaOrg\Contracts\BrandContract|\Spatie\SchemaOrg\Contracts\BrandContract[]|\Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $brand
@return static
@see https://schema.org/brand | brand | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function contactPoint($contactPoint)
{
return $this->setProperty('contactPoint', $contactPoint);
} | A contact point for a person or organization.
@param \Spatie\SchemaOrg\Contracts\ContactPointContract|\Spatie\SchemaOrg\Contracts\ContactPointContract[] $contactPoint
@return static
@see https://schema.org/contactPoint | contactPoint | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function contactPoints($contactPoints)
{
return $this->setProperty('contactPoints', $contactPoints);
} | A contact point for a person or organization.
@param \Spatie\SchemaOrg\Contracts\ContactPointContract|\Spatie\SchemaOrg\Contracts\ContactPointContract[] $contactPoints
@return static
@see https://schema.org/contactPoints | contactPoints | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function containedIn($containedIn)
{
return $this->setProperty('containedIn', $containedIn);
} | The basic containment relation between a place and one that contains it.
@param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $containedIn
@return static
@see https://schema.org/containedIn | containedIn | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function containedInPlace($containedInPlace)
{
return $this->setProperty('containedInPlace', $containedInPlace);
} | The basic containment relation between a place and one that contains it.
@param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $containedInPlace
@return static
@see https://schema.org/containedInPlace | containedInPlace | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function containsPlace($containsPlace)
{
return $this->setProperty('containsPlace', $containsPlace);
} | The basic containment relation between a place and another that it
contains.
@param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $containsPlace
@return static
@see https://schema.org/containsPlace | containsPlace | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function correctionsPolicy($correctionsPolicy)
{
return $this->setProperty('correctionsPolicy', $correctionsPolicy);
} | For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement
describing (in news media, the newsroom’s) disclosure and correction
policy for errors.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $correctionsPolicy
@return static
@see https://schema.org/correctionsPolicy
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1525 | correctionsPolicy | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function currenciesAccepted($currenciesAccepted)
{
return $this->setProperty('currenciesAccepted', $currenciesAccepted);
} | The currency accepted.
Use 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
Trading
Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system)
(LETS) and other currency types, e.g. "Ithaca HOUR".
@param string|string[] $currenciesAccepted
@return static
@see https://schema.org/currenciesAccepted | currenciesAccepted | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function department($department)
{
return $this->setProperty('department', $department);
} | A relationship between an organization and a department of that
organization, also described as an organization (allowing different urls,
logos, opening hours). For example: a store with a pharmacy, or a bakery
with a cafe.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $department
@return static
@see https://schema.org/department | department | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function disambiguatingDescription($disambiguatingDescription)
{
return $this->setProperty('disambiguatingDescription', $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.
@param string|string[] $disambiguatingDescription
@return static
@see https://schema.org/disambiguatingDescription | disambiguatingDescription | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function dissolutionDate($dissolutionDate)
{
return $this->setProperty('dissolutionDate', $dissolutionDate);
} | The date that this organization was dissolved.
@param \DateTimeInterface|\DateTimeInterface[] $dissolutionDate
@return static
@see https://schema.org/dissolutionDate | dissolutionDate | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function diversityPolicy($diversityPolicy)
{
return $this->setProperty('diversityPolicy', $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.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $diversityPolicy
@return static
@see https://schema.org/diversityPolicy
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1525 | diversityPolicy | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function diversityStaffingReport($diversityStaffingReport)
{
return $this->setProperty('diversityStaffingReport', $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.
@param \Spatie\SchemaOrg\Contracts\ArticleContract|\Spatie\SchemaOrg\Contracts\ArticleContract[]|string|string[] $diversityStaffingReport
@return static
@see https://schema.org/diversityStaffingReport
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1525 | diversityStaffingReport | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function duns($duns)
{
return $this->setProperty('duns', $duns);
} | The Dun & Bradstreet DUNS number for identifying an organization or
business person.
@param string|string[] $duns
@return static
@see https://schema.org/duns | duns | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function employee($employee)
{
return $this->setProperty('employee', $employee);
} | Someone working for this organization.
@param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $employee
@return static
@see https://schema.org/employee | employee | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function employees($employees)
{
return $this->setProperty('employees', $employees);
} | People working for this organization.
@param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $employees
@return static
@see https://schema.org/employees | employees | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function ethicsPolicy($ethicsPolicy)
{
return $this->setProperty('ethicsPolicy', $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.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $ethicsPolicy
@return static
@see https://schema.org/ethicsPolicy
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1525 | ethicsPolicy | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function event($event)
{
return $this->setProperty('event', $event);
} | Upcoming or past event associated with this place, organization, or
action.
@param \Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $event
@return static
@see https://schema.org/event | event | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function events($events)
{
return $this->setProperty('events', $events);
} | Upcoming or past events associated with this place or organization.
@param \Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $events
@return static
@see https://schema.org/events | events | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function founder($founder)
{
return $this->setProperty('founder', $founder);
} | A person or organization who founded this organization.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $founder
@return static
@see https://schema.org/founder | founder | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function founders($founders)
{
return $this->setProperty('founders', $founders);
} | A person who founded this organization.
@param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $founders
@return static
@see https://schema.org/founders | founders | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function foundingDate($foundingDate)
{
return $this->setProperty('foundingDate', $foundingDate);
} | The date that this organization was founded.
@param \DateTimeInterface|\DateTimeInterface[] $foundingDate
@return static
@see https://schema.org/foundingDate | foundingDate | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function foundingLocation($foundingLocation)
{
return $this->setProperty('foundingLocation', $foundingLocation);
} | The place where the Organization was founded.
@param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $foundingLocation
@return static
@see https://schema.org/foundingLocation | foundingLocation | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function funder($funder)
{
return $this->setProperty('funder', $funder);
} | A person or organization that supports (sponsors) something through some
kind of financial contribution.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $funder
@return static
@see https://schema.org/funder | funder | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function funding($funding)
{
return $this->setProperty('funding', $funding);
} | A [[Grant]] that directly or indirectly provide funding or sponsorship
for this item. See also [[ownershipFundingInfo]].
@param \Spatie\SchemaOrg\Contracts\GrantContract|\Spatie\SchemaOrg\Contracts\GrantContract[] $funding
@return static
@see https://schema.org/funding
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/383 | funding | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function geo($geo)
{
return $this->setProperty('geo', $geo);
} | The geo coordinates of the place.
@param \Spatie\SchemaOrg\Contracts\GeoCoordinatesContract|\Spatie\SchemaOrg\Contracts\GeoCoordinatesContract[]|\Spatie\SchemaOrg\Contracts\GeoShapeContract|\Spatie\SchemaOrg\Contracts\GeoShapeContract[] $geo
@return static
@see https://schema.org/geo | geo | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function geoContains($geoContains)
{
return $this->setProperty('geoContains', $geoContains);
} | Represents a relationship between two geometries (or the places they
represent), relating a containing geometry to a contained geometry. "a
contains b iff no points of b lie in the exterior of a, and at least one
point of the interior of b lies in the interior of a". As defined in
[DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
@param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoContains
@return static
@see https://schema.org/geoContains | geoContains | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function geoCoveredBy($geoCoveredBy)
{
return $this->setProperty('geoCoveredBy', $geoCoveredBy);
} | Represents a relationship between two geometries (or the places they
represent), relating a geometry to another that covers it. As defined in
[DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
@param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoCoveredBy
@return static
@see https://schema.org/geoCoveredBy | geoCoveredBy | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function geoCovers($geoCovers)
{
return $this->setProperty('geoCovers', $geoCovers);
} | Represents a relationship between two geometries (or the places they
represent), relating a covering geometry to a covered geometry. "Every
point of b is a point of (the interior or boundary of) a". As defined in
[DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
@param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoCovers
@return static
@see https://schema.org/geoCovers | geoCovers | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function geoCrosses($geoCrosses)
{
return $this->setProperty('geoCrosses', $geoCrosses);
} | Represents a relationship between two geometries (or the places they
represent), relating a geometry to another that crosses it: "a crosses b:
they have some but not all interior points in common, and the dimension
of the intersection is less than that of at least one of them". As
defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
@param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoCrosses
@return static
@see https://schema.org/geoCrosses | geoCrosses | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
public function geoDisjoint($geoDisjoint)
{
return $this->setProperty('geoDisjoint', $geoDisjoint);
} | Represents spatial relations in which two geometries (or the places they
represent) are topologically disjoint: "they have no point in common.
They form a set of disconnected geometries." (A symmetric relationship,
as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)
@param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoDisjoint
@return static
@see https://schema.org/geoDisjoint | geoDisjoint | php | spatie/schema-org | src/Store.php | https://github.com/spatie/schema-org/blob/master/src/Store.php | MIT |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.