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 identifier($identifier)
{
return $this->setProperty('identifier', $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.
@param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[]|string|string[] $identifier
@return static
@see https://schema.org/identifier | identifier | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function image($image)
{
return $this->setProperty('image', $image);
} | An image of the item. This can be a [[URL]] or a fully described
[[ImageObject]].
@param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $image
@return static
@see https://schema.org/image | image | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function interactionStatistic($interactionStatistic)
{
return $this->setProperty('interactionStatistic', $interactionStatistic);
} | The number of interactions for the CreativeWork using the WebSite or
SoftwareApplication. The most specific child type of InteractionCounter
should be used.
@param \Spatie\SchemaOrg\Contracts\InteractionCounterContract|\Spatie\SchemaOrg\Contracts\InteractionCounterContract[] $interactionStatistic
@return static
@see https://schema.org/interactionStatistic
@link https://github.com/schemaorg/schemaorg/issues/2421 | interactionStatistic | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
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/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function isicV4($isicV4)
{
return $this->setProperty('isicV4', $isicV4);
} | The International Standard of Industrial Classification of All Economic
Activities (ISIC), Revision 4 code for a particular organization,
business person, or place.
@param string|string[] $isicV4
@return static
@see https://schema.org/isicV4 | isicV4 | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function iso6523Code($iso6523Code)
{
return $this->setProperty('iso6523Code', $iso6523Code);
} | An organization identifier as defined in [ISO
6523(-1)](https://en.wikipedia.org/wiki/ISO/IEC_6523). The identifier
should be in the `XXXX:YYYYYY:ZZZ` or `XXXX:YYYYYY`format. Where `XXXX`
is a 4 digit _ICD_ (International Code Designator), `YYYYYY` is an _OID_
(Organization Identifier) with all formatting characters (dots, dashes,
spaces) removed with a maximal length of 35 characters, and `ZZZ` is an
optional OPI (Organization Part Identifier) with a maximum length of 35
characters. The various components (ICD, OID, OPI) are joined with a
colon character (ASCII `0x3a`). Note that many existing organization
identifiers defined as attributes like
[leiCode](https://schema.org/leiCode) (`0199`),
[duns](https://schema.org/duns) (`0060`) or
[GLN](https://schema.org/globalLocationNumber) (`0088`) can be expressed
using ISO-6523. If possible, ISO-6523 codes should be preferred to
populating [vatID](https://schema.org/vatID) or
[taxID](https://schema.org/taxID), as ISO identifiers are less ambiguous.
@param string|string[] $iso6523Code
@return static
@see https://schema.org/iso6523Code
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2915 | iso6523Code | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.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/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function knowsAbout($knowsAbout)
{
return $this->setProperty('knowsAbout', $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.
@param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[]|string|string[] $knowsAbout
@return static
@see https://schema.org/knowsAbout
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1688 | knowsAbout | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function knowsLanguage($knowsLanguage)
{
return $this->setProperty('knowsLanguage', $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).
@param \Spatie\SchemaOrg\Contracts\LanguageContract|\Spatie\SchemaOrg\Contracts\LanguageContract[]|string|string[] $knowsLanguage
@return static
@see https://schema.org/knowsLanguage
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1688 | knowsLanguage | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function latitude($latitude)
{
return $this->setProperty('latitude', $latitude);
} | The latitude of a location. For example ```37.42242``` ([WGS
84](https://en.wikipedia.org/wiki/World_Geodetic_System)).
@param float|float[]|int|int[]|string|string[] $latitude
@return static
@see https://schema.org/latitude | latitude | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function legalName($legalName)
{
return $this->setProperty('legalName', $legalName);
} | The official name of the organization, e.g. the registered company name.
@param string|string[] $legalName
@return static
@see https://schema.org/legalName | legalName | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function leiCode($leiCode)
{
return $this->setProperty('leiCode', $leiCode);
} | An organization identifier that uniquely identifies a legal entity as
defined in ISO 17442.
@param string|string[] $leiCode
@return static
@see https://schema.org/leiCode | leiCode | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function location($location)
{
return $this->setProperty('location', $location);
} | The location of, for example, where an event is happening, where an
organization is located, or where an action takes place.
@param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[]|\Spatie\SchemaOrg\Contracts\PostalAddressContract|\Spatie\SchemaOrg\Contracts\PostalAddressContract[]|\Spatie\SchemaOrg\Contracts\VirtualLocationContract|\Spatie\SchemaOrg\Contracts\VirtualLocationContract[]|string|string[] $location
@return static
@see https://schema.org/location | location | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function longitude($longitude)
{
return $this->setProperty('longitude', $longitude);
} | The longitude of a location. For example ```-122.08585``` ([WGS
84](https://en.wikipedia.org/wiki/World_Geodetic_System)).
@param float|float[]|int|int[]|string|string[] $longitude
@return static
@see https://schema.org/longitude | longitude | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.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/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function makesOffer($makesOffer)
{
return $this->setProperty('makesOffer', $makesOffer);
} | A pointer to products or services offered by the organization or person.
@param \Spatie\SchemaOrg\Contracts\OfferContract|\Spatie\SchemaOrg\Contracts\OfferContract[] $makesOffer
@return static
@see https://schema.org/makesOffer | makesOffer | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function maximumAttendeeCapacity($maximumAttendeeCapacity)
{
return $this->setProperty('maximumAttendeeCapacity', $maximumAttendeeCapacity);
} | The total number of individuals that may attend an event or venue.
@param int|int[] $maximumAttendeeCapacity
@return static
@see https://schema.org/maximumAttendeeCapacity | maximumAttendeeCapacity | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function member($member)
{
return $this->setProperty('member', $member);
} | A member of an Organization or a ProgramMembership. Organizations can be
members of organizations; ProgramMembership is typically for individuals.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $member
@return static
@see https://schema.org/member | member | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function memberOf($memberOf)
{
return $this->setProperty('memberOf', $memberOf);
} | An Organization (or ProgramMembership) to which this Person or
Organization belongs.
@param \Spatie\SchemaOrg\Contracts\MemberProgramTierContract|\Spatie\SchemaOrg\Contracts\MemberProgramTierContract[]|\Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\ProgramMembershipContract|\Spatie\SchemaOrg\Contracts\ProgramMembershipContract[] $memberOf
@return static
@see https://schema.org/memberOf | memberOf | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function members($members)
{
return $this->setProperty('members', $members);
} | A member of this organization.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $members
@return static
@see https://schema.org/members | members | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function naics($naics)
{
return $this->setProperty('naics', $naics);
} | The North American Industry Classification System (NAICS) code for a
particular organization or business person.
@param string|string[] $naics
@return static
@see https://schema.org/naics | naics | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function nonprofitStatus($nonprofitStatus)
{
return $this->setProperty('nonprofitStatus', $nonprofitStatus);
} | nonprofitStatus indicates the legal status of a non-profit organization
in its primary place of business.
@param \Spatie\SchemaOrg\Contracts\NonprofitTypeContract|\Spatie\SchemaOrg\Contracts\NonprofitTypeContract[] $nonprofitStatus
@return static
@see https://schema.org/nonprofitStatus
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2543 | nonprofitStatus | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function numberOfEmployees($numberOfEmployees)
{
return $this->setProperty('numberOfEmployees', $numberOfEmployees);
} | The number of employees in an organization, e.g. business.
@param \Spatie\SchemaOrg\Contracts\QuantitativeValueContract|\Spatie\SchemaOrg\Contracts\QuantitativeValueContract[] $numberOfEmployees
@return static
@see https://schema.org/numberOfEmployees | numberOfEmployees | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function openingHours($openingHours)
{
return $this->setProperty('openingHours', $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 '-'.
* Days are specified using the following two-letter combinations:
```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.
* Times are specified using 24:00 format. For example, 3pm is specified
as ```15:00```, 10am as ```10:00```.
* Here is an example: ```<time itemprop="openingHours" datetime="Tu,Th
16:00-20:00">Tuesdays and Thursdays 4-8pm</time>```.
* If a business is open 7 days a week, then it can be specified as
```<time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday,
all day</time>```.
@param string|string[] $openingHours
@return static
@see https://schema.org/openingHours | openingHours | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function openingHoursSpecification($openingHoursSpecification)
{
return $this->setProperty('openingHoursSpecification', $openingHoursSpecification);
} | The opening hours of a certain place.
@param \Spatie\SchemaOrg\Contracts\OpeningHoursSpecificationContract|\Spatie\SchemaOrg\Contracts\OpeningHoursSpecificationContract[] $openingHoursSpecification
@return static
@see https://schema.org/openingHoursSpecification | openingHoursSpecification | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function ownershipFundingInfo($ownershipFundingInfo)
{
return $this->setProperty('ownershipFundingInfo', $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.
@param \Spatie\SchemaOrg\Contracts\AboutPageContract|\Spatie\SchemaOrg\Contracts\AboutPageContract[]|\Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $ownershipFundingInfo
@return static
@see https://schema.org/ownershipFundingInfo
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1525 | ownershipFundingInfo | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function owns($owns)
{
return $this->setProperty('owns', $owns);
} | Products owned by the organization or person.
@param \Spatie\SchemaOrg\Contracts\OwnershipInfoContract|\Spatie\SchemaOrg\Contracts\OwnershipInfoContract[]|\Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[] $owns
@return static
@see https://schema.org/owns | owns | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function parentOrganization($parentOrganization)
{
return $this->setProperty('parentOrganization', $parentOrganization);
} | The larger organization that this organization is a [[subOrganization]]
of, if any.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $parentOrganization
@return static
@see https://schema.org/parentOrganization | parentOrganization | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function paymentAccepted($paymentAccepted)
{
return $this->setProperty('paymentAccepted', $paymentAccepted);
} | Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.
@param string|string[] $paymentAccepted
@return static
@see https://schema.org/paymentAccepted | paymentAccepted | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.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/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function priceRange($priceRange)
{
return $this->setProperty('priceRange', $priceRange);
} | The price range of the business, for example ```$$$```.
@param string|string[] $priceRange
@return static
@see https://schema.org/priceRange | priceRange | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function publicAccess($publicAccess)
{
return $this->setProperty('publicAccess', $publicAccess);
} | A flag to signal that the [[Place]] is open to public visitors. If this
property is omitted there is no assumed default boolean value.
@param bool|bool[] $publicAccess
@return static
@see https://schema.org/publicAccess | publicAccess | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.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/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.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/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function seeks($seeks)
{
return $this->setProperty('seeks', $seeks);
} | A pointer to products or services sought by the organization or person
(demand).
@param \Spatie\SchemaOrg\Contracts\DemandContract|\Spatie\SchemaOrg\Contracts\DemandContract[] $seeks
@return static
@see https://schema.org/seeks | seeks | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function serviceArea($serviceArea)
{
return $this->setProperty('serviceArea', $serviceArea);
} | The geographic area where the service 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[] $serviceArea
@return static
@see https://schema.org/serviceArea | serviceArea | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function skills($skills)
{
return $this->setProperty('skills', $skills);
} | A statement of knowledge, skill, ability, task or any other assertion
expressing a competency that is either claimed by a person, an
organization or desired or required to fulfill a role or to work in an
occupation.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $skills
@return static
@see https://schema.org/skills | skills | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function slogan($slogan)
{
return $this->setProperty('slogan', $slogan);
} | A slogan or motto associated with the item.
@param string|string[] $slogan
@return static
@see https://schema.org/slogan | slogan | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function smokingAllowed($smokingAllowed)
{
return $this->setProperty('smokingAllowed', $smokingAllowed);
} | Indicates whether it is allowed to smoke in the place, e.g. in the
restaurant, hotel or hotel room.
@param bool|bool[] $smokingAllowed
@return static
@see https://schema.org/smokingAllowed | smokingAllowed | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.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/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function subOrganization($subOrganization)
{
return $this->setProperty('subOrganization', $subOrganization);
} | A relationship between two organizations where the first includes the
second, e.g., as a subsidiary. See also: the more specific 'department'
property.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $subOrganization
@return static
@see https://schema.org/subOrganization | subOrganization | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.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/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function taxID($taxID)
{
return $this->setProperty('taxID', $taxID);
} | The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US
or the CIF/NIF in Spain.
@param string|string[] $taxID
@return static
@see https://schema.org/taxID | taxID | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function tourBookingPage($tourBookingPage)
{
return $this->setProperty('tourBookingPage', $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.
@param string|string[] $tourBookingPage
@return static
@see https://schema.org/tourBookingPage
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2373 | tourBookingPage | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function unnamedSourcesPolicy($unnamedSourcesPolicy)
{
return $this->setProperty('unnamedSourcesPolicy', $unnamedSourcesPolicy);
} | For an [[Organization]] (typically a [[NewsMediaOrganization]]), a
statement about policy on use of unnamed sources and the decision process
required.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $unnamedSourcesPolicy
@return static
@see https://schema.org/unnamedSourcesPolicy
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1525 | unnamedSourcesPolicy | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function vatID($vatID)
{
return $this->setProperty('vatID', $vatID);
} | The Value-added Tax ID of the organization or person.
@param string|string[] $vatID
@return static
@see https://schema.org/vatID | vatID | php | spatie/schema-org | src/Optician.php | https://github.com/spatie/schema-org/blob/master/src/Optician.php | MIT |
public function about($about)
{
return $this->setProperty('about', $about);
} | The subject matter of the content.
@param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $about
@return static
@see https://schema.org/about
@link https://github.com/schemaorg/schemaorg/issues/1670 | about | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function abstract($abstract)
{
return $this->setProperty('abstract', $abstract);
} | An abstract is a short description that summarizes a [[CreativeWork]].
@param string|string[] $abstract
@return static
@see https://schema.org/abstract
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/276 | abstract | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function accessMode($accessMode)
{
return $this->setProperty('accessMode', $accessMode);
} | The human sensory perceptual system or cognitive faculty through which a
person may process or perceive information. Values should be drawn from
the [approved
vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary).
@param string|string[] $accessMode
@return static
@see https://schema.org/accessMode
@link https://github.com/schemaorg/schemaorg/issues/1100 | accessMode | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function accessModeSufficient($accessModeSufficient)
{
return $this->setProperty('accessModeSufficient', $accessModeSufficient);
} | A list of single or combined accessModes that are sufficient to
understand all the intellectual content of a resource. Values should be
drawn from the [approved
vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessModeSufficient-vocabulary).
@param \Spatie\SchemaOrg\Contracts\ItemListContract|\Spatie\SchemaOrg\Contracts\ItemListContract[] $accessModeSufficient
@return static
@see https://schema.org/accessModeSufficient
@link https://github.com/schemaorg/schemaorg/issues/1100 | accessModeSufficient | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function accessibilityAPI($accessibilityAPI)
{
return $this->setProperty('accessibilityAPI', $accessibilityAPI);
} | Indicates that the resource is compatible with the referenced
accessibility API. Values should be drawn from the [approved
vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityAPI-vocabulary).
@param string|string[] $accessibilityAPI
@return static
@see https://schema.org/accessibilityAPI | accessibilityAPI | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function accessibilityControl($accessibilityControl)
{
return $this->setProperty('accessibilityControl', $accessibilityControl);
} | Identifies input methods that are sufficient to fully control the
described resource. Values should be drawn from the [approved
vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityControl-vocabulary).
@param string|string[] $accessibilityControl
@return static
@see https://schema.org/accessibilityControl | accessibilityControl | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function accessibilityFeature($accessibilityFeature)
{
return $this->setProperty('accessibilityFeature', $accessibilityFeature);
} | Content features of the resource, such as accessible media, alternatives
and supported enhancements for accessibility. Values should be drawn from
the [approved
vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityFeature-vocabulary).
@param string|string[] $accessibilityFeature
@return static
@see https://schema.org/accessibilityFeature | accessibilityFeature | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function accessibilityHazard($accessibilityHazard)
{
return $this->setProperty('accessibilityHazard', $accessibilityHazard);
} | A characteristic of the described resource that is physiologically
dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should
be drawn from the [approved
vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary).
@param string|string[] $accessibilityHazard
@return static
@see https://schema.org/accessibilityHazard | accessibilityHazard | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function accessibilitySummary($accessibilitySummary)
{
return $this->setProperty('accessibilitySummary', $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".
@param string|string[] $accessibilitySummary
@return static
@see https://schema.org/accessibilitySummary
@link https://github.com/schemaorg/schemaorg/issues/1100 | accessibilitySummary | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function accountablePerson($accountablePerson)
{
return $this->setProperty('accountablePerson', $accountablePerson);
} | Specifies the Person that is legally accountable for the CreativeWork.
@param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $accountablePerson
@return static
@see https://schema.org/accountablePerson | accountablePerson | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function acquireLicensePage($acquireLicensePage)
{
return $this->setProperty('acquireLicensePage', $acquireLicensePage);
} | Indicates a page documenting how licenses can be purchased or otherwise
acquired, for the current item.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $acquireLicensePage
@return static
@see https://schema.org/acquireLicensePage
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2454 | acquireLicensePage | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.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/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.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/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function alternativeHeadline($alternativeHeadline)
{
return $this->setProperty('alternativeHeadline', $alternativeHeadline);
} | A secondary title of the CreativeWork.
@param string|string[] $alternativeHeadline
@return static
@see https://schema.org/alternativeHeadline | alternativeHeadline | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function archivedAt($archivedAt)
{
return $this->setProperty('archivedAt', $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.
@param \Spatie\SchemaOrg\Contracts\WebPageContract|\Spatie\SchemaOrg\Contracts\WebPageContract[]|string|string[] $archivedAt
@return static
@see https://schema.org/archivedAt
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2450 | archivedAt | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function assesses($assesses)
{
return $this->setProperty('assesses', $assesses);
} | The item being described is intended to assess the competency or learning
outcome defined by the referenced term.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $assesses
@return static
@see https://schema.org/assesses
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2427 | assesses | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function associatedMedia($associatedMedia)
{
return $this->setProperty('associatedMedia', $associatedMedia);
} | A media object that encodes this CreativeWork. This property is a synonym
for encoding.
@param \Spatie\SchemaOrg\Contracts\MediaObjectContract|\Spatie\SchemaOrg\Contracts\MediaObjectContract[] $associatedMedia
@return static
@see https://schema.org/associatedMedia | associatedMedia | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function audience($audience)
{
return $this->setProperty('audience', $audience);
} | An intended audience, i.e. a group for whom something was created.
@param \Spatie\SchemaOrg\Contracts\AudienceContract|\Spatie\SchemaOrg\Contracts\AudienceContract[] $audience
@return static
@see https://schema.org/audience | audience | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function author($author)
{
return $this->setProperty('author', $author);
} | The author of this content or rating. Please note that author is special
in that HTML 5 provides a special mechanism for indicating authorship via
the rel tag. That is equivalent to this and may be used interchangeably.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $author
@return static
@see https://schema.org/author | author | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.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/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.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/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function character($character)
{
return $this->setProperty('character', $character);
} | Fictional person connected with a creative work.
@param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $character
@return static
@see https://schema.org/character | character | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function citation($citation)
{
return $this->setProperty('citation', $citation);
} | A citation or reference to another creative work, such as another
publication, web page, scholarly article, etc.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $citation
@return static
@see https://schema.org/citation | citation | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function comment($comment)
{
return $this->setProperty('comment', $comment);
} | Comments, typically from users.
@param \Spatie\SchemaOrg\Contracts\CommentContract|\Spatie\SchemaOrg\Contracts\CommentContract[] $comment
@return static
@see https://schema.org/comment | comment | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function commentCount($commentCount)
{
return $this->setProperty('commentCount', $commentCount);
} | The number of comments this CreativeWork (e.g. Article, Question or
Answer) has received. This is most applicable to works published in Web
sites with commenting system; additional comments may exist elsewhere.
@param int|int[] $commentCount
@return static
@see https://schema.org/commentCount | commentCount | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function conditionsOfAccess($conditionsOfAccess)
{
return $this->setProperty('conditionsOfAccess', $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.
For example "Available by appointment from the Reading Room" or
"Accessible only from logged-in accounts ".
@param string|string[] $conditionsOfAccess
@return static
@see https://schema.org/conditionsOfAccess
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2173 | conditionsOfAccess | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function contentLocation($contentLocation)
{
return $this->setProperty('contentLocation', $contentLocation);
} | The location depicted or described in the content. For example, the
location in a photograph or painting.
@param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $contentLocation
@return static
@see https://schema.org/contentLocation | contentLocation | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function contentRating($contentRating)
{
return $this->setProperty('contentRating', $contentRating);
} | Official rating of a piece of content—for example, 'MPAA PG-13'.
@param \Spatie\SchemaOrg\Contracts\RatingContract|\Spatie\SchemaOrg\Contracts\RatingContract[]|string|string[] $contentRating
@return static
@see https://schema.org/contentRating | contentRating | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function contentReferenceTime($contentReferenceTime)
{
return $this->setProperty('contentReferenceTime', $contentReferenceTime);
} | The specific time described by a creative work, for works (e.g. articles,
video objects etc.) that emphasise a particular moment within an Event.
@param \DateTimeInterface|\DateTimeInterface[] $contentReferenceTime
@return static
@see https://schema.org/contentReferenceTime
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1050 | contentReferenceTime | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function contributor($contributor)
{
return $this->setProperty('contributor', $contributor);
} | A secondary contributor to the CreativeWork or Event.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $contributor
@return static
@see https://schema.org/contributor | contributor | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function copyrightHolder($copyrightHolder)
{
return $this->setProperty('copyrightHolder', $copyrightHolder);
} | The party holding the legal copyright to the CreativeWork.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $copyrightHolder
@return static
@see https://schema.org/copyrightHolder | copyrightHolder | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function copyrightNotice($copyrightNotice)
{
return $this->setProperty('copyrightNotice', $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.
@param string|string[] $copyrightNotice
@return static
@see https://schema.org/copyrightNotice
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2659 | copyrightNotice | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function copyrightYear($copyrightYear)
{
return $this->setProperty('copyrightYear', $copyrightYear);
} | The year during which the claimed copyright for the CreativeWork was
first asserted.
@param float|float[]|int|int[] $copyrightYear
@return static
@see https://schema.org/copyrightYear | copyrightYear | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function correction($correction)
{
return $this->setProperty('correction', $correction);
} | Indicates a correction to a [[CreativeWork]], either via a
[[CorrectionComment]], textually or in another document.
@param \Spatie\SchemaOrg\Contracts\CorrectionCommentContract|\Spatie\SchemaOrg\Contracts\CorrectionCommentContract[]|string|string[] $correction
@return static
@see https://schema.org/correction
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1950 | correction | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function countryOfOrigin($countryOfOrigin)
{
return $this->setProperty('countryOfOrigin', $countryOfOrigin);
} | The country of origin of something, including products as well as
creative works such as movie and TV content.
In the case of TV and movie, this would be the country of the principle
offices of the production company or individual responsible for the
movie. For other kinds of [[CreativeWork]] it is difficult to provide
fully general guidance, and properties such as [[contentLocation]] and
[[locationCreated]] may be more applicable.
In the case of products, the country of origin of the product. The exact
interpretation of this may vary by context and product type, and cannot
be fully enumerated here.
@param \Spatie\SchemaOrg\Contracts\CountryContract|\Spatie\SchemaOrg\Contracts\CountryContract[] $countryOfOrigin
@return static
@see https://schema.org/countryOfOrigin | countryOfOrigin | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function creativeWorkStatus($creativeWorkStatus)
{
return $this->setProperty('creativeWorkStatus', $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.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $creativeWorkStatus
@return static
@see https://schema.org/creativeWorkStatus
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/987 | creativeWorkStatus | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function creator($creator)
{
return $this->setProperty('creator', $creator);
} | The creator/author of this CreativeWork. This is the same as the Author
property for CreativeWork.
@param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $creator
@return static
@see https://schema.org/creator | creator | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function creditText($creditText)
{
return $this->setProperty('creditText', $creditText);
} | Text that can be used to credit person(s) and/or organization(s)
associated with a published Creative Work.
@param string|string[] $creditText
@return static
@see https://schema.org/creditText
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2659 | creditText | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function dateCreated($dateCreated)
{
return $this->setProperty('dateCreated', $dateCreated);
} | The date on which the CreativeWork was created or the item was added to a
DataFeed.
@param \DateTimeInterface|\DateTimeInterface[] $dateCreated
@return static
@see https://schema.org/dateCreated | dateCreated | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function dateModified($dateModified)
{
return $this->setProperty('dateModified', $dateModified);
} | The date on which the CreativeWork was most recently modified or when the
item's entry was modified within a DataFeed.
@param \DateTimeInterface|\DateTimeInterface[] $dateModified
@return static
@see https://schema.org/dateModified | dateModified | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function datePublished($datePublished)
{
return $this->setProperty('datePublished', $datePublished);
} | Date of first publication or broadcast. For example the date a
[[CreativeWork]] was broadcast or a [[Certification]] was issued.
@param \DateTimeInterface|\DateTimeInterface[] $datePublished
@return static
@see https://schema.org/datePublished | datePublished | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function digitalSourceType($digitalSourceType)
{
return $this->setProperty('digitalSourceType', $digitalSourceType);
} | Indicates an IPTCDigitalSourceEnumeration code indicating the nature of
the digital source(s) for some [[CreativeWork]].
@param \Spatie\SchemaOrg\Contracts\IPTCDigitalSourceEnumerationContract|\Spatie\SchemaOrg\Contracts\IPTCDigitalSourceEnumerationContract[] $digitalSourceType
@return static
@see https://schema.org/digitalSourceType
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/3392 | digitalSourceType | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.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/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function discussionUrl($discussionUrl)
{
return $this->setProperty('discussionUrl', $discussionUrl);
} | A link to the page containing the comments of the CreativeWork.
@param string|string[] $discussionUrl
@return static
@see https://schema.org/discussionUrl | discussionUrl | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function editEIDR($editEIDR)
{
return $this->setProperty('editEIDR', $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.
@param string|string[] $editEIDR
@return static
@see https://schema.org/editEIDR
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/2469 | editEIDR | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function editor($editor)
{
return $this->setProperty('editor', $editor);
} | Specifies the Person who edited the CreativeWork.
@param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $editor
@return static
@see https://schema.org/editor | editor | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function educationalAlignment($educationalAlignment)
{
return $this->setProperty('educationalAlignment', $educationalAlignment);
} | An alignment to an established educational framework.
This property should not be used where the nature of the alignment can be
described using a simple property, for example to express that a resource
[[teaches]] or [[assesses]] a competency.
@param \Spatie\SchemaOrg\Contracts\AlignmentObjectContract|\Spatie\SchemaOrg\Contracts\AlignmentObjectContract[] $educationalAlignment
@return static
@see https://schema.org/educationalAlignment | educationalAlignment | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function educationalLevel($educationalLevel)
{
return $this->setProperty('educationalLevel', $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.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $educationalLevel
@return static
@see https://schema.org/educationalLevel
@see https://pending.schema.org
@link https://github.com/schemaorg/schemaorg/issues/1779 | educationalLevel | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function educationalUse($educationalUse)
{
return $this->setProperty('educationalUse', $educationalUse);
} | The purpose of a work in the context of education; for example,
'assignment', 'group work'.
@param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $educationalUse
@return static
@see https://schema.org/educationalUse | educationalUse | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function encoding($encoding)
{
return $this->setProperty('encoding', $encoding);
} | A media object that encodes this CreativeWork. This property is a synonym
for associatedMedia.
@param \Spatie\SchemaOrg\Contracts\MediaObjectContract|\Spatie\SchemaOrg\Contracts\MediaObjectContract[] $encoding
@return static
@see https://schema.org/encoding | encoding | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function encodingFormat($encodingFormat)
{
return $this->setProperty('encodingFormat', $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.
@param string|string[] $encodingFormat
@return static
@see https://schema.org/encodingFormat | encodingFormat | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function encodings($encodings)
{
return $this->setProperty('encodings', $encodings);
} | A media object that encodes this CreativeWork.
@param \Spatie\SchemaOrg\Contracts\MediaObjectContract|\Spatie\SchemaOrg\Contracts\MediaObjectContract[] $encodings
@return static
@see https://schema.org/encodings | encodings | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function exampleOfWork($exampleOfWork)
{
return $this->setProperty('exampleOfWork', $exampleOfWork);
} | A creative work that this work is an
example/instance/realization/derivation of.
@param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $exampleOfWork
@return static
@see https://schema.org/exampleOfWork | exampleOfWork | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.php | MIT |
public function expires($expires)
{
return $this->setProperty('expires', $expires);
} | Date the content expires and is no longer useful or available. For
example a [[VideoObject]] or [[NewsArticle]] whose availability or
relevance is time-limited, a [[ClaimReview]] fact check whose publisher
wants to indicate that it may no longer be relevant (or helpful to
highlight) after some date, or a [[Certification]] the validity has
expired.
@param \DateTimeInterface|\DateTimeInterface[] $expires
@return static
@see https://schema.org/expires | expires | php | spatie/schema-org | src/Quotation.php | https://github.com/spatie/schema-org/blob/master/src/Quotation.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.