code
stringlengths
114
1.05M
path
stringlengths
3
312
quality_prob
float64
0.5
0.99
learning_prob
float64
0.2
1
filename
stringlengths
3
168
kind
stringclasses
1 value
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class MixtapeAlbum(BaseModel): """MixtapeAlbum. References: https://schema.org/MixtapeAlbum Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="MixtapeAlbum", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/MixtapeAlbum.py
0.942075
0.31317
MixtapeAlbum.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class EnrollingByInvitation(BaseModel): """Enrolling participants by invitation only. References: https://schema.org/EnrollingByInvitation Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="EnrollingByInvitation", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/EnrollingByInvitation.py
0.942487
0.305005
EnrollingByInvitation.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class BoardingPolicyType(BaseModel): """A type of boarding policy used by an airline. References: https://schema.org/BoardingPolicyType Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="BoardingPolicyType", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/BoardingPolicyType.py
0.943783
0.330377
BoardingPolicyType.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class MerchantReturnUnlimitedWindow(BaseModel): """Specifies that there is an unlimited window for product returns. References: https://schema.org/MerchantReturnUnlimitedWindow Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field( default="MerchantReturnUnlimitedWindow", alias="@type", const=True ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/MerchantReturnUnlimitedWindow.py
0.946399
0.291636
MerchantReturnUnlimitedWindow.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Pediatric(BaseModel): """A specific branch of medical science that specializes in the care of infants, children and adolescents. References: https://schema.org/Pediatric Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="Pediatric", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Pediatric.py
0.890969
0.350366
Pediatric.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class WearableSizeGroupRegular(BaseModel): """Size group "Regular" for wearables. References: https://schema.org/WearableSizeGroupRegular Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="WearableSizeGroupRegular", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/WearableSizeGroupRegular.py
0.940749
0.296699
WearableSizeGroupRegular.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Crematorium(BaseModel): """A crematorium. References: https://schema.org/Crematorium Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="Crematorium", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Crematorium.py
0.939941
0.501831
Crematorium.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Motel(BaseModel): """A motel.<br /><br />See also the <a href="/docs/hotels.html">dedicated document on the use of schema.org for marking up hotels and other forms of accommodations</a>. References: https://schema.org/Motel Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. numberOfRooms: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.Typical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue. availableLanguage: (Union[List[Union[str, Any]], str, Any]): A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. checkoutTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The latest someone may check out of a lodging establishment. starRating: (Optional[Union[List[Union[str, Any]], str, Any]]): An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars). audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. petsAllowed: (Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]): Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value. checkinTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The earliest someone may check into a lodging establishment. """ type_: str = Field(default="Motel", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", ) numberOfRooms: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The number of rooms (excluding bathrooms and closets) of the accommodation or lodging" "business.Typical unit code(s): ROM for room or C62 for no unit. The type of room can be" "put in the unitText property of the QuantitativeValue.", ) availableLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A language someone may use with or at the item, service or place. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[inLanguage]].", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) checkoutTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The latest someone may check out of a lodging establishment.", ) starRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An official rating for a lodging business or food establishment, e.g. from national" "associations or standards bodies. Use the author property to indicate the rating organization," "e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) petsAllowed: Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] = Field( default=None, description="Indicates whether pets are allowed to enter the accommodation or lodging business." "More detailed information can be put in a text value.", ) checkinTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The earliest someone may check into a lodging establishment.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Motel.py
0.878848
0.350755
Motel.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Motorcycle(BaseModel): """A motorcycle or motorbike is a single-track, two-wheeled motor vehicle. References: https://schema.org/Motorcycle Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. hasMeasurement: (Optional[Union[List[Union[str, Any]], str, Any]]): A product measurement, for example the inseam of pants, the wheel size of a bicycle, or the gauge of a screw. Usually an exact measurement, but can also be a range of measurements for adjustable products, for example belts and ski bindings. countryOfAssembly: (Union[List[Union[str, Any]], str, Any]): The place where the product was assembled. width: (Optional[Union[List[Union[str, Any]], str, Any]]): The width of the item. isAccessoryOrSparePartFor: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to another product (or multiple products) for which this product is an accessory or spare part. isConsumableFor: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to another product (or multiple products) for which this product is a consumable. depth: (Optional[Union[List[Union[str, Any]], str, Any]]): The depth of the item. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. isVariantOf: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. manufacturer: (Optional[Union[List[Union[str, Any]], str, Any]]): The manufacturer of the product. gtin14: (Union[List[Union[str, Any]], str, Any]): The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. positiveNotes: (Union[List[Union[str, Any]], str, Any]): Provides positive considerations regarding something, for example product highlights or (alongside [[negativeNotes]]) pro/con lists for reviews.In the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described.The property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most positive is at the beginning of the list). reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. height: (Optional[Union[List[Union[str, Any]], str, Any]]): The height of the item. model: (Union[List[Union[str, Any]], str, Any]): The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties. itemCondition: (Optional[Union[List[Union[str, Any]], str, Any]]): A predefined value from OfferItemCondition specifying the condition of the product or service, or the products or services included in the offer. Also used for product return policies to specify the condition of products accepted for returns. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. nsn: (Union[List[Union[str, Any]], str, Any]): Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number) (nsn) of a [[Product]]. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. gtin: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/gtin)). GTINs identify trade items, including products and services, using numeric identification codes.The GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/) express GTINs as URLs (URIs, IRIs, etc.). Details including regular expression examples can be found in, Section 6 of the GS1 URI Syntax specification; see also [schema.org tracking issue](https://github.com/schemaorg/schemaorg/issues/3156#issuecomment-1209522809) for schema.org-specific discussion. A correct [[gtin]] value should be a valid GTIN, which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or a "GS1 Digital Link" URL based on such a string. The numeric component should also have a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator) and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for more details. Left-padding of the gtin values is not required or encouraged. The [[gtin]] property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]] properties.Note also that this is a definition for how to include GTINs in Schema.org data, and not a definition of GTINs in general - see the GS1 documentation for authoritative details. isRelatedTo: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to another, somehow related product (or multiple products). negativeNotes: (Union[List[Union[str, Any]], str, Any]): Provides negative considerations regarding something, most typically in pro/con lists for reviews (alongside [[positiveNotes]]). For symmetry In the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described. Since product descriptions tend to emphasise positive claims, it may be relatively unusual to find [[negativeNotes]] used in this way. Nevertheless for the sake of symmetry, [[negativeNotes]] can be used on [[Product]].The property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most negative is at the beginning of the list). funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. mobileUrl: (Union[List[Union[str, Any]], str, Any]): The [[mobileUrl]] property is provided for specific situations in which data consumers need to determine whether one of several provided URLs is a dedicated 'mobile site'.To discourage over-use, and reflecting intial usecases, the property is expected only on [[Product]] and [[Offer]], rather than [[Thing]]. The general trend in web technology is towards [responsive design](https://en.wikipedia.org/wiki/Responsive_web_design) in which content can be flexibly adapted to a wide range of browsing environments. Pages and sites referenced with the long-established [[url]] property should ideally also be usable on a wide variety of devices, including mobile phones. In most cases, it would be pointless and counter productive to attempt to update all [[url]] markup to use [[mobileUrl]] for more mobile-oriented pages. The property is intended for the case when items (primarily [[Product]] and [[Offer]]) have extra URLs hosted on an additional "mobile site" alongside the main one. It should not be taken as an endorsement of this publication style. hasEnergyConsumptionDetails: (Optional[Union[List[Union[str, Any]], str, Any]]): Defines the energy efficiency Category (also known as "class" or "rating") for a product according to an international energy efficiency standard. weight: (Optional[Union[List[Union[str, Any]], str, Any]]): The weight of the product or person. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. pattern: (Union[List[Union[str, Any]], str, Any]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. gtin12: (Union[List[Union[str, Any]], str, Any]): The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. isSimilarTo: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to another, functionally similar product (or multiple products). productID: (Union[List[Union[str, Any]], str, Any]): The product identifier, such as ISBN. For example: ``` meta itemprop="productID" content="isbn:123-456-789" ```. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. hasAdultConsideration: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to tag an item to be intended or suitable for consumption or use by adults only. purchaseDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date the item, e.g. vehicle, was purchased by the current owner. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. countryOfLastProcessing: (Union[List[Union[str, Any]], str, Any]): The place where the item (typically [[Product]]) was last processed and tested before importation. asin: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): An Amazon Standard Identification Number (ASIN) is a 10-character alphanumeric unique identifier assigned by Amazon.com and its partners for product identification within the Amazon organization (summary from [Wikipedia](https://en.wikipedia.org/wiki/Amazon_Standard_Identification_Number)'s article).Note also that this is a definition for how to include ASINs in Schema.org data, and not a definition of ASINs in general - see documentation from Amazon for authoritative details.ASINs are most commonly encoded as text strings, but the [asin] property supports URL/URI as potential values too. gtin8: (Union[List[Union[str, Any]], str, Any]): The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. releaseDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The release date of a product or product model. This can be used to distinguish the exact variant of a product. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. productionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date of production of the item, e.g. vehicle. inProductGroupWithID: (Union[List[Union[str, Any]], str, Any]): Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]]. size: (Union[List[Union[str, Any]], str, Any]): 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. mpn: (Union[List[Union[str, Any]], str, Any]): The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers. category: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. color: (Union[List[Union[str, Any]], str, Any]): The color of the product. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. gtin13: (Union[List[Union[str, Any]], str, Any]): The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details. sku: (Union[List[Union[str, Any]], str, Any]): The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers. vehicleSpecialUsage: (Union[List[Union[str, Any]], str, Any]): Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school, or as a taxi. The legislation in many countries requires this information to be revealed when offering a car for sale. trailerWeight: (Optional[Union[List[Union[str, Any]], str, Any]]): The permitted weight of a trailer attached to the vehicle.Typical unit code(s): KGM for kilogram, LBR for pound* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. cargoVolume: (Optional[Union[List[Union[str, Any]], str, Any]]): The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.Typical unit code(s): LTR for liters, FTQ for cubic foot/feetNote: You can use [[minValue]] and [[maxValue]] to indicate ranges. steeringPosition: (Optional[Union[List[Union[str, Any]], str, Any]]): The position of the steering wheel or similar device (mostly for cars). fuelConsumption: (Optional[Union[List[Union[str, Any]], str, Any]]): The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).* Note 1: There are unfortunately no standard unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement, e.g. L/100 km.* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.* Note 3: Often, the absolute value is useful only when related to driving speed ("at 80 km/h") or usage pattern ("city traffic"). You can use [[valueReference]] to link the value for the fuel consumption to another value. modelDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The release date of a vehicle model (often used to differentiate versions of the same make and model). vehicleTransmission: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) ("gearbox" for cars). emissionsCO2: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put "g/km" into the unitText property of that value, since there is no UN/CEFACT Common Code for "g/km". meetsEmissionStandard: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates that the vehicle meets the respective emission standard. payload: (Optional[Union[List[Union[str, Any]], str, Any]]): The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.Typical unit code(s): KGM for kilogram, LBR for pound* Note 1: Many databases specify the permitted TOTAL weight instead, which is the sum of [[weight]] and [[payload]]* Note 2: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.* Note 3: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].* Note 4: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. fuelCapacity: (Optional[Union[List[Union[str, Any]], str, Any]]): The capacity of the fuel tank or in the case of electric cars, the battery. If there are multiple components for storage, this should indicate the total of all storage of the same type.Typical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial gallons, AMH for ampere-hours (for electrical vehicles). wheelbase: (Optional[Union[List[Union[str, Any]], str, Any]]): The distance between the centers of the front and rear wheels.Typical unit code(s): CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet vehicleIdentificationNumber: (Union[List[Union[str, Any]], str, Any]): The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles. vehicleInteriorType: (Union[List[Union[str, Any]], str, Any]): The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience. vehicleEngine: (Optional[Union[List[Union[str, Any]], str, Any]]): Information about the engine or engines of the vehicle. numberOfDoors: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The number of doors.Typical unit code(s): C62 vehicleInteriorColor: (Union[List[Union[str, Any]], str, Any]): The color or color combination of the interior of the vehicle. driveWheelConfiguration: (Union[List[Union[str, Any]], str, Any]): The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain. numberOfAxles: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The number of axles.Typical unit code(s): C62 vehicleSeatingCapacity: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.Typical unit code(s): C62 for persons. numberOfPreviousOwners: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The number of owners of the vehicle, including the current one.Typical unit code(s): C62 purchaseDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date the item, e.g. vehicle, was purchased by the current owner. bodyType: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.). fuelType: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle. speed: (Optional[Union[List[Union[str, Any]], str, Any]]): The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit of the speed range (indicated by [[maxValue]]) should be the maximum speed achievable under regular conditions.Typical unit code(s): KMH for km/h, HM for mile per hour (0.447 04 m/s), KNT for knot*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range. Typically, the minimal value is zero.* Note 2: There are many different ways of measuring the speed range. You can link to information about how the given value has been determined using the [[valueReference]] property. mileageFromOdometer: (Optional[Union[List[Union[str, Any]], str, Any]]): The total distance travelled by the particular vehicle since its initial production, as read from its odometer.Typical unit code(s): KMT for kilometers, SMI for statute miles productionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date of production of the item, e.g. vehicle. knownVehicleDamages: (Union[List[Union[str, Any]], str, Any]): A textual description of known damages, both repaired and unrepaired. dateVehicleFirstRegistered: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date of the first registration of the vehicle with the respective public authorities. weightTotal: (Optional[Union[List[Union[str, Any]], str, Any]]): The permitted total weight of the loaded vehicle, including passengers and cargo and the weight of the empty vehicle.Typical unit code(s): KGM for kilogram, LBR for pound* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. numberOfAirbags: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The number or type of airbags in the vehicle. fuelEfficiency: (Optional[Union[List[Union[str, Any]], str, Any]]): The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).* Note 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement, e.g. mpg or km/L.* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]] (e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are reciprocal.* Note 3: Often, the absolute value is useful only when related to driving speed ("at 80 km/h") or usage pattern ("city traffic"). You can use [[valueReference]] to link the value for the fuel economy to another value. vehicleModelDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The release date of a vehicle model (often used to differentiate versions of the same make and model). numberOfForwardGears: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The total number of forward gears available for the transmission system of the vehicle.Typical unit code(s): C62 callSign: (Union[List[Union[str, Any]], str, Any]): A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting and radio communications to identify people, radio and TV stations, or vehicles. vehicleConfiguration: (Union[List[Union[str, Any]], str, Any]): A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'. tongueWeight: (Optional[Union[List[Union[str, Any]], str, Any]]): The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR).Typical unit code(s): KGM for kilogram, LBR for pound* Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]] node.* Note 2: You may also link to a [[QualitativeValue]] node that provides additional information using [[valueReference]].* Note 3: Note that you can use [[minValue]] and [[maxValue]] to indicate ranges. accelerationTime: (Optional[Union[List[Union[str, Any]], str, Any]]): The time needed to accelerate the vehicle from a given start velocity to a given target velocity.Typical unit code(s): SEC for seconds* Note: There are unfortunately no standard unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use "SEC" for seconds and indicate the velocities in the [[name]] of the [[QuantitativeValue]], or use [[valueReference]] with a [[QuantitativeValue]] of 0..60 mph or 0..100 km/h to specify the reference speeds. seatingCapacity: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical space available, and in terms of limitations set by law.Typical unit code(s): C62 for persons """ type_: str = Field(default="Motorcycle", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) hasMeasurement: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A product measurement, for example the inseam of pants, the wheel size of a bicycle, or" "the gauge of a screw. Usually an exact measurement, but can also be a range of measurements" "for adjustable products, for example belts and ski bindings.", ) countryOfAssembly: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The place where the product was assembled.", ) width: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The width of the item.", ) isAccessoryOrSparePartFor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to another product (or multiple products) for which this product is an accessory" "or spare part.", ) isConsumableFor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to another product (or multiple products) for which this product is a consumable.", ) depth: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The depth of the item.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) isVariantOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the kind of product that this is a variant of. In the case of [[ProductModel]]," "this is a pointer (from a ProductModel) to a base product from which this product is a variant." "It is safe to infer that the variant inherits all product features from the base model," "unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the" "group description also serves as a template, representing a set of Products that vary" "on explicitly defined, specific dimensions only (so it defines both a set of variants," "as well as which values distinguish amongst those variants). When used with [[ProductGroup]]," "this property can apply to any [[Product]] included in the group.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) manufacturer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The manufacturer of the product.", ) gtin14: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The GTIN-14 code of the product, or the product to which the offer refers. See [GS1 GTIN" "Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin) for more details.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) positiveNotes: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Provides positive considerations regarding something, for example product highlights" "or (alongside [[negativeNotes]]) pro/con lists for reviews.In the case of a [[Review]]," "the property describes the [[itemReviewed]] from the perspective of the review; in" "the case of a [[Product]], the product itself is being described.The property values" "can be expressed either as unstructured text (repeated as necessary), or if ordered," "as a list (in which case the most positive is at the beginning of the list).", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) height: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The height of the item.", ) model: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The model of the product. Use with the URL of a ProductModel or a textual representation" "of the model identifier. The URL of the ProductModel can be from an external source. It" "is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14" "and mpn properties.", ) itemCondition: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A predefined value from OfferItemCondition specifying the condition of the product" "or service, or the products or services included in the offer. Also used for product return" "policies to specify the condition of products accepted for returns.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) nsn: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Indicates the [NATO stock number](https://en.wikipedia.org/wiki/NATO_Stock_Number)" "(nsn) of a [[Product]].", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) gtin: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A Global Trade Item Number ([GTIN](https://www.gs1.org/standards/id-keys/gtin))." "GTINs identify trade items, including products and services, using numeric identification" "codes.The GS1 [digital link specifications](https://www.gs1.org/standards/Digital-Link/)" "express GTINs as URLs (URIs, IRIs, etc.). Details including regular expression examples" "can be found in, Section 6 of the GS1 URI Syntax specification; see also [schema.org tracking" "issue](https://github.com/schemaorg/schemaorg/issues/3156#issuecomment-1209522809)" "for schema.org-specific discussion. A correct [[gtin]] value should be a valid GTIN," "which means that it should be an all-numeric string of either 8, 12, 13 or 14 digits, or" 'a "GS1 Digital Link" URL based on such a string. The numeric component should also have' "a [valid GS1 check digit](https://www.gs1.org/services/check-digit-calculator)" "and meet the other rules for valid GTINs. See also [GS1's GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin)" "and [Wikipedia](https://en.wikipedia.org/wiki/Global_Trade_Item_Number) for" "more details. Left-padding of the gtin values is not required or encouraged. The [[gtin]]" "property generalizes the earlier [[gtin8]], [[gtin12]], [[gtin13]], and [[gtin14]]" "properties.Note also that this is a definition for how to include GTINs in Schema.org" "data, and not a definition of GTINs in general - see the GS1 documentation for authoritative" "details.", ) isRelatedTo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to another, somehow related product (or multiple products).", ) negativeNotes: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Provides negative considerations regarding something, most typically in pro/con" "lists for reviews (alongside [[positiveNotes]]). For symmetry In the case of a [[Review]]," "the property describes the [[itemReviewed]] from the perspective of the review; in" "the case of a [[Product]], the product itself is being described. Since product descriptions" "tend to emphasise positive claims, it may be relatively unusual to find [[negativeNotes]]" "used in this way. Nevertheless for the sake of symmetry, [[negativeNotes]] can be used" "on [[Product]].The property values can be expressed either as unstructured text (repeated" "as necessary), or if ordered, as a list (in which case the most negative is at the beginning" "of the list).", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) mobileUrl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [[mobileUrl]] property is provided for specific situations in which data consumers" "need to determine whether one of several provided URLs is a dedicated 'mobile site'.To" "discourage over-use, and reflecting intial usecases, the property is expected only" "on [[Product]] and [[Offer]], rather than [[Thing]]. The general trend in web technology" "is towards [responsive design](https://en.wikipedia.org/wiki/Responsive_web_design)" "in which content can be flexibly adapted to a wide range of browsing environments. Pages" "and sites referenced with the long-established [[url]] property should ideally also" "be usable on a wide variety of devices, including mobile phones. In most cases, it would" "be pointless and counter productive to attempt to update all [[url]] markup to use [[mobileUrl]]" "for more mobile-oriented pages. The property is intended for the case when items (primarily" '[[Product]] and [[Offer]]) have extra URLs hosted on an additional "mobile site"' "alongside the main one. It should not be taken as an endorsement of this publication style.", ) hasEnergyConsumptionDetails: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description='Defines the energy efficiency Category (also known as "class" or "rating") for' "a product according to an international energy efficiency standard.", ) weight: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The weight of the product or person.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) gtin12: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12" "is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference," "and Check Digit used to identify trade items. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin)" "for more details.", ) isSimilarTo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to another, functionally similar product (or multiple products).", ) productID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='The product identifier, such as ISBN. For example: ``` meta itemprop="productID"' 'content="isbn:123-456-789" ```.', ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) hasAdultConsideration: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to tag an item to be intended or suitable for consumption or use by adults only.", ) purchaseDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date the item, e.g. vehicle, was purchased by the current owner.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) countryOfLastProcessing: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The place where the item (typically [[Product]]) was last processed and tested before" "importation.", ) asin: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="An Amazon Standard Identification Number (ASIN) is a 10-character alphanumeric unique" "identifier assigned by Amazon.com and its partners for product identification within" "the Amazon organization (summary from [Wikipedia](https://en.wikipedia.org/wiki/Amazon_Standard_Identification_Number)'s" "article).Note also that this is a definition for how to include ASINs in Schema.org data," "and not a definition of ASINs in general - see documentation from Amazon for authoritative" "details.ASINs are most commonly encoded as text strings, but the [asin] property supports" "URL/URI as potential values too.", ) gtin8: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The GTIN-8 code of the product, or the product to which the offer refers. This code is also" "known as EAN/UCC-8 or 8-digit EAN. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin)" "for more details.", ) releaseDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The release date of a product or product model. This can be used to distinguish the exact" "variant of a product.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) productionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date of production of the item, e.g. vehicle.", ) inProductGroupWithID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Indicates the [[productGroupID]] for a [[ProductGroup]] that this product [[isVariantOf]].", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) mpn: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.", ) category: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A category for the item. Greater signs or slashes can be used to informally indicate a" "category hierarchy.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) color: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The color of the product.", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) gtin13: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent" "to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into" "a GTIN-13 code by simply adding a preceding zero. See [GS1 GTIN Summary](http://www.gs1.org/barcodes/technical/idkeys/gtin)" "for more details.", ) sku: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service," "or the product to which the offer refers.", ) vehicleSpecialUsage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Indicates whether the vehicle has been used for special purposes, like commercial rental," "driving school, or as a taxi. The legislation in many countries requires this information" "to be revealed when offering a car for sale.", ) trailerWeight: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The permitted weight of a trailer attached to the vehicle.Typical unit code(s): KGM" "for kilogram, LBR for pound* Note 1: You can indicate additional information in the [[name]]" "of the [[QuantitativeValue]] node.* Note 2: You may also link to a [[QualitativeValue]]" "node that provides additional information using [[valueReference]].* Note 3: Note" "that you can use [[minValue]] and [[maxValue]] to indicate ranges.", ) cargoVolume: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The available volume for cargo or luggage. For automobiles, this is usually the trunk" "volume.Typical unit code(s): LTR for liters, FTQ for cubic foot/feetNote: You can use" "[[minValue]] and [[maxValue]] to indicate ranges.", ) steeringPosition: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The position of the steering wheel or similar device (mostly for cars).", ) fuelConsumption: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The amount of fuel consumed for traveling a particular distance or temporal duration" "with the given vehicle (e.g. liters per 100 km).* Note 1: There are unfortunately no standard" "unit codes for liters per 100 km. Use [[unitText]] to indicate the unit of measurement," "e.g. L/100 km.* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]]" "(e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are" "reciprocal.* Note 3: Often, the absolute value is useful only when related to driving" 'speed ("at 80 km/h") or usage pattern ("city traffic"). You can use [[valueReference]]' "to link the value for the fuel consumption to another value.", ) modelDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The release date of a vehicle model (often used to differentiate versions of the same" "make and model).", ) vehicleTransmission: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="The type of component used for transmitting the power from a rotating power source to" 'the wheels or other relevant component(s) ("gearbox" for cars).', ) emissionsCO2: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description='The CO2 emissions in g/km. When used in combination with a QuantitativeValue, put "g/km"' "into the unitText property of that value, since there is no UN/CEFACT Common Code for" '"g/km".', ) meetsEmissionStandard: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="Indicates that the vehicle meets the respective emission standard.", ) payload: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The permitted weight of passengers and cargo, EXCLUDING the weight of the empty vehicle.Typical" "unit code(s): KGM for kilogram, LBR for pound* Note 1: Many databases specify the permitted" "TOTAL weight instead, which is the sum of [[weight]] and [[payload]]* Note 2: You can" "indicate additional information in the [[name]] of the [[QuantitativeValue]] node.*" "Note 3: You may also link to a [[QualitativeValue]] node that provides additional information" "using [[valueReference]].* Note 4: Note that you can use [[minValue]] and [[maxValue]]" "to indicate ranges.", ) fuelCapacity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The capacity of the fuel tank or in the case of electric cars, the battery. If there are" "multiple components for storage, this should indicate the total of all storage of the" "same type.Typical unit code(s): LTR for liters, GLL of US gallons, GLI for UK / imperial" "gallons, AMH for ampere-hours (for electrical vehicles).", ) wheelbase: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The distance between the centers of the front and rear wheels.Typical unit code(s):" "CMT for centimeters, MTR for meters, INH for inches, FOT for foot/feet", ) vehicleIdentificationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Vehicle Identification Number (VIN) is a unique serial number used by the automotive" "industry to identify individual motor vehicles.", ) vehicleInteriorType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The type or material of the interior of the vehicle (e.g. synthetic fabric, leather," "wood, etc.). While most interior types are characterized by the material used, an interior" "type can also be based on vehicle usage or target audience.", ) vehicleEngine: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Information about the engine or engines of the vehicle.", ) numberOfDoors: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The number of doors.Typical unit code(s): C62", ) vehicleInteriorColor: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The color or color combination of the interior of the vehicle.", ) driveWheelConfiguration: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's" "engine via the drivetrain.", ) numberOfAxles: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The number of axles.Typical unit code(s): C62", ) vehicleSeatingCapacity: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The number of passengers that can be seated in the vehicle, both in terms of the physical" "space available, and in terms of limitations set by law.Typical unit code(s): C62 for" "persons.", ) numberOfPreviousOwners: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The number of owners of the vehicle, including the current one.Typical unit code(s):" "C62", ) purchaseDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date the item, e.g. vehicle, was purchased by the current owner.", ) bodyType: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).", ) fuelType: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only" "one engine, this property can be attached directly to the vehicle.", ) speed: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The speed range of the vehicle. If the vehicle is powered by an engine, the upper limit" "of the speed range (indicated by [[maxValue]]) should be the maximum speed achievable" "under regular conditions.Typical unit code(s): KMH for km/h, HM for mile per hour (0.447" "04 m/s), KNT for knot*Note 1: Use [[minValue]] and [[maxValue]] to indicate the range." "Typically, the minimal value is zero.* Note 2: There are many different ways of measuring" "the speed range. You can link to information about how the given value has been determined" "using the [[valueReference]] property.", ) mileageFromOdometer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The total distance travelled by the particular vehicle since its initial production," "as read from its odometer.Typical unit code(s): KMT for kilometers, SMI for statute" "miles", ) productionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date of production of the item, e.g. vehicle.", ) knownVehicleDamages: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A textual description of known damages, both repaired and unrepaired.", ) dateVehicleFirstRegistered: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date of the first registration of the vehicle with the respective public authorities.", ) weightTotal: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The permitted total weight of the loaded vehicle, including passengers and cargo and" "the weight of the empty vehicle.Typical unit code(s): KGM for kilogram, LBR for pound*" "Note 1: You can indicate additional information in the [[name]] of the [[QuantitativeValue]]" "node.* Note 2: You may also link to a [[QualitativeValue]] node that provides additional" "information using [[valueReference]].* Note 3: Note that you can use [[minValue]]" "and [[maxValue]] to indicate ranges.", ) numberOfAirbags: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The number or type of airbags in the vehicle.", ) fuelEfficiency: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers" "per liter (km/L).* Note 1: There are unfortunately no standard unit codes for miles per" "gallon or kilometers per liter. Use [[unitText]] to indicate the unit of measurement," "e.g. mpg or km/L.* Note 2: There are two ways of indicating the fuel consumption, [[fuelConsumption]]" "(e.g. 8 liters per 100 km) and [[fuelEfficiency]] (e.g. 30 miles per gallon). They are" "reciprocal.* Note 3: Often, the absolute value is useful only when related to driving" 'speed ("at 80 km/h") or usage pattern ("city traffic"). You can use [[valueReference]]' "to link the value for the fuel economy to another value.", ) vehicleModelDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The release date of a vehicle model (often used to differentiate versions of the same" "make and model).", ) numberOfForwardGears: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The total number of forward gears available for the transmission system of the vehicle.Typical" "unit code(s): C62", ) callSign: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in broadcasting" "and radio communications to identify people, radio and TV stations, or vehicles.", ) vehicleConfiguration: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5" "MT 225 hp' or 'limited edition'.", ) tongueWeight: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The permitted vertical load (TWR) of a trailer attached to the vehicle. Also referred" "to as Tongue Load Rating (TLR) or Vertical Load Rating (VLR).Typical unit code(s): KGM" "for kilogram, LBR for pound* Note 1: You can indicate additional information in the [[name]]" "of the [[QuantitativeValue]] node.* Note 2: You may also link to a [[QualitativeValue]]" "node that provides additional information using [[valueReference]].* Note 3: Note" "that you can use [[minValue]] and [[maxValue]] to indicate ranges.", ) accelerationTime: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The time needed to accelerate the vehicle from a given start velocity to a given target" "velocity.Typical unit code(s): SEC for seconds* Note: There are unfortunately no standard" 'unit codes for seconds/0..100 km/h or seconds/0..60 mph. Simply use "SEC" for seconds' "and indicate the velocities in the [[name]] of the [[QuantitativeValue]], or use [[valueReference]]" "with a [[QuantitativeValue]] of 0..60 mph or 0..100 km/h to specify the reference speeds.", ) seatingCapacity: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The number of persons that can be seated (e.g. in a vehicle), both in terms of the physical" "space available, and in terms of limitations set by law.Typical unit code(s): C62 for" "persons", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Motorcycle.py
0.91784
0.435301
Motorcycle.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class MedicalCode(BaseModel): """A code for a medical entity. References: https://schema.org/MedicalCode Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. inDefinedTermSet: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A [[DefinedTermSet]] that contains this term. termCode: (Union[List[Union[str, Any]], str, Any]): A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]] codeValue: (Union[List[Union[str, Any]], str, Any]): A short textual code that uniquely identifies the value. inCodeSet: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A [[CategoryCodeSet]] that contains this category code. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. recognizingAuthority: (Optional[Union[List[Union[str, Any]], str, Any]]): If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine. relevantSpecialty: (Optional[Union[List[Union[str, Any]], str, Any]]): If applicable, a medical specialty in which this entity is relevant. medicineSystem: (Optional[Union[List[Union[str, Any]], str, Any]]): The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. legalStatus: (Union[List[Union[str, Any]], str, Any]): The drug or supplement's legal status, including any controlled substance schedules that apply. study: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical study or trial related to this entity. guideline: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical guideline related to this entity. code: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc. codeValue: (Union[List[Union[str, Any]], str, Any]): A short textual code that uniquely identifies the value. codingSystem: (Union[List[Union[str, Any]], str, Any]): The coding system, e.g. 'ICD-10'. """ type_: str = Field(default="MedicalCode", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) inDefinedTermSet: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A [[DefinedTermSet]] that contains this term.", ) termCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]", ) codeValue: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A short textual code that uniquely identifies the value.", ) inCodeSet: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A [[CategoryCodeSet]] that contains this category code.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) recognizingAuthority: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="If applicable, the organization that officially recognizes this entity as part of its" "endorsed system of medicine.", ) relevantSpecialty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="If applicable, a medical specialty in which this entity is relevant.", ) medicineSystem: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The system of medicine that includes this MedicalEntity, for example 'evidence-based'," "'homeopathic', 'chiropractic', etc.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) legalStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The drug or supplement's legal status, including any controlled substance schedules" "that apply.", ) study: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical study or trial related to this entity.", ) guideline: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical guideline related to this entity.", ) code: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical code for the entity, taken from a controlled vocabulary or ontology such as" "ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.", ) codeValue: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A short textual code that uniquely identifies the value.", ) codingSystem: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The coding system, e.g. 'ICD-10'.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/MedicalCode.py
0.904042
0.335242
MedicalCode.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class BodyMeasurementHips(BaseModel): """Girth of hips (measured around the buttocks). Used, for example, to fit skirts. References: https://schema.org/BodyMeasurementHips Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="BodyMeasurementHips", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/BodyMeasurementHips.py
0.948358
0.360573
BodyMeasurementHips.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class UserPageVisits(BaseModel): """UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]]. References: https://schema.org/UserPageVisits Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. performer: (Optional[Union[List[Union[str, Any]], str, Any]]): A performer at the event&#x2014;for example, a presenter, musician, musical group or actor. eventAttendanceMode: (Optional[Union[List[Union[str, Any]], str, Any]]): The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix. workFeatured: (Optional[Union[List[Union[str, Any]], str, Any]]): A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent). remainingAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The number of attendee places for an event that remain unallocated. actor: (Optional[Union[List[Union[str, Any]], str, Any]]): An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip. doorTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The time admission will commence. previousStartDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated. recordedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The CreativeWork that captured all or part of this Event. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. superEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent. eventSchedule: (Optional[Union[List[Union[str, Any]], str, Any]]): Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated [[Schedule]], this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months or seasons. maximumVirtualAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). attendees: (Optional[Union[List[Union[str, Any]], str, Any]]): A person attending the event. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. eventStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. workPerformed: (Optional[Union[List[Union[str, Any]], str, Any]]): A work performed in some event, for example a play performed in a TheaterEvent. duration: (Optional[Union[List[Union[str, Any]], str, Any]]): The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. composer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who wrote a composition, or who is the composer of a work performed at some event. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. subEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. attendee: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization attending the event. subEvents: (Optional[Union[List[Union[str, Any]], str, Any]]): Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference. performers: (Optional[Union[List[Union[str, Any]], str, Any]]): The main performer or performers of the event&#x2014;for example, a presenter, musician, or actor. maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. maximumPhysicalAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). director: (Optional[Union[List[Union[str, Any]], str, Any]]): A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. startDate: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. endDate: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. organizer: (Optional[Union[List[Union[str, Any]], str, Any]]): An organizer of an Event. """ type_: str = Field(default="UserPageVisits", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) performer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A performer at the event&#x2014;for example, a presenter, musician, musical group" "or actor.", ) eventAttendanceMode: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The eventAttendanceMode of an event indicates whether it occurs online, offline, or" "a mix.", ) workFeatured: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties" "are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).", ) remainingAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The number of attendee places for an event that remain unallocated.", ) actor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated" "with individual items or with a series, episode, clip.", ) doorTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The time admission will commence.", ) previousStartDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Used in conjunction with eventStatus for rescheduled or cancelled events. This property" "contains the previously scheduled start date. For rescheduled events, the startDate" "property should be used for the newly scheduled start date. In the (rare) case of an event" "that has been postponed and rescheduled multiple times, this field may be repeated.", ) recordedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The CreativeWork that captured all or part of this Event.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) superEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An event that this event is a part of. For example, a collection of individual music performances" "might each have a music festival as their superEvent.", ) eventSchedule: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable" "to share a schedule for a series of repeating events rather than data on the individual" "events themselves. For example, a website or application might prefer to publish a schedule" "for a weekly gym class rather than provide data on every event. A schedule could be processed" "by applications to add forthcoming events to a calendar. An [[Event]] that is associated" "with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]]" "properties. These are instead defined within the associated [[Schedule]], this avoids" "any ambiguity for clients using the data. The property might have repeated values to" "specify different schedules, e.g. for different months or seasons.", ) maximumVirtualAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]]" "is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]).", ) attendees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person attending the event.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) eventStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An eventStatus of an event represents its status; particularly useful when an event" "is cancelled or rescheduled.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) workPerformed: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A work performed in some event, for example a play performed in a TheaterEvent.", ) duration: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) composer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who wrote a composition, or who is the composer of a work performed" "at some event.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) subEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Event that is part of this event. For example, a conference event includes many presentations," "each of which is a subEvent of the conference.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) attendee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization attending the event.", ) subEvents: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Events that are a part of this event. For example, a conference event includes many presentations," "each subEvents of the conference.", ) performers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The main performer or performers of the event&#x2014;for example, a presenter, musician," "or actor.", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) maximumPhysicalAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]]" "is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]).", ) director: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors" "can be associated with individual items or with a series, episode, clip.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) startDate: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) endDate: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) organizer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An organizer of an Event.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/UserPageVisits.py
0.921039
0.300643
UserPageVisits.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ReservationPackage(BaseModel): """A group of multiple reservations with common values for all sub-reservations. References: https://schema.org/ReservationPackage Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. broker: (Optional[Union[List[Union[str, Any]], str, Any]]): An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. modifiedTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The date and time the reservation was modified. programMembershipUsed: (Optional[Union[List[Union[str, Any]], str, Any]]): Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation. bookingAgent: (Optional[Union[List[Union[str, Any]], str, Any]]): 'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent. totalPrice: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The total price for the reservation or ticket, including applicable taxes, shipping, etc.Usage guidelines:* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. reservedTicket: (Optional[Union[List[Union[str, Any]], str, Any]]): A ticket associated with the reservation. reservationId: (Union[List[Union[str, Any]], str, Any]): A unique identifier for the reservation. reservationFor: (Optional[Union[List[Union[str, Any]], str, Any]]): The thing -- flight, event, restaurant, etc. being reserved. underName: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization the reservation or ticket is for. bookingTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The date and time the reservation was booked. reservationStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): The current status of the reservation. priceCurrency: (Union[List[Union[str, Any]], str, Any]): The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.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". subReservation: (Optional[Union[List[Union[str, Any]], str, Any]]): The individual reservations included in the package. Typically a repeated property. """ type_: str = Field(default="ReservationPackage", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) broker: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An entity that arranges for an exchange between a buyer and a seller. In most cases a broker" "never acquires or releases ownership of a product or service involved in an exchange." "If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms" "are preferred.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) modifiedTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The date and time the reservation was modified.", ) programMembershipUsed: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the" "reservation.", ) bookingAgent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.", ) totalPrice: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The total price for the reservation or ticket, including applicable taxes, shipping," "etc.Usage guidelines:* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030)" "to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.* Use" "'.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid" "using these symbols as a readability separator.", ) reservedTicket: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A ticket associated with the reservation.", ) reservationId: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A unique identifier for the reservation.", ) reservationFor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The thing -- flight, event, restaurant, etc. being reserved.", ) underName: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization the reservation or ticket is for.", ) bookingTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The date and time the reservation was booked.", ) reservationStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The current status of the reservation.", ) priceCurrency: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The currency of the price, or a price component when attached to [[PriceSpecification]]" "and its subtypes.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".', ) subReservation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The individual reservations included in the package. Typically a repeated property.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ReservationPackage.py
0.94051
0.323193
ReservationPackage.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ParentalSupport(BaseModel): """ParentalSupport: this is a benefit for parental support. References: https://schema.org/ParentalSupport Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="ParentalSupport", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ParentalSupport.py
0.943191
0.297311
ParentalSupport.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Gynecologic(BaseModel): """A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system. References: https://schema.org/Gynecologic Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="Gynecologic", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Gynecologic.py
0.918389
0.445288
Gynecologic.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ItemPage(BaseModel): """A page devoted to a single item, such as a particular product or hotel. References: https://schema.org/ItemPage Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. significantLink: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. specialty: (Optional[Union[List[Union[str, Any]], str, Any]]): One of the domain specialities to which this web page's content applies. reviewedBy: (Optional[Union[List[Union[str, Any]], str, Any]]): People or organizations that have reviewed the content on this web page for accuracy and/or completeness. lastReviewed: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Date on which the content on this web page was last reviewed for accuracy and/or completeness. relatedLink: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link related to this web page, for example to other related web pages. breadcrumb: (Union[List[Union[str, Any]], str, Any]): A set of links that can help a user understand and navigate a website hierarchy. significantLinks: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. mainContentOfPage: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates if this web page element is the main subject of the page. speakable: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.The *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.2.) CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use the [[cssSelector]] property.3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.For more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For thiswe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property. primaryImageOfPage: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the main image on the page. """ type_: str = Field(default="ItemPage", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) significantLink: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="One of the more significant URLs on the page. Typically, these are the non-navigation" "links that are clicked on the most.", ) specialty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="One of the domain specialities to which this web page's content applies.", ) reviewedBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People or organizations that have reviewed the content on this web page for accuracy" "and/or completeness.", ) lastReviewed: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="Date on which the content on this web page was last reviewed for accuracy and/or completeness.", ) relatedLink: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link related to this web page, for example to other related web pages.", ) breadcrumb: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A set of links that can help a user understand and navigate a website hierarchy.", ) significantLinks: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="The most significant URLs on the page. Typically, these are the non-navigation links" "that are clicked on the most.", ) mainContentOfPage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates if this web page element is the main subject of the page.", ) speakable: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates sections of a Web page that are particularly 'speakable' in the sense of being" "highlighted as being especially appropriate for text-to-speech conversion. Other" "sections of a page may also be usefully spoken in particular circumstances; the 'speakable'" "property serves to indicate the parts most likely to be generally useful for speech.The" "*speakable* property can be repeated an arbitrary number of times, with three kinds" "of possible 'content-locator' values:1.) *id-value* URL references - uses *id-value*" "of an element in the page being annotated. The simplest use of *speakable* has (potentially" "relative) URL values, referencing identified sections of the document concerned.2.)" "CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use" "the [[cssSelector]] property.3.) XPaths - addresses content via XPaths (assuming" "an XML view of the content). Use the [[xpath]] property.For more sophisticated markup" "of speakable sections beyond simple ID references, either CSS selectors or XPath expressions" "to pick out document section(s) as speakable. For thiswe define a supporting type, [[SpeakableSpecification]]" "which is defined to be a possible value of the *speakable* property.", ) primaryImageOfPage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the main image on the page.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ItemPage.py
0.921992
0.341555
ItemPage.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ApprovedIndication(BaseModel): """An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US. References: https://schema.org/ApprovedIndication Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. recognizingAuthority: (Optional[Union[List[Union[str, Any]], str, Any]]): If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine. relevantSpecialty: (Optional[Union[List[Union[str, Any]], str, Any]]): If applicable, a medical specialty in which this entity is relevant. medicineSystem: (Optional[Union[List[Union[str, Any]], str, Any]]): The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. legalStatus: (Union[List[Union[str, Any]], str, Any]): The drug or supplement's legal status, including any controlled substance schedules that apply. study: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical study or trial related to this entity. guideline: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical guideline related to this entity. code: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc. """ type_: str = Field(default="ApprovedIndication", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) recognizingAuthority: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="If applicable, the organization that officially recognizes this entity as part of its" "endorsed system of medicine.", ) relevantSpecialty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="If applicable, a medical specialty in which this entity is relevant.", ) medicineSystem: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The system of medicine that includes this MedicalEntity, for example 'evidence-based'," "'homeopathic', 'chiropractic', etc.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) legalStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The drug or supplement's legal status, including any controlled substance schedules" "that apply.", ) study: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical study or trial related to this entity.", ) guideline: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical guideline related to this entity.", ) code: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical code for the entity, taken from a controlled vocabulary or ontology such as" "ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ApprovedIndication.py
0.943738
0.360968
ApprovedIndication.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class NoninvasiveProcedure(BaseModel): """A type of medical procedure that involves noninvasive techniques. References: https://schema.org/NoninvasiveProcedure Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="NoninvasiveProcedure", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/NoninvasiveProcedure.py
0.943744
0.345105
NoninvasiveProcedure.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class VeterinaryCare(BaseModel): """A vet's office. References: https://schema.org/VeterinaryCare Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. healthPlanNetworkId: (Union[List[Union[str, Any]], str, Any]): Name or unique ID of network. (Networks are often reused across different insurance plans.) medicalSpecialty: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical specialty of the provider. isAcceptingNewPatients: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Whether the provider is accepting new patients. """ type_: str = Field(default="VeterinaryCare", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) healthPlanNetworkId: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Name or unique ID of network. (Networks are often reused across different insurance" "plans.)", ) medicalSpecialty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical specialty of the provider.", ) isAcceptingNewPatients: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Whether the provider is accepting new patients.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/VeterinaryCare.py
0.863765
0.354601
VeterinaryCare.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ScreeningEvent(BaseModel): """A screening of a movie or other video. References: https://schema.org/ScreeningEvent Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. performer: (Optional[Union[List[Union[str, Any]], str, Any]]): A performer at the event&#x2014;for example, a presenter, musician, musical group or actor. eventAttendanceMode: (Optional[Union[List[Union[str, Any]], str, Any]]): The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix. workFeatured: (Optional[Union[List[Union[str, Any]], str, Any]]): A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent). remainingAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The number of attendee places for an event that remain unallocated. actor: (Optional[Union[List[Union[str, Any]], str, Any]]): An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip. doorTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The time admission will commence. previousStartDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated. recordedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The CreativeWork that captured all or part of this Event. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. superEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent. eventSchedule: (Optional[Union[List[Union[str, Any]], str, Any]]): Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated [[Schedule]], this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months or seasons. maximumVirtualAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). attendees: (Optional[Union[List[Union[str, Any]], str, Any]]): A person attending the event. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. eventStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. workPerformed: (Optional[Union[List[Union[str, Any]], str, Any]]): A work performed in some event, for example a play performed in a TheaterEvent. duration: (Optional[Union[List[Union[str, Any]], str, Any]]): The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. composer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who wrote a composition, or who is the composer of a work performed at some event. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. subEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. attendee: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization attending the event. subEvents: (Optional[Union[List[Union[str, Any]], str, Any]]): Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference. performers: (Optional[Union[List[Union[str, Any]], str, Any]]): The main performer or performers of the event&#x2014;for example, a presenter, musician, or actor. maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. maximumPhysicalAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). director: (Optional[Union[List[Union[str, Any]], str, Any]]): A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. startDate: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. endDate: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. organizer: (Optional[Union[List[Union[str, Any]], str, Any]]): An organizer of an Event. subtitleLanguage: (Union[List[Union[str, Any]], str, Any]): Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47). videoFormat: (Union[List[Union[str, Any]], str, Any]): The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.). workPresented: (Optional[Union[List[Union[str, Any]], str, Any]]): The movie presented during this event. """ type_: str = Field(default="ScreeningEvent", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) performer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A performer at the event&#x2014;for example, a presenter, musician, musical group" "or actor.", ) eventAttendanceMode: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The eventAttendanceMode of an event indicates whether it occurs online, offline, or" "a mix.", ) workFeatured: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties" "are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).", ) remainingAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The number of attendee places for an event that remain unallocated.", ) actor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated" "with individual items or with a series, episode, clip.", ) doorTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The time admission will commence.", ) previousStartDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Used in conjunction with eventStatus for rescheduled or cancelled events. This property" "contains the previously scheduled start date. For rescheduled events, the startDate" "property should be used for the newly scheduled start date. In the (rare) case of an event" "that has been postponed and rescheduled multiple times, this field may be repeated.", ) recordedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The CreativeWork that captured all or part of this Event.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) superEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An event that this event is a part of. For example, a collection of individual music performances" "might each have a music festival as their superEvent.", ) eventSchedule: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable" "to share a schedule for a series of repeating events rather than data on the individual" "events themselves. For example, a website or application might prefer to publish a schedule" "for a weekly gym class rather than provide data on every event. A schedule could be processed" "by applications to add forthcoming events to a calendar. An [[Event]] that is associated" "with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]]" "properties. These are instead defined within the associated [[Schedule]], this avoids" "any ambiguity for clients using the data. The property might have repeated values to" "specify different schedules, e.g. for different months or seasons.", ) maximumVirtualAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]]" "is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]).", ) attendees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person attending the event.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) eventStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An eventStatus of an event represents its status; particularly useful when an event" "is cancelled or rescheduled.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) workPerformed: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A work performed in some event, for example a play performed in a TheaterEvent.", ) duration: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) composer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who wrote a composition, or who is the composer of a work performed" "at some event.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) subEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Event that is part of this event. For example, a conference event includes many presentations," "each of which is a subEvent of the conference.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) attendee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization attending the event.", ) subEvents: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Events that are a part of this event. For example, a conference event includes many presentations," "each subEvents of the conference.", ) performers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The main performer or performers of the event&#x2014;for example, a presenter, musician," "or actor.", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) maximumPhysicalAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]]" "is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]).", ) director: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors" "can be associated with individual items or with a series, episode, clip.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) startDate: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) endDate: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) organizer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An organizer of an Event.", ) subtitleLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).", ) videoFormat: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).", ) workPresented: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The movie presented during this event.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ScreeningEvent.py
0.928595
0.349505
ScreeningEvent.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Bacteria(BaseModel): """Pathogenic bacteria that cause bacterial infection. References: https://schema.org/Bacteria Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Bacteria", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Bacteria.py
0.939088
0.319665
Bacteria.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Atlas(BaseModel): """A collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject. References: https://schema.org/Atlas Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. """ type_: str = Field(default="Atlas", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Atlas.py
0.921406
0.373219
Atlas.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class TollFree(BaseModel): """The associated telephone number is toll free. References: https://schema.org/TollFree Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="TollFree", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/TollFree.py
0.93866
0.303235
TollFree.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class RsvpResponseYes(BaseModel): """The invitee will attend. References: https://schema.org/RsvpResponseYes Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="RsvpResponseYes", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/RsvpResponseYes.py
0.942015
0.295433
RsvpResponseYes.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class EventScheduled(BaseModel): """The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default. References: https://schema.org/EventScheduled Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="EventScheduled", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/EventScheduled.py
0.947491
0.310172
EventScheduled.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Clip(BaseModel): """A short TV or radio program or a segment/part of a program. References: https://schema.org/Clip Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. actors: (Optional[Union[List[Union[str, Any]], str, Any]]): An actor, e.g. in TV, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip. actor: (Optional[Union[List[Union[str, Any]], str, Any]]): An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip. clipNumber: (Union[List[Union[str, int, Any]], str, int, Any]): Position of the clip within an ordered group of clips. partOfEpisode: (Optional[Union[List[Union[str, Any]], str, Any]]): The episode to which this clip belongs. partOfSeason: (Optional[Union[List[Union[str, Any]], str, Any]]): The season to which this episode belongs. startOffset: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The start time of the clip expressed as the number of seconds from the beginning of the work. partOfSeries: (Optional[Union[List[Union[str, Any]], str, Any]]): The series to which this episode or season belongs. endOffset: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The end time of the clip expressed as the number of seconds from the beginning of the work. director: (Optional[Union[List[Union[str, Any]], str, Any]]): A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip. directors: (Optional[Union[List[Union[str, Any]], str, Any]]): A director of e.g. TV, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip. musicBy: (Optional[Union[List[Union[str, Any]], str, Any]]): The composer of the soundtrack. """ type_: str = Field(default="Clip", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) actors: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An actor, e.g. in TV, radio, movie, video games etc. Actors can be associated with individual" "items or with a series, episode, clip.", ) actor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated" "with individual items or with a series, episode, clip.", ) clipNumber: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="Position of the clip within an ordered group of clips.", ) partOfEpisode: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The episode to which this clip belongs.", ) partOfSeason: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The season to which this episode belongs.", ) startOffset: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The start time of the clip expressed as the number of seconds from the beginning of the" "work.", ) partOfSeries: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The series to which this episode or season belongs.", ) endOffset: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The end time of the clip expressed as the number of seconds from the beginning of the work.", ) director: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors" "can be associated with individual items or with a series, episode, clip.", ) directors: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A director of e.g. TV, radio, movie, video games etc. content. Directors can be associated" "with individual items or with a series, episode, clip.", ) musicBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The composer of the soundtrack.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Clip.py
0.938343
0.342159
Clip.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class VeganDiet(BaseModel): """A diet exclusive of all animal products. References: https://schema.org/VeganDiet Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="VeganDiet", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/VeganDiet.py
0.939533
0.329284
VeganDiet.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class MediaSubscription(BaseModel): """A subscription which allows a user to access media including audio, video, books, etc. References: https://schema.org/MediaSubscription Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. expectsAcceptanceOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it. authenticator: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media. """ type_: str = Field(default="MediaSubscription", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) expectsAcceptanceOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Offer which must be accepted before the user can perform the Action. For example, the" "user may need to buy a movie before being able to watch it.", ) authenticator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization responsible for authenticating the user's subscription. For example," "many media apps require a cable/satellite provider to authenticate your subscription" "before playing media.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/MediaSubscription.py
0.942301
0.295332
MediaSubscription.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Book(BaseModel): """A book. References: https://schema.org/Book Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. abridged: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether the book is an abridged edition. bookFormat: (Optional[Union[List[Union[str, Any]], str, Any]]): The format of the book. illustrator: (Optional[Union[List[Union[str, Any]], str, Any]]): The illustrator of the book. bookEdition: (Union[List[Union[str, Any]], str, Any]): The edition of the book. numberOfPages: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The number of pages in the book. isbn: (Union[List[Union[str, Any]], str, Any]): The ISBN of the book. """ type_: str = Field(default="Book", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) abridged: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether the book is an abridged edition.", ) bookFormat: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The format of the book.", ) illustrator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The illustrator of the book.", ) bookEdition: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The edition of the book.", ) numberOfPages: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="The number of pages in the book.", ) isbn: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The ISBN of the book.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Book.py
0.929484
0.329014
Book.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class SportsClub(BaseModel): """A sports club. References: https://schema.org/SportsClub Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="SportsClub", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/SportsClub.py
0.881405
0.3492
SportsClub.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class SpecialAnnouncement(BaseModel): """A SpecialAnnouncement combines a simple date-stamped textual information update with contextualized Web links and other structured data. It represents an information update made by a locally-oriented organization, for example schools, pharmacies, healthcare providers, community groups, police, local government.For work in progress guidelines on Coronavirus-related markup see [this doc](https://docs.google.com/document/d/14ikaGCKxo50rRM7nvKSlbUpjyIk2WMQd3IkB1lItlrM/edit#).The motivating scenario for SpecialAnnouncement is the [Coronavirus pandemic](https://en.wikipedia.org/wiki/2019%E2%80%9320_coronavirus_pandemic), and the initial vocabulary is oriented to this urgent situation. Schema.orgexpect to improve the markup iteratively as it is deployed and as feedback emerges from use. In addition to ourusual [Github entry](https://github.com/schemaorg/schemaorg/issues/2490), feedback comments can also be provided in [this document](https://docs.google.com/document/d/1fpdFFxk8s87CWwACs53SGkYv3aafSxz_DTtOQxMrBJQ/edit#).While this schema is designed to communicate urgent crisis-related information, it is not the same as an emergency warning technology like [CAP](https://en.wikipedia.org/wiki/Common_Alerting_Protocol), although there may be overlaps. The intent is to coverthe kinds of everyday practical information being posted to existing websites during an emergency situation.Several kinds of information can be provided:We encourage the provision of "name", "text", "datePosted", "expires" (if appropriate), "category" and"url" as a simple baseline. It is important to provide a value for "category" where possible, most ideally as a well knownURL from Wikipedia or Wikidata. In the case of the 2019-2020 Coronavirus pandemic, this should be "https://en.wikipedia.org/w/index.php?title=2019-20\_coronavirus\_pandemic" or "https://www.wikidata.org/wiki/Q81068910".For many of the possible properties, values can either be simple links or an inline description, depending on whether a summary is available. For a link, provide just the URL of the appropriate page as the property's value. For an inline description, use a [[WebContent]] type, and provide the url as a property of that, alongside at least a simple "[[text]]" summary of the page. It isunlikely that a single SpecialAnnouncement will need all of the possible properties simultaneously.We expect that in many cases the page referenced might contain more specialized structured data, e.g. contact info, [[openingHours]], [[Event]], [[FAQPage]] etc. By linking to those pages from a [[SpecialAnnouncement]] you can help make it clearer that the events are related to the situation (e.g. Coronavirus) indicated by the [[category]] property of the [[SpecialAnnouncement]].Many [[SpecialAnnouncement]]s will relate to particular regions and to identifiable local organizations. Use [[spatialCoverage]] for the region, and [[announcementLocation]] to indicate specific [[LocalBusiness]]es and [[CivicStructure]]s. If the announcement affects both a particular region and a specific location (for example, a library closure that serves an entire region), use both [[spatialCoverage]] and [[announcementLocation]].The [[about]] property can be used to indicate entities that are the focus of the announcement. We now recommend using [[about]] onlyfor representing non-location entities (e.g. a [[Course]] or a [[RadioStation]]). For places, use [[announcementLocation]] and [[spatialCoverage]]. Consumers of this markup should be aware that the initial design encouraged the use of [[about]] for locations too.The basic content of [[SpecialAnnouncement]] is similar to that of an [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(Web_standard)) feed. For publishers without such feeds, basic feed-like information can be shared by posting[[SpecialAnnouncement]] updates in a page, e.g. using JSON-LD. For sites with Atom/RSS functionality, you can point to a feedwith the [[webFeed]] property. This can be a simple URL, or an inline [[DataFeed]] object, with [[encodingFormat]] providingmedia type information, e.g. "application/rss+xml" or "application/atom+xml". References: https://schema.org/SpecialAnnouncement Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. diseaseSpreadStatistics: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Statistical information about the spread of a disease, either as [[WebContent]], or described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset. When a [[WebContent]] URL is provided, the page indicated might also contain more such markup. publicTransportClosuresInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Information about public transport closures. governmentBenefitsInfo: (Optional[Union[List[Union[str, Any]], str, Any]]): governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement. quarantineGuidelines: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Guidelines about quarantine rules, e.g. in the context of a pandemic. travelBans: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Information about travel bans, e.g. in the context of a pandemic. webFeed: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped updates. This is usually RSS or Atom. diseasePreventionInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Information about disease prevention. datePosted: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Publication date of an online listing. category: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy. announcementLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a specific [[CivicStructure]] or [[LocalBusiness]] associated with the SpecialAnnouncement. For example, a specific testing facility or business with special opening hours. For a larger geographic region like a quarantine of an entire region, use [[spatialCoverage]]. schoolClosuresInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Information about school closures. newsUpdatesAndGuidelines: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page with news updates and guidelines. This could often be (but is not required to be) the main page containing [[SpecialAnnouncement]] markup on a site. gettingTestedInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Information about getting tested (for a [[MedicalCondition]]), e.g. in the context of a pandemic. """ type_: str = Field(default="SpecialAnnouncement", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) diseaseSpreadStatistics: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Statistical information about the spread of a disease, either as [[WebContent]], or" "described directly as a [[Dataset]], or the specific [[Observation]]s in the dataset." "When a [[WebContent]] URL is provided, the page indicated might also contain more such" "markup.", ) publicTransportClosuresInfo: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Information about public transport closures.", ) governmentBenefitsInfo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="governmentBenefitsInfo provides information about government benefits associated" "with a SpecialAnnouncement.", ) quarantineGuidelines: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Guidelines about quarantine rules, e.g. in the context of a pandemic.", ) travelBans: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Information about travel bans, e.g. in the context of a pandemic.", ) webFeed: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="The URL for a feed, e.g. associated with a podcast series, blog, or series of date-stamped" "updates. This is usually RSS or Atom.", ) diseasePreventionInfo: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Information about disease prevention.", ) datePosted: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Publication date of an online listing.", ) category: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A category for the item. Greater signs or slashes can be used to informally indicate a" "category hierarchy.", ) announcementLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a specific [[CivicStructure]] or [[LocalBusiness]] associated with the" "SpecialAnnouncement. For example, a specific testing facility or business with special" "opening hours. For a larger geographic region like a quarantine of an entire region," "use [[spatialCoverage]].", ) schoolClosuresInfo: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Information about school closures.", ) newsUpdatesAndGuidelines: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page with news updates and guidelines. This could often be (but is not required" "to be) the main page containing [[SpecialAnnouncement]] markup on a site.", ) gettingTestedInfo: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Information about getting tested (for a [[MedicalCondition]]), e.g. in the context" "of a pandemic.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/SpecialAnnouncement.py
0.790207
0.687046
SpecialAnnouncement.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class SafetyHealthAspect(BaseModel): """Content about the safety-related aspects of a health topic. References: https://schema.org/SafetyHealthAspect Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="SafetyHealthAspect", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/SafetyHealthAspect.py
0.947003
0.324623
SafetyHealthAspect.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class JewelryStore(BaseModel): """A jewelry store. References: https://schema.org/JewelryStore Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="JewelryStore", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/JewelryStore.py
0.864754
0.345851
JewelryStore.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Text(BaseModel): """Data type: Text. References: https://schema.org/Text Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Text", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Text.py
0.937311
0.314222
Text.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class MiddleSchool(BaseModel): """A middle school (typically for children aged around 11-14, although this varies somewhat). References: https://schema.org/MiddleSchool Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. """ type_: str = Field(default="MiddleSchool", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/MiddleSchool.py
0.941459
0.658884
MiddleSchool.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class WearableSizeGroupGirls(BaseModel): """Size group "Girls" for wearables. References: https://schema.org/WearableSizeGroupGirls Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="WearableSizeGroupGirls", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/WearableSizeGroupGirls.py
0.942434
0.293088
WearableSizeGroupGirls.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Sunday(BaseModel): """The day of the week between Saturday and Monday. References: https://schema.org/Sunday Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Sunday", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Sunday.py
0.932515
0.344719
Sunday.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Reservation(BaseModel): """Describes a reservation for travel, dining or an event. Some reservations require tickets. Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]]. References: https://schema.org/Reservation Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. broker: (Optional[Union[List[Union[str, Any]], str, Any]]): An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. modifiedTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The date and time the reservation was modified. programMembershipUsed: (Optional[Union[List[Union[str, Any]], str, Any]]): Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation. bookingAgent: (Optional[Union[List[Union[str, Any]], str, Any]]): 'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent. totalPrice: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The total price for the reservation or ticket, including applicable taxes, shipping, etc.Usage guidelines:* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. reservedTicket: (Optional[Union[List[Union[str, Any]], str, Any]]): A ticket associated with the reservation. reservationId: (Union[List[Union[str, Any]], str, Any]): A unique identifier for the reservation. reservationFor: (Optional[Union[List[Union[str, Any]], str, Any]]): The thing -- flight, event, restaurant, etc. being reserved. underName: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization the reservation or ticket is for. bookingTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The date and time the reservation was booked. reservationStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): The current status of the reservation. priceCurrency: (Union[List[Union[str, Any]], str, Any]): The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.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". """ type_: str = Field(default="Reservation", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) broker: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An entity that arranges for an exchange between a buyer and a seller. In most cases a broker" "never acquires or releases ownership of a product or service involved in an exchange." "If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms" "are preferred.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) modifiedTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The date and time the reservation was modified.", ) programMembershipUsed: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the" "reservation.", ) bookingAgent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.", ) totalPrice: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The total price for the reservation or ticket, including applicable taxes, shipping," "etc.Usage guidelines:* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030)" "to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.* Use" "'.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid" "using these symbols as a readability separator.", ) reservedTicket: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A ticket associated with the reservation.", ) reservationId: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A unique identifier for the reservation.", ) reservationFor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The thing -- flight, event, restaurant, etc. being reserved.", ) underName: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization the reservation or ticket is for.", ) bookingTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The date and time the reservation was booked.", ) reservationStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The current status of the reservation.", ) priceCurrency: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The currency of the price, or a price component when attached to [[PriceSpecification]]" "and its subtypes.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".', )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Reservation.py
0.92046
0.368633
Reservation.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class DigitalDocumentPermission(BaseModel): """A permission for a particular person or group to access a particular file. References: https://schema.org/DigitalDocumentPermission Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. grantee: (Optional[Union[List[Union[str, Any]], str, Any]]): The person, organization, contact point, or audience that has been granted this permission. permissionType: (Optional[Union[List[Union[str, Any]], str, Any]]): The type of permission granted the person, organization, or audience. """ type_: str = Field(default="DigitalDocumentPermission", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) grantee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person, organization, contact point, or audience that has been granted this permission.", ) permissionType: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The type of permission granted the person, organization, or audience.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/DigitalDocumentPermission.py
0.949832
0.309663
DigitalDocumentPermission.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class BodyMeasurementTypeEnumeration(BaseModel): """Enumerates types (or dimensions) of a person's body measurements, for example for fitting of clothes. References: https://schema.org/BodyMeasurementTypeEnumeration Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field( default="BodyMeasurementTypeEnumeration", alias="@type", const=True ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/BodyMeasurementTypeEnumeration.py
0.949201
0.342847
BodyMeasurementTypeEnumeration.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class QuantitativeValueDistribution(BaseModel): """A statistical distribution of values. References: https://schema.org/QuantitativeValueDistribution Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. percentile75: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The 75th percentile value. percentile25: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The 25th percentile value. duration: (Optional[Union[List[Union[str, Any]], str, Any]]): The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). median: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The median value. percentile90: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The 90th percentile value. percentile10: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The 10th percentile value. """ type_: str = Field( default="QuantitativeValueDistribution", alias="@type", const=True ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) percentile75: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The 75th percentile value.", ) percentile25: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The 25th percentile value.", ) duration: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).", ) median: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The median value.", ) percentile90: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The 90th percentile value.", ) percentile10: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The 10th percentile value.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/QuantitativeValueDistribution.py
0.944804
0.371849
QuantitativeValueDistribution.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class MedicalStudy(BaseModel): """A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID. References: https://schema.org/MedicalStudy Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. recognizingAuthority: (Optional[Union[List[Union[str, Any]], str, Any]]): If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine. relevantSpecialty: (Optional[Union[List[Union[str, Any]], str, Any]]): If applicable, a medical specialty in which this entity is relevant. medicineSystem: (Optional[Union[List[Union[str, Any]], str, Any]]): The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. legalStatus: (Union[List[Union[str, Any]], str, Any]): The drug or supplement's legal status, including any controlled substance schedules that apply. study: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical study or trial related to this entity. guideline: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical guideline related to this entity. code: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc. studySubject: (Optional[Union[List[Union[str, Any]], str, Any]]): A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study. studyLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location in which the study is taking/took place. healthCondition: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifying the health condition(s) of a patient, medical study, or other target audience. status: (Union[List[Union[str, Any]], str, Any]): The status of the study (enumerated). sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. """ type_: str = Field(default="MedicalStudy", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) recognizingAuthority: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="If applicable, the organization that officially recognizes this entity as part of its" "endorsed system of medicine.", ) relevantSpecialty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="If applicable, a medical specialty in which this entity is relevant.", ) medicineSystem: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The system of medicine that includes this MedicalEntity, for example 'evidence-based'," "'homeopathic', 'chiropractic', etc.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) legalStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The drug or supplement's legal status, including any controlled substance schedules" "that apply.", ) study: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical study or trial related to this entity.", ) guideline: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical guideline related to this entity.", ) code: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical code for the entity, taken from a controlled vocabulary or ontology such as" "ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.", ) studySubject: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs," "etc. investigated by the study.", ) studyLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location in which the study is taking/took place.", ) healthCondition: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifying the health condition(s) of a patient, medical study, or other target audience.", ) status: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The status of the study (enumerated).", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/MedicalStudy.py
0.929903
0.519521
MedicalStudy.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class HairSalon(BaseModel): """A hair salon. References: https://schema.org/HairSalon Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="HairSalon", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/HairSalon.py
0.882933
0.357792
HairSalon.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ExchangeRateSpecification(BaseModel): """A structured value representing exchange rate. References: https://schema.org/ExchangeRateSpecification Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. currency: (Union[List[Union[str, Any]], str, Any]): The currency in which the monetary amount is expressed.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". currentExchangeRate: (Optional[Union[List[Union[str, Any]], str, Any]]): The current price of a currency. exchangeRateSpread: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The difference between the price at which a broker or other intermediary buys and sells foreign currency. """ type_: str = Field(default="ExchangeRateSpecification", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) currency: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The currency in which the monetary amount is expressed.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".', ) currentExchangeRate: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The current price of a currency.", ) exchangeRateSpread: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The difference between the price at which a broker or other intermediary buys and sells" "foreign currency.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ExchangeRateSpecification.py
0.943119
0.39905
ExchangeRateSpecification.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class LibrarySystem(BaseModel): """A [[LibrarySystem]] is a collaborative system amongst several libraries. References: https://schema.org/LibrarySystem Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. """ type_: str = Field(default="LibrarySystem", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/LibrarySystem.py
0.893263
0.371621
LibrarySystem.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class WearableSizeSystemBR(BaseModel): """Brazilian size system for wearables. References: https://schema.org/WearableSizeSystemBR Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="WearableSizeSystemBR", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/WearableSizeSystemBR.py
0.939568
0.313013
WearableSizeSystemBR.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class DiscussionForumPosting(BaseModel): """A posting to a discussion forum. References: https://schema.org/DiscussionForumPosting Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. pageEnd: (Union[List[Union[str, int, Any]], str, int, Any]): The page on which the work ends; for example "138" or "xvi". wordCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The number of words in the text of the Article. articleSection: (Union[List[Union[str, Any]], str, Any]): Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc. articleBody: (Union[List[Union[str, Any]], str, Any]): The actual body of the article. speakable: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.The *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.2.) CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use the [[cssSelector]] property.3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.For more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For thiswe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property. backstory: (Union[List[Union[str, Any]], str, Any]): For an [[Article]], typically a [[NewsArticle]], the backstory property provides a textual summary giving a brief explanation of why and how an article was created. In a journalistic setting this could include information about reporting process, methods, interviews, data sources, etc. pagination: (Union[List[Union[str, Any]], str, Any]): Any description of pages that is not separated into pageStart and pageEnd; for example, "1-6, 9, 55" or "10-12, 46-49". pageStart: (Union[List[Union[str, int, Any]], str, int, Any]): The page on which the work starts; for example "135" or "xiii". sharedContent: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork such as an image, video, or audio clip shared as part of this posting. """ type_: str = Field(default="DiscussionForumPosting", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) pageEnd: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description='The page on which the work ends; for example "138" or "xvi".', ) wordCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="The number of words in the text of the Article.", ) articleSection: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports," "Lifestyle, etc.", ) articleBody: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The actual body of the article.", ) speakable: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates sections of a Web page that are particularly 'speakable' in the sense of being" "highlighted as being especially appropriate for text-to-speech conversion. Other" "sections of a page may also be usefully spoken in particular circumstances; the 'speakable'" "property serves to indicate the parts most likely to be generally useful for speech.The" "*speakable* property can be repeated an arbitrary number of times, with three kinds" "of possible 'content-locator' values:1.) *id-value* URL references - uses *id-value*" "of an element in the page being annotated. The simplest use of *speakable* has (potentially" "relative) URL values, referencing identified sections of the document concerned.2.)" "CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use" "the [[cssSelector]] property.3.) XPaths - addresses content via XPaths (assuming" "an XML view of the content). Use the [[xpath]] property.For more sophisticated markup" "of speakable sections beyond simple ID references, either CSS selectors or XPath expressions" "to pick out document section(s) as speakable. For thiswe define a supporting type, [[SpeakableSpecification]]" "which is defined to be a possible value of the *speakable* property.", ) backstory: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="For an [[Article]], typically a [[NewsArticle]], the backstory property provides" "a textual summary giving a brief explanation of why and how an article was created. In" "a journalistic setting this could include information about reporting process, methods," "interviews, data sources, etc.", ) pagination: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Any description of pages that is not separated into pageStart and pageEnd; for example," '"1-6, 9, 55" or "10-12, 46-49".', ) pageStart: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description='The page on which the work starts; for example "135" or "xiii".', ) sharedContent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork such as an image, video, or audio clip shared as part of this posting.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/DiscussionForumPosting.py
0.914972
0.341775
DiscussionForumPosting.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Gastroenterologic(BaseModel): """A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system. References: https://schema.org/Gastroenterologic Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Gastroenterologic", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Gastroenterologic.py
0.924041
0.421016
Gastroenterologic.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class DoubleBlindedTrial(BaseModel): """A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to. References: https://schema.org/DoubleBlindedTrial Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="DoubleBlindedTrial", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/DoubleBlindedTrial.py
0.947636
0.350783
DoubleBlindedTrial.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Nonprofit501c6(BaseModel): """Nonprofit501c6: Non-profit type referring to Business Leagues, Chambers of Commerce, Real Estate Boards. References: https://schema.org/Nonprofit501c6 Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Nonprofit501c6", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Nonprofit501c6.py
0.944906
0.272259
Nonprofit501c6.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ContactPage(BaseModel): """Web page type: Contact page. References: https://schema.org/ContactPage Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. significantLink: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. specialty: (Optional[Union[List[Union[str, Any]], str, Any]]): One of the domain specialities to which this web page's content applies. reviewedBy: (Optional[Union[List[Union[str, Any]], str, Any]]): People or organizations that have reviewed the content on this web page for accuracy and/or completeness. lastReviewed: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Date on which the content on this web page was last reviewed for accuracy and/or completeness. relatedLink: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link related to this web page, for example to other related web pages. breadcrumb: (Union[List[Union[str, Any]], str, Any]): A set of links that can help a user understand and navigate a website hierarchy. significantLinks: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. mainContentOfPage: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates if this web page element is the main subject of the page. speakable: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.The *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.2.) CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use the [[cssSelector]] property.3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.For more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For thiswe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property. primaryImageOfPage: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the main image on the page. """ type_: str = Field(default="ContactPage", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) significantLink: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="One of the more significant URLs on the page. Typically, these are the non-navigation" "links that are clicked on the most.", ) specialty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="One of the domain specialities to which this web page's content applies.", ) reviewedBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People or organizations that have reviewed the content on this web page for accuracy" "and/or completeness.", ) lastReviewed: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="Date on which the content on this web page was last reviewed for accuracy and/or completeness.", ) relatedLink: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link related to this web page, for example to other related web pages.", ) breadcrumb: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A set of links that can help a user understand and navigate a website hierarchy.", ) significantLinks: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="The most significant URLs on the page. Typically, these are the non-navigation links" "that are clicked on the most.", ) mainContentOfPage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates if this web page element is the main subject of the page.", ) speakable: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates sections of a Web page that are particularly 'speakable' in the sense of being" "highlighted as being especially appropriate for text-to-speech conversion. Other" "sections of a page may also be usefully spoken in particular circumstances; the 'speakable'" "property serves to indicate the parts most likely to be generally useful for speech.The" "*speakable* property can be repeated an arbitrary number of times, with three kinds" "of possible 'content-locator' values:1.) *id-value* URL references - uses *id-value*" "of an element in the page being annotated. The simplest use of *speakable* has (potentially" "relative) URL values, referencing identified sections of the document concerned.2.)" "CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use" "the [[cssSelector]] property.3.) XPaths - addresses content via XPaths (assuming" "an XML view of the content). Use the [[xpath]] property.For more sophisticated markup" "of speakable sections beyond simple ID references, either CSS selectors or XPath expressions" "to pick out document section(s) as speakable. For thiswe define a supporting type, [[SpeakableSpecification]]" "which is defined to be a possible value of the *speakable* property.", ) primaryImageOfPage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the main image on the page.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ContactPage.py
0.926641
0.278562
ContactPage.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class WholesaleStore(BaseModel): """A wholesale store. References: https://schema.org/WholesaleStore Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="WholesaleStore", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/WholesaleStore.py
0.86267
0.369173
WholesaleStore.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class SpeakableSpecification(BaseModel): """A SpeakableSpecification indicates (typically via [[xpath]] or [[cssSelector]]) sections of a document that are highlighted as particularly [[speakable]]. Instances of this type are expected to be used primarily as values of the [[speakable]] property. References: https://schema.org/SpeakableSpecification Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. xpath: (Union[List[Union[str, Any]], str, Any]): An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual "Web page element". cssSelector: (Union[List[Union[str, Any]], str, Any]): A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual "Web page element". """ type_: str = Field(default="SpeakableSpecification", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) xpath: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter" 'case, multiple matches within a page can constitute a single conceptual "Web page element".', ) cssSelector: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the" 'latter case, multiple matches within a page can constitute a single conceptual "Web' 'page element".', )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/SpeakableSpecification.py
0.947817
0.425307
SpeakableSpecification.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class MovieRentalStore(BaseModel): """A movie rental store. References: https://schema.org/MovieRentalStore Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="MovieRentalStore", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/MovieRentalStore.py
0.868004
0.369002
MovieRentalStore.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Nursing(BaseModel): """A health profession of a person formally educated and trained in the care of the sick or infirm person. References: https://schema.org/Nursing Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="Nursing", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Nursing.py
0.871796
0.37439
Nursing.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class CausesHealthAspect(BaseModel): """Information about the causes and main actions that gave rise to the topic. References: https://schema.org/CausesHealthAspect Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="CausesHealthAspect", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/CausesHealthAspect.py
0.946646
0.330809
CausesHealthAspect.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class LegalValueLevel(BaseModel): """A list of possible levels for the legal validity of a legislation. References: https://schema.org/LegalValueLevel Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="LegalValueLevel", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/LegalValueLevel.py
0.944093
0.323487
LegalValueLevel.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Diagnostic(BaseModel): """A medical device used for diagnostic purposes. References: https://schema.org/Diagnostic Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Diagnostic", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Diagnostic.py
0.941379
0.312658
Diagnostic.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ActivationFee(BaseModel): """Represents the activation fee part of the total price for an offered product, for example a cellphone contract. References: https://schema.org/ActivationFee Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="ActivationFee", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ActivationFee.py
0.947842
0.34516
ActivationFee.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Renal(BaseModel): """A specific branch of medical science that pertains to the study of the kidneys and its respective disease states. References: https://schema.org/Renal Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Renal", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Renal.py
0.934552
0.394551
Renal.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class WearableSizeSystemEurope(BaseModel): """European size system for wearables. References: https://schema.org/WearableSizeSystemEurope Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="WearableSizeSystemEurope", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/WearableSizeSystemEurope.py
0.940585
0.315723
WearableSizeSystemEurope.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class WearableSizeGroupExtraShort(BaseModel): """Size group "Extra Short" for wearables. References: https://schema.org/WearableSizeGroupExtraShort Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="WearableSizeGroupExtraShort", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/WearableSizeGroupExtraShort.py
0.942711
0.291699
WearableSizeGroupExtraShort.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class BedAndBreakfast(BaseModel): """Bed and breakfast.<br /><br />See also the <a href="/docs/hotels.html">dedicated document on the use of schema.org for marking up hotels and other forms of accommodations</a>. References: https://schema.org/BedAndBreakfast Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. numberOfRooms: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.Typical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue. availableLanguage: (Union[List[Union[str, Any]], str, Any]): A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. checkoutTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The latest someone may check out of a lodging establishment. starRating: (Optional[Union[List[Union[str, Any]], str, Any]]): An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars). audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. petsAllowed: (Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]): Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value. checkinTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The earliest someone may check into a lodging establishment. """ type_: str = Field(default="BedAndBreakfast", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", ) numberOfRooms: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The number of rooms (excluding bathrooms and closets) of the accommodation or lodging" "business.Typical unit code(s): ROM for room or C62 for no unit. The type of room can be" "put in the unitText property of the QuantitativeValue.", ) availableLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A language someone may use with or at the item, service or place. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[inLanguage]].", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) checkoutTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The latest someone may check out of a lodging establishment.", ) starRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An official rating for a lodging business or food establishment, e.g. from national" "associations or standards bodies. Use the author property to indicate the rating organization," "e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) petsAllowed: Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] = Field( default=None, description="Indicates whether pets are allowed to enter the accommodation or lodging business." "More detailed information can be put in a text value.", ) checkinTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The earliest someone may check into a lodging establishment.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/BedAndBreakfast.py
0.876925
0.353428
BedAndBreakfast.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class PoliceStation(BaseModel): """A police station. References: https://schema.org/PoliceStation Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="PoliceStation", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/PoliceStation.py
0.876019
0.35855
PoliceStation.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class MovieTheater(BaseModel): """A movie theater. References: https://schema.org/MovieTheater Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. screenCount: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The number of screens in the movie theater. """ type_: str = Field(default="MovieTheater", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", ) screenCount: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The number of screens in the movie theater.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/MovieTheater.py
0.877988
0.317083
MovieTheater.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class MenuSection(BaseModel): """A sub-grouping of food or drink items in a menu. E.g. courses (such as 'Dinner', 'Breakfast', etc.), specific type of dishes (such as 'Meat', 'Vegan', 'Drinks', etc.), or some other classification made by the menu provider. References: https://schema.org/MenuSection Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. hasMenuSection: (Optional[Union[List[Union[str, Any]], str, Any]]): A subgrouping of the menu (by dishes, course, serving time period, etc.). hasMenuItem: (Optional[Union[List[Union[str, Any]], str, Any]]): A food or drink item contained in a menu or menu section. """ type_: str = Field(default="MenuSection", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) hasMenuSection: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A subgrouping of the menu (by dishes, course, serving time period, etc.).", ) hasMenuItem: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A food or drink item contained in a menu or menu section.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/MenuSection.py
0.901911
0.316898
MenuSection.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class DislikeAction(BaseModel): """The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants. References: https://schema.org/DislikeAction Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. endTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. E.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. startTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. E.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. result: (Optional[Union[List[Union[str, Any]], str, Any]]): The result produced in the action. E.g. John wrote *a book*. actionStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the current disposition of the Action. agent: (Optional[Union[List[Union[str, Any]], str, Any]]): The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote a book. instrument: (Optional[Union[List[Union[str, Any]], str, Any]]): The object that helped the agent perform the action. E.g. John wrote a book with *a pen*. object: (Optional[Union[List[Union[str, Any]], str, Any]]): The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). E.g. John read *a book*. error: (Optional[Union[List[Union[str, Any]], str, Any]]): For failed actions, more information on the cause of the failure. target: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a target EntryPoint, or url, for an Action. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. participant: (Optional[Union[List[Union[str, Any]], str, Any]]): Other co-agents that participated in the action indirectly. E.g. John wrote a book with *Steve*. """ type_: str = Field(default="DislikeAction", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) endTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation)," "the time that it is expected to end. For actions that span a period of time, when the action" "was performed. E.g. John wrote a book from January to *December*. For media, including" "audio and video, it's the time offset of the end of a clip within a larger file.Note that" "Event uses startDate/endDate instead of startTime/endTime, even when describing" "dates with times. This situation may be clarified in future revisions.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) startTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation)," "the time that it is expected to start. For actions that span a period of time, when the action" "was performed. E.g. John wrote a book from *January* to December. For media, including" "audio and video, it's the time offset of the start of a clip within a larger file.Note that" "Event uses startDate/endDate instead of startTime/endTime, even when describing" "dates with times. This situation may be clarified in future revisions.", ) result: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The result produced in the action. E.g. John wrote *a book*.", ) actionStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the current disposition of the Action.", ) agent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote" "a book.", ) instrument: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The object that helped the agent perform the action. E.g. John wrote a book with *a pen*.", ) object: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The object upon which the action is carried out, whose state is kept intact or changed." "Also known as the semantic roles patient, affected or undergoer (which change their" "state) or theme (which doesn't). E.g. John read *a book*.", ) error: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="For failed actions, more information on the cause of the failure.", ) target: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates a target EntryPoint, or url, for an Action.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) participant: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Other co-agents that participated in the action indirectly. E.g. John wrote a book with" "*Steve*.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/DislikeAction.py
0.941513
0.365655
DislikeAction.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class TaxiStand(BaseModel): """A taxi stand. References: https://schema.org/TaxiStand Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="TaxiStand", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/TaxiStand.py
0.938597
0.523238
TaxiStand.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class AnatomicalStructure(BaseModel): """Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures. References: https://schema.org/AnatomicalStructure Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. recognizingAuthority: (Optional[Union[List[Union[str, Any]], str, Any]]): If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine. relevantSpecialty: (Optional[Union[List[Union[str, Any]], str, Any]]): If applicable, a medical specialty in which this entity is relevant. medicineSystem: (Optional[Union[List[Union[str, Any]], str, Any]]): The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. legalStatus: (Union[List[Union[str, Any]], str, Any]): The drug or supplement's legal status, including any controlled substance schedules that apply. study: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical study or trial related to this entity. guideline: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical guideline related to this entity. code: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc. connectedTo: (Optional[Union[List[Union[str, Any]], str, Any]]): Other anatomical structures to which this structure is connected. partOfSystem: (Optional[Union[List[Union[str, Any]], str, Any]]): The anatomical or organ system that this structure is part of. associatedPathophysiology: (Union[List[Union[str, Any]], str, Any]): If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system. bodyLocation: (Union[List[Union[str, Any]], str, Any]): Location in the body of the anatomical structure. relatedTherapy: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical therapy related to this anatomy. subStructure: (Optional[Union[List[Union[str, Any]], str, Any]]): Component (sub-)structure(s) that comprise this anatomical structure. relatedCondition: (Optional[Union[List[Union[str, Any]], str, Any]]): A medical condition associated with this anatomy. diagram: (Optional[Union[List[Union[str, Any]], str, Any]]): An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures. """ type_: str = Field(default="AnatomicalStructure", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) recognizingAuthority: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="If applicable, the organization that officially recognizes this entity as part of its" "endorsed system of medicine.", ) relevantSpecialty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="If applicable, a medical specialty in which this entity is relevant.", ) medicineSystem: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The system of medicine that includes this MedicalEntity, for example 'evidence-based'," "'homeopathic', 'chiropractic', etc.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) legalStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The drug or supplement's legal status, including any controlled substance schedules" "that apply.", ) study: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical study or trial related to this entity.", ) guideline: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical guideline related to this entity.", ) code: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical code for the entity, taken from a controlled vocabulary or ontology such as" "ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.", ) connectedTo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Other anatomical structures to which this structure is connected.", ) partOfSystem: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The anatomical or organ system that this structure is part of.", ) associatedPathophysiology: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="If applicable, a description of the pathophysiology associated with the anatomical" "system, including potential abnormal changes in the mechanical, physical, and biochemical" "functions of the system.", ) bodyLocation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Location in the body of the anatomical structure.", ) relatedTherapy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical therapy related to this anatomy.", ) subStructure: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Component (sub-)structure(s) that comprise this anatomical structure.", ) relatedCondition: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A medical condition associated with this anatomy.", ) diagram: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An image containing a diagram that illustrates the structure and/or its component substructures" "and/or connections with other structures.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/AnatomicalStructure.py
0.934268
0.431165
AnatomicalStructure.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class QAPage(BaseModel): """A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs). References: https://schema.org/QAPage Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. significantLink: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. specialty: (Optional[Union[List[Union[str, Any]], str, Any]]): One of the domain specialities to which this web page's content applies. reviewedBy: (Optional[Union[List[Union[str, Any]], str, Any]]): People or organizations that have reviewed the content on this web page for accuracy and/or completeness. lastReviewed: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Date on which the content on this web page was last reviewed for accuracy and/or completeness. relatedLink: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link related to this web page, for example to other related web pages. breadcrumb: (Union[List[Union[str, Any]], str, Any]): A set of links that can help a user understand and navigate a website hierarchy. significantLinks: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most. mainContentOfPage: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates if this web page element is the main subject of the page. speakable: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.The *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.2.) CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use the [[cssSelector]] property.3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.For more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For thiswe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property. primaryImageOfPage: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the main image on the page. """ type_: str = Field(default="QAPage", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) significantLink: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="One of the more significant URLs on the page. Typically, these are the non-navigation" "links that are clicked on the most.", ) specialty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="One of the domain specialities to which this web page's content applies.", ) reviewedBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People or organizations that have reviewed the content on this web page for accuracy" "and/or completeness.", ) lastReviewed: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="Date on which the content on this web page was last reviewed for accuracy and/or completeness.", ) relatedLink: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link related to this web page, for example to other related web pages.", ) breadcrumb: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A set of links that can help a user understand and navigate a website hierarchy.", ) significantLinks: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="The most significant URLs on the page. Typically, these are the non-navigation links" "that are clicked on the most.", ) mainContentOfPage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates if this web page element is the main subject of the page.", ) speakable: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates sections of a Web page that are particularly 'speakable' in the sense of being" "highlighted as being especially appropriate for text-to-speech conversion. Other" "sections of a page may also be usefully spoken in particular circumstances; the 'speakable'" "property serves to indicate the parts most likely to be generally useful for speech.The" "*speakable* property can be repeated an arbitrary number of times, with three kinds" "of possible 'content-locator' values:1.) *id-value* URL references - uses *id-value*" "of an element in the page being annotated. The simplest use of *speakable* has (potentially" "relative) URL values, referencing identified sections of the document concerned.2.)" "CSS Selectors - addresses content in the annotated page, e.g. via class attribute. Use" "the [[cssSelector]] property.3.) XPaths - addresses content via XPaths (assuming" "an XML view of the content). Use the [[xpath]] property.For more sophisticated markup" "of speakable sections beyond simple ID references, either CSS selectors or XPath expressions" "to pick out document section(s) as speakable. For thiswe define a supporting type, [[SpeakableSpecification]]" "which is defined to be a possible value of the *speakable* property.", ) primaryImageOfPage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the main image on the page.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/QAPage.py
0.934787
0.337777
QAPage.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Observation(BaseModel): """Instances of the class [[Observation]] are used to specify observations about an entity (which may or may not be an instance of a [[StatisticalPopulation]]), at a particular time. The principal properties of an [[Observation]] are [[observedNode]], [[measuredProperty]], [[measuredValue]] (or [[median]], etc.) and [[observationDate]] ([[measuredProperty]] properties can, but need not always, be W3C RDF Data Cube "measure properties", as in the [lifeExpectancy example](https://www.w3.org/TR/vocab-data-cube/#dsd-example)).See also [[StatisticalPopulation]], and the [data and datasets](/docs/data-and-datasets.html) overview for more details. References: https://schema.org/Observation Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. observedNode: (Optional[Union[List[Union[str, Any]], str, Any]]): The observedNode of an [[Observation]], often a [[StatisticalPopulation]]. marginOfError: (Optional[Union[List[Union[str, Any]], str, Any]]): A marginOfError for an [[Observation]]. measuredValue: (Optional[Union[List[Union[str, Any]], str, Any]]): The measuredValue of an [[Observation]]. observationDate: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The observationDate of an [[Observation]]. measuredProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): The measuredProperty of an [[Observation]], either a schema.org property, a property from other RDF-compatible systems, e.g. W3C RDF Data Cube, or schema.org extensions such as [GS1's](https://www.gs1.org/voc/?show=properties). """ type_: str = Field(default="Observation", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) observedNode: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The observedNode of an [[Observation]], often a [[StatisticalPopulation]].", ) marginOfError: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A marginOfError for an [[Observation]].", ) measuredValue: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The measuredValue of an [[Observation]].", ) observationDate: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The observationDate of an [[Observation]].", ) measuredProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The measuredProperty of an [[Observation]], either a schema.org property, a property" "from other RDF-compatible systems, e.g. W3C RDF Data Cube, or schema.org extensions" "such as [GS1's](https://www.gs1.org/voc/?show=properties).", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Observation.py
0.957863
0.616012
Observation.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class UserPlays(BaseModel): """UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]]. References: https://schema.org/UserPlays Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. performer: (Optional[Union[List[Union[str, Any]], str, Any]]): A performer at the event&#x2014;for example, a presenter, musician, musical group or actor. eventAttendanceMode: (Optional[Union[List[Union[str, Any]], str, Any]]): The eventAttendanceMode of an event indicates whether it occurs online, offline, or a mix. workFeatured: (Optional[Union[List[Union[str, Any]], str, Any]]): A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent). remainingAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The number of attendee places for an event that remain unallocated. actor: (Optional[Union[List[Union[str, Any]], str, Any]]): An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip. doorTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The time admission will commence. previousStartDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated. recordedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The CreativeWork that captured all or part of this Event. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. superEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent. eventSchedule: (Optional[Union[List[Union[str, Any]], str, Any]]): Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable to share a schedule for a series of repeating events rather than data on the individual events themselves. For example, a website or application might prefer to publish a schedule for a weekly gym class rather than provide data on every event. A schedule could be processed by applications to add forthcoming events to a calendar. An [[Event]] that is associated with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]] properties. These are instead defined within the associated [[Schedule]], this avoids any ambiguity for clients using the data. The property might have repeated values to specify different schedules, e.g. for different months or seasons. maximumVirtualAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]). attendees: (Optional[Union[List[Union[str, Any]], str, Any]]): A person attending the event. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. eventStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. workPerformed: (Optional[Union[List[Union[str, Any]], str, Any]]): A work performed in some event, for example a play performed in a TheaterEvent. duration: (Optional[Union[List[Union[str, Any]], str, Any]]): The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601). about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. composer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who wrote a composition, or who is the composer of a work performed at some event. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. subEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. attendee: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization attending the event. subEvents: (Optional[Union[List[Union[str, Any]], str, Any]]): Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference. performers: (Optional[Union[List[Union[str, Any]], str, Any]]): The main performer or performers of the event&#x2014;for example, a presenter, musician, or actor. maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. maximumPhysicalAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]] is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]). director: (Optional[Union[List[Union[str, Any]], str, Any]]): A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. startDate: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. endDate: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)). location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. organizer: (Optional[Union[List[Union[str, Any]], str, Any]]): An organizer of an Event. """ type_: str = Field(default="UserPlays", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) performer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A performer at the event&#x2014;for example, a presenter, musician, musical group" "or actor.", ) eventAttendanceMode: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The eventAttendanceMode of an event indicates whether it occurs online, offline, or" "a mix.", ) workFeatured: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties" "are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).", ) remainingAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The number of attendee places for an event that remain unallocated.", ) actor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An actor, e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated" "with individual items or with a series, episode, clip.", ) doorTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The time admission will commence.", ) previousStartDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Used in conjunction with eventStatus for rescheduled or cancelled events. This property" "contains the previously scheduled start date. For rescheduled events, the startDate" "property should be used for the newly scheduled start date. In the (rare) case of an event" "that has been postponed and rescheduled multiple times, this field may be repeated.", ) recordedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The CreativeWork that captured all or part of this Event.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) superEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An event that this event is a part of. For example, a collection of individual music performances" "might each have a music festival as their superEvent.", ) eventSchedule: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Associates an [[Event]] with a [[Schedule]]. There are circumstances where it is preferable" "to share a schedule for a series of repeating events rather than data on the individual" "events themselves. For example, a website or application might prefer to publish a schedule" "for a weekly gym class rather than provide data on every event. A schedule could be processed" "by applications to add forthcoming events to a calendar. An [[Event]] that is associated" "with a [[Schedule]] using this property should not have [[startDate]] or [[endDate]]" "properties. These are instead defined within the associated [[Schedule]], this avoids" "any ambiguity for clients using the data. The property might have repeated values to" "specify different schedules, e.g. for different months or seasons.", ) maximumVirtualAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]]" "is [[OnlineEventAttendanceMode]] (or the online aspects, in the case of a [[MixedEventAttendanceMode]]).", ) attendees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person attending the event.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) eventStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An eventStatus of an event represents its status; particularly useful when an event" "is cancelled or rescheduled.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) workPerformed: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A work performed in some event, for example a play performed in a TheaterEvent.", ) duration: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) composer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who wrote a composition, or who is the composer of a work performed" "at some event.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) subEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Event that is part of this event. For example, a conference event includes many presentations," "each of which is a subEvent of the conference.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) attendee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization attending the event.", ) subEvents: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Events that are a part of this event. For example, a conference event includes many presentations," "each subEvents of the conference.", ) performers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The main performer or performers of the event&#x2014;for example, a presenter, musician," "or actor.", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) maximumPhysicalAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The maximum physical attendee capacity of an [[Event]] whose [[eventAttendanceMode]]" "is [[OfflineEventAttendanceMode]] (or the offline aspects, in the case of a [[MixedEventAttendanceMode]]).", ) director: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors" "can be associated with individual items or with a series, episode, clip.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) startDate: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) endDate: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601)).", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) organizer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An organizer of an Event.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/UserPlays.py
0.921627
0.306059
UserPlays.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class AllocateAction(BaseModel): """The act of organizing tasks/objects/events by associating resources to it. References: https://schema.org/AllocateAction Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. endTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. E.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. startTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. E.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. result: (Optional[Union[List[Union[str, Any]], str, Any]]): The result produced in the action. E.g. John wrote *a book*. actionStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the current disposition of the Action. agent: (Optional[Union[List[Union[str, Any]], str, Any]]): The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote a book. instrument: (Optional[Union[List[Union[str, Any]], str, Any]]): The object that helped the agent perform the action. E.g. John wrote a book with *a pen*. object: (Optional[Union[List[Union[str, Any]], str, Any]]): The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). E.g. John read *a book*. error: (Optional[Union[List[Union[str, Any]], str, Any]]): For failed actions, more information on the cause of the failure. target: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a target EntryPoint, or url, for an Action. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. participant: (Optional[Union[List[Union[str, Any]], str, Any]]): Other co-agents that participated in the action indirectly. E.g. John wrote a book with *Steve*. """ type_: str = Field(default="AllocateAction", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) endTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation)," "the time that it is expected to end. For actions that span a period of time, when the action" "was performed. E.g. John wrote a book from January to *December*. For media, including" "audio and video, it's the time offset of the end of a clip within a larger file.Note that" "Event uses startDate/endDate instead of startTime/endTime, even when describing" "dates with times. This situation may be clarified in future revisions.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) startTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation)," "the time that it is expected to start. For actions that span a period of time, when the action" "was performed. E.g. John wrote a book from *January* to December. For media, including" "audio and video, it's the time offset of the start of a clip within a larger file.Note that" "Event uses startDate/endDate instead of startTime/endTime, even when describing" "dates with times. This situation may be clarified in future revisions.", ) result: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The result produced in the action. E.g. John wrote *a book*.", ) actionStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the current disposition of the Action.", ) agent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote" "a book.", ) instrument: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The object that helped the agent perform the action. E.g. John wrote a book with *a pen*.", ) object: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The object upon which the action is carried out, whose state is kept intact or changed." "Also known as the semantic roles patient, affected or undergoer (which change their" "state) or theme (which doesn't). E.g. John read *a book*.", ) error: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="For failed actions, more information on the cause of the failure.", ) target: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates a target EntryPoint, or url, for an Action.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) participant: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Other co-agents that participated in the action indirectly. E.g. John wrote a book with" "*Steve*.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/AllocateAction.py
0.923538
0.418637
AllocateAction.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class BusTrip(BaseModel): """A trip on a commercial bus line. References: https://schema.org/BusTrip Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. departureTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The expected departure time. itinerary: (Optional[Union[List[Union[str, Any]], str, Any]]): Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is important use [[ItemList]] to specify that order (see examples). provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. partOfTrip: (Optional[Union[List[Union[str, Any]], str, Any]]): Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc. of a multi-day trip. arrivalTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The expected arrival time. subTrip: (Optional[Union[List[Union[str, Any]], str, Any]]): Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a multi-day trip. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. busName: (Union[List[Union[str, Any]], str, Any]): The name of the bus (e.g. Bolt Express). busNumber: (Union[List[Union[str, Any]], str, Any]): The unique identifier for the bus. departureBusStop: (Optional[Union[List[Union[str, Any]], str, Any]]): The stop or station from which the bus departs. arrivalBusStop: (Optional[Union[List[Union[str, Any]], str, Any]]): The stop or station from which the bus arrives. """ type_: str = Field(default="BusTrip", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) departureTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The expected departure time.", ) itinerary: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Destination(s) ( [[Place]] ) that make up a trip. For a trip where destination order is" "important use [[ItemList]] to specify that order (see examples).", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) partOfTrip: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Identifies that this [[Trip]] is a subTrip of another Trip. For example Day 1, Day 2, etc." "of a multi-day trip.", ) arrivalTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The expected arrival time.", ) subTrip: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Identifies a [[Trip]] that is a subTrip of this Trip. For example Day 1, Day 2, etc. of a" "multi-day trip.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) busName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the bus (e.g. Bolt Express).", ) busNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The unique identifier for the bus.", ) departureBusStop: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The stop or station from which the bus departs.", ) arrivalBusStop: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The stop or station from which the bus arrives.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/BusTrip.py
0.941223
0.354266
BusTrip.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class LegalForceStatus(BaseModel): """A list of possible statuses for the legal force of a legislation. References: https://schema.org/LegalForceStatus Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="LegalForceStatus", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/LegalForceStatus.py
0.944523
0.322073
LegalForceStatus.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Geriatric(BaseModel): """A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged. References: https://schema.org/Geriatric Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="Geriatric", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Geriatric.py
0.903756
0.338118
Geriatric.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class PregnancyHealthAspect(BaseModel): """Content discussing pregnancy-related aspects of a health topic. References: https://schema.org/PregnancyHealthAspect Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="PregnancyHealthAspect", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/PregnancyHealthAspect.py
0.938731
0.336249
PregnancyHealthAspect.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Nonprofit501c22(BaseModel): """Nonprofit501c22: Non-profit type referring to Withdrawal Liability Payment Funds. References: https://schema.org/Nonprofit501c22 Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Nonprofit501c22", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Nonprofit501c22.py
0.945261
0.268336
Nonprofit501c22.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ArriveAction(BaseModel): """The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants. References: https://schema.org/ArriveAction Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. endTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. E.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. startTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. E.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.Note that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions. result: (Optional[Union[List[Union[str, Any]], str, Any]]): The result produced in the action. E.g. John wrote *a book*. actionStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the current disposition of the Action. agent: (Optional[Union[List[Union[str, Any]], str, Any]]): The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote a book. instrument: (Optional[Union[List[Union[str, Any]], str, Any]]): The object that helped the agent perform the action. E.g. John wrote a book with *a pen*. object: (Optional[Union[List[Union[str, Any]], str, Any]]): The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). E.g. John read *a book*. error: (Optional[Union[List[Union[str, Any]], str, Any]]): For failed actions, more information on the cause of the failure. target: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a target EntryPoint, or url, for an Action. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. participant: (Optional[Union[List[Union[str, Any]], str, Any]]): Other co-agents that participated in the action indirectly. E.g. John wrote a book with *Steve*. toLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): A sub property of location. The final location of the object or the agent after the action. fromLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): A sub property of location. The original location of the object or the agent before the action. """ type_: str = Field(default="ArriveAction", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) endTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation)," "the time that it is expected to end. For actions that span a period of time, when the action" "was performed. E.g. John wrote a book from January to *December*. For media, including" "audio and video, it's the time offset of the end of a clip within a larger file.Note that" "Event uses startDate/endDate instead of startTime/endTime, even when describing" "dates with times. This situation may be clarified in future revisions.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) startTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation)," "the time that it is expected to start. For actions that span a period of time, when the action" "was performed. E.g. John wrote a book from *January* to December. For media, including" "audio and video, it's the time offset of the start of a clip within a larger file.Note that" "Event uses startDate/endDate instead of startTime/endTime, even when describing" "dates with times. This situation may be clarified in future revisions.", ) result: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The result produced in the action. E.g. John wrote *a book*.", ) actionStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the current disposition of the Action.", ) agent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The direct performer or driver of the action (animate or inanimate). E.g. *John* wrote" "a book.", ) instrument: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The object that helped the agent perform the action. E.g. John wrote a book with *a pen*.", ) object: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The object upon which the action is carried out, whose state is kept intact or changed." "Also known as the semantic roles patient, affected or undergoer (which change their" "state) or theme (which doesn't). E.g. John read *a book*.", ) error: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="For failed actions, more information on the cause of the failure.", ) target: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates a target EntryPoint, or url, for an Action.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) participant: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Other co-agents that participated in the action indirectly. E.g. John wrote a book with" "*Steve*.", ) toLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A sub property of location. The final location of the object or the agent after the action.", ) fromLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A sub property of location. The original location of the object or the agent before the" "action.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ArriveAction.py
0.931929
0.450722
ArriveAction.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class DamagedCondition(BaseModel): """Indicates that the item is damaged. References: https://schema.org/DamagedCondition Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="DamagedCondition", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/DamagedCondition.py
0.944357
0.310734
DamagedCondition.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class DistanceFee(BaseModel): """Represents the distance fee (e.g., price per km or mile) part of the total price for an offered product, for example a car rental. References: https://schema.org/DistanceFee Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="DistanceFee", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/DistanceFee.py
0.948905
0.363562
DistanceFee.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Notary(BaseModel): """A notary. References: https://schema.org/Notary Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="Notary", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Notary.py
0.883977
0.334834
Notary.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class RiverBodyOfWater(BaseModel): """A river (for example, the broad majestic Shannon). References: https://schema.org/RiverBodyOfWater Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). """ type_: str = Field(default="RiverBodyOfWater", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/RiverBodyOfWater.py
0.936822
0.717575
RiverBodyOfWater.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class TireShop(BaseModel): """A tire shop. References: https://schema.org/TireShop Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="TireShop", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/TireShop.py
0.874238
0.298715
TireShop.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Nonprofit501c7(BaseModel): """Nonprofit501c7: Non-profit type referring to Social and Recreational Clubs. References: https://schema.org/Nonprofit501c7 Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Nonprofit501c7", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Nonprofit501c7.py
0.944893
0.271384
Nonprofit501c7.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Winery(BaseModel): """A winery. References: https://schema.org/Winery Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. starRating: (Optional[Union[List[Union[str, Any]], str, Any]]): An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars). servesCuisine: (Union[List[Union[str, Any]], str, Any]): The cuisine of the restaurant. acceptsReservations: (Union[List[Union[str, StrictBool, AnyUrl, Any]], str, StrictBool, AnyUrl, Any]): Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings ```Yes``` or ```No```. menu: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Either the actual menu as a structured representation, as text, or a URL of the menu. hasMenu: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Either the actual menu as a structured representation, as text, or a URL of the menu. """ type_: str = Field(default="Winery", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", ) starRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An official rating for a lodging business or food establishment, e.g. from national" "associations or standards bodies. Use the author property to indicate the rating organization," "e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).", ) servesCuisine: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The cuisine of the restaurant.", ) acceptsReservations: Union[ List[Union[str, StrictBool, AnyUrl, Any]], str, StrictBool, AnyUrl, Any ] = Field( default=None, description="Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean," "an URL at which reservations can be made or (for backwards compatibility) the strings" "```Yes``` or ```No```.", ) menu: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Either the actual menu as a structured representation, as text, or a URL of the menu.", ) hasMenu: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Either the actual menu as a structured representation, as text, or a URL of the menu.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Winery.py
0.884526
0.336685
Winery.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class EndorsementRating(BaseModel): """An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a "critic's pick" blog, a"Like" or "+1" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively bysome [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]].An [[EndorsementRating]] may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive,endorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive. References: https://schema.org/EndorsementRating Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. reviewAspect: (Union[List[Union[str, Any]], str, Any]): This Review or Rating is relevant to this part or facet of the itemReviewed. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. ratingExplanation: (Union[List[Union[str, Any]], str, Any]): A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with "fact check" markup using [[ClaimReview]]. bestRating: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed. ratingValue: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The rating for the content.Usage guidelines:* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. worstRating: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed. """ type_: str = Field(default="EndorsementRating", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) reviewAspect: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="This Review or Rating is relevant to this part or facet of the itemReviewed.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) ratingExplanation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A short explanation (e.g. one to two sentences) providing background context and other" "information that led to the conclusion expressed in the rating. This is particularly" 'applicable to ratings associated with "fact check" markup using [[ClaimReview]].', ) bestRating: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.", ) ratingValue: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The rating for the content.Usage guidelines:* Use values from 0123456789 (Unicode" "'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar" "Unicode symbols.* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate" "a decimal point. Avoid using these symbols as a readability separator.", ) worstRating: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/EndorsementRating.py
0.943007
0.468243
EndorsementRating.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class FoodEstablishment(BaseModel): """A food-related business. References: https://schema.org/FoodEstablishment Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. starRating: (Optional[Union[List[Union[str, Any]], str, Any]]): An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars). servesCuisine: (Union[List[Union[str, Any]], str, Any]): The cuisine of the restaurant. acceptsReservations: (Union[List[Union[str, StrictBool, AnyUrl, Any]], str, StrictBool, AnyUrl, Any]): Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings ```Yes``` or ```No```. menu: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Either the actual menu as a structured representation, as text, or a URL of the menu. hasMenu: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Either the actual menu as a structured representation, as text, or a URL of the menu. """ type_: str = Field(default="FoodEstablishment", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", ) starRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An official rating for a lodging business or food establishment, e.g. from national" "associations or standards bodies. Use the author property to indicate the rating organization," "e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).", ) servesCuisine: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The cuisine of the restaurant.", ) acceptsReservations: Union[ List[Union[str, StrictBool, AnyUrl, Any]], str, StrictBool, AnyUrl, Any ] = Field( default=None, description="Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean," "an URL at which reservations can be made or (for backwards compatibility) the strings" "```Yes``` or ```No```.", ) menu: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Either the actual menu as a structured representation, as text, or a URL of the menu.", ) hasMenu: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Either the actual menu as a structured representation, as text, or a URL of the menu.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/FoodEstablishment.py
0.844216
0.355299
FoodEstablishment.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Rating(BaseModel): """A rating is an evaluation on a numeric scale, such as 1 to 5 stars. References: https://schema.org/Rating Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. reviewAspect: (Union[List[Union[str, Any]], str, Any]): This Review or Rating is relevant to this part or facet of the itemReviewed. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. ratingExplanation: (Union[List[Union[str, Any]], str, Any]): A short explanation (e.g. one to two sentences) providing background context and other information that led to the conclusion expressed in the rating. This is particularly applicable to ratings associated with "fact check" markup using [[ClaimReview]]. bestRating: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed. ratingValue: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The rating for the content.Usage guidelines:* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar Unicode symbols.* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator. worstRating: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed. """ type_: str = Field(default="Rating", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) reviewAspect: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="This Review or Rating is relevant to this part or facet of the itemReviewed.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) ratingExplanation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A short explanation (e.g. one to two sentences) providing background context and other" "information that led to the conclusion expressed in the rating. This is particularly" 'applicable to ratings associated with "fact check" markup using [[ClaimReview]].', ) bestRating: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.", ) ratingValue: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The rating for the content.Usage guidelines:* Use values from 0123456789 (Unicode" "'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similar" "Unicode symbols.* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate" "a decimal point. Avoid using these symbols as a readability separator.", ) worstRating: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Rating.py
0.948466
0.407982
Rating.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class PostalAddress(BaseModel): """The mailing address. References: https://schema.org/PostalAddress Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. availableLanguage: (Union[List[Union[str, Any]], str, Any]): A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]. productSupported: (Union[List[Union[str, Any]], str, Any]): The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. "iPhone") or a general category of products or services (e.g. "smartphones"). areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. contactOption: (Optional[Union[List[Union[str, Any]], str, Any]]): An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers). email: (Union[List[Union[str, Any]], str, Any]): Email address. contactType: (Union[List[Union[str, Any]], str, Any]): A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point. hoursAvailable: (Optional[Union[List[Union[str, Any]], str, Any]]): The hours during which this service or contact is available. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. addressLocality: (Union[List[Union[str, Any]], str, Any]): The locality in which the street address is, and which is in the region. For example, Mountain View. postOfficeBoxNumber: (Union[List[Union[str, Any]], str, Any]): The post office box number for PO box addresses. streetAddress: (Union[List[Union[str, Any]], str, Any]): The street address. For example, 1600 Amphitheatre Pkwy. addressCountry: (Union[List[Union[str, Any]], str, Any]): The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1). postalCode: (Union[List[Union[str, Any]], str, Any]): The postal code. For example, 94043. addressRegion: (Union[List[Union[str, Any]], str, Any]): The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country). """ type_: str = Field(default="PostalAddress", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) availableLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A language someone may use with or at the item, service or place. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[inLanguage]].", ) productSupported: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The product or service this support contact point is related to (such as product support" 'for a particular product line). This can be a specific product or product line (e.g. "iPhone")' 'or a general category of products or services (e.g. "smartphones").', ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) contactOption: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An option available on this contact point (e.g. a toll-free number or support for hearing-impaired" "callers).", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A person or organization can have different contact points, for different purposes." "For example, a sales contact point, a PR contact point and so on. This property is used" "to specify the kind of contact point.", ) hoursAvailable: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The hours during which this service or contact is available.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) addressLocality: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The locality in which the street address is, and which is in the region. For example, Mountain" "View.", ) postOfficeBoxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The post office box number for PO box addresses.", ) streetAddress: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The street address. For example, 1600 Amphitheatre Pkwy.", ) addressCountry: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2" "country code](http://en.wikipedia.org/wiki/ISO_3166-1).", ) postalCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The postal code. For example, 94043.", ) addressRegion: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The region in which the locality is, and which is in the country. For example, California" "or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country).", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/PostalAddress.py
0.930365
0.361841
PostalAddress.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ComicIssue(BaseModel): """Individual comic issues are serially published as part of a larger series. For the sake of consistency, even one-shot issues belong to a series comprised of a single issue. All comic issues can be uniquely identified by: the combination of the name and volume number of the series to which the issue belongs; the issue number; and the variant description of the issue (if any). References: https://schema.org/ComicIssue Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. pageEnd: (Union[List[Union[str, int, Any]], str, int, Any]): The page on which the work ends; for example "138" or "xvi". issueNumber: (Union[List[Union[str, int, Any]], str, int, Any]): Identifies the issue of publication; for example, "iii" or "2". pagination: (Union[List[Union[str, Any]], str, Any]): Any description of pages that is not separated into pageStart and pageEnd; for example, "1-6, 9, 55" or "10-12, 46-49". pageStart: (Union[List[Union[str, int, Any]], str, int, Any]): The page on which the work starts; for example "135" or "xiii". inker: (Optional[Union[List[Union[str, Any]], str, Any]]): The individual who traces over the pencil drawings in ink after pencils are complete. letterer: (Optional[Union[List[Union[str, Any]], str, Any]]): The individual who adds lettering, including speech balloons and sound effects, to artwork. penciler: (Optional[Union[List[Union[str, Any]], str, Any]]): The individual who draws the primary narrative artwork. variantCover: (Union[List[Union[str, Any]], str, Any]): A description of the variant cover for the issue, if the issue is a variant printing. For example, "Bryan Hitch Variant Cover" or "2nd Printing Variant". artist: (Optional[Union[List[Union[str, Any]], str, Any]]): The primary artist for a work in a medium other than pencils or digital line art--for example, if the primary artwork is done in watercolors or digital paints. colorist: (Optional[Union[List[Union[str, Any]], str, Any]]): The individual who adds color to inked drawings. """ type_: str = Field(default="ComicIssue", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) pageEnd: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description='The page on which the work ends; for example "138" or "xvi".', ) issueNumber: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description='Identifies the issue of publication; for example, "iii" or "2".', ) pagination: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Any description of pages that is not separated into pageStart and pageEnd; for example," '"1-6, 9, 55" or "10-12, 46-49".', ) pageStart: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description='The page on which the work starts; for example "135" or "xiii".', ) inker: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The individual who traces over the pencil drawings in ink after pencils are complete.", ) letterer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The individual who adds lettering, including speech balloons and sound effects, to" "artwork.", ) penciler: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The individual who draws the primary narrative artwork.", ) variantCover: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the variant cover for the issue, if the issue is a variant printing. For" 'example, "Bryan Hitch Variant Cover" or "2nd Printing Variant".', ) artist: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The primary artist for a work in a medium other than pencils or digital line art--for example," "if the primary artwork is done in watercolors or digital paints.", ) colorist: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The individual who adds color to inked drawings.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ComicIssue.py
0.911983
0.389372
ComicIssue.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class CityHall(BaseModel): """A city hall. References: https://schema.org/CityHall Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="CityHall", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/CityHall.py
0.944498
0.521532
CityHall.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class WearableSizeSystemMX(BaseModel): """Mexican size system for wearables. References: https://schema.org/WearableSizeSystemMX Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="WearableSizeSystemMX", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/WearableSizeSystemMX.py
0.939582
0.319121
WearableSizeSystemMX.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class ClaimReview(BaseModel): """A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed). References: https://schema.org/ClaimReview Note: Model Depth 4 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. reviewBody: (Union[List[Union[str, Any]], str, Any]): The actual body of the review. associatedMediaReview: (Optional[Union[List[Union[str, Any]], str, Any]]): An associated [[MediaReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]]. associatedReview: (Optional[Union[List[Union[str, Any]], str, Any]]): An associated [[Review]]. positiveNotes: (Union[List[Union[str, Any]], str, Any]): Provides positive considerations regarding something, for example product highlights or (alongside [[negativeNotes]]) pro/con lists for reviews.In the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described.The property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most positive is at the beginning of the list). reviewRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating``` applies to rating given by the review. The [[aggregateRating]] property applies to the review itself, as a creative work. reviewAspect: (Union[List[Union[str, Any]], str, Any]): This Review or Rating is relevant to this part or facet of the itemReviewed. itemReviewed: (Optional[Union[List[Union[str, Any]], str, Any]]): The item that is being reviewed/rated. negativeNotes: (Union[List[Union[str, Any]], str, Any]): Provides negative considerations regarding something, most typically in pro/con lists for reviews (alongside [[positiveNotes]]). For symmetry In the case of a [[Review]], the property describes the [[itemReviewed]] from the perspective of the review; in the case of a [[Product]], the product itself is being described. Since product descriptions tend to emphasise positive claims, it may be relatively unusual to find [[negativeNotes]] used in this way. Nevertheless for the sake of symmetry, [[negativeNotes]] can be used on [[Product]].The property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most negative is at the beginning of the list). associatedClaimReview: (Optional[Union[List[Union[str, Any]], str, Any]]): An associated [[ClaimReview]], related by specific common content, topic or claim. The expectation is that this property would be most typically used in cases where a single activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]] would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be used on [[MediaReview]]. claimReviewed: (Union[List[Union[str, Any]], str, Any]): A short summary of the specific claims reviewed in a ClaimReview. """ type_: str = Field(default="ClaimReview", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) reviewBody: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The actual body of the review.", ) associatedMediaReview: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An associated [[MediaReview]], related by specific common content, topic or claim." "The expectation is that this property would be most typically used in cases where a single" "activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]]" "would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be" "used on [[MediaReview]].", ) associatedReview: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An associated [[Review]].", ) positiveNotes: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Provides positive considerations regarding something, for example product highlights" "or (alongside [[negativeNotes]]) pro/con lists for reviews.In the case of a [[Review]]," "the property describes the [[itemReviewed]] from the perspective of the review; in" "the case of a [[Product]], the product itself is being described.The property values" "can be expressed either as unstructured text (repeated as necessary), or if ordered," "as a list (in which case the most positive is at the beginning of the list).", ) reviewRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The rating given in this review. Note that reviews can themselves be rated. The ```reviewRating```" "applies to rating given by the review. The [[aggregateRating]] property applies to" "the review itself, as a creative work.", ) reviewAspect: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="This Review or Rating is relevant to this part or facet of the itemReviewed.", ) itemReviewed: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The item that is being reviewed/rated.", ) negativeNotes: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Provides negative considerations regarding something, most typically in pro/con" "lists for reviews (alongside [[positiveNotes]]). For symmetry In the case of a [[Review]]," "the property describes the [[itemReviewed]] from the perspective of the review; in" "the case of a [[Product]], the product itself is being described. Since product descriptions" "tend to emphasise positive claims, it may be relatively unusual to find [[negativeNotes]]" "used in this way. Nevertheless for the sake of symmetry, [[negativeNotes]] can be used" "on [[Product]].The property values can be expressed either as unstructured text (repeated" "as necessary), or if ordered, as a list (in which case the most negative is at the beginning" "of the list).", ) associatedClaimReview: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An associated [[ClaimReview]], related by specific common content, topic or claim." "The expectation is that this property would be most typically used in cases where a single" "activity is conducting both claim reviews and media reviews, in which case [[relatedMediaReview]]" "would commonly be used on a [[ClaimReview]], while [[relatedClaimReview]] would be" "used on [[MediaReview]].", ) claimReviewed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A short summary of the specific claims reviewed in a ClaimReview.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/ClaimReview.py
0.924192
0.337968
ClaimReview.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Claim(BaseModel): """A [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews. Beyond [[ClaimReview]], the Claim type can be associated with related creative works - for example a [[ScholarlyArticle]] or [[Question]] might be [[about]] some [[Claim]]. At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration. References: https://schema.org/Claim Note: Model Depth 3 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. workTranslation: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalLevel: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. associatedMedia: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for encoding. exampleOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): A creative work that this work is an example/instance/realization/derivation of. releasedEvent: (Optional[Union[List[Union[str, Any]], str, Any]]): The place and time the release was issued, expressed as a PublicationEvent. version: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The version of the CreativeWork embodied by a specified resource. locationCreated: (Optional[Union[List[Union[str, Any]], str, Any]]): The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork. acquireLicensePage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates a page documenting how licenses can be purchased or otherwise acquired, for the current item. thumbnailUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A thumbnail image relevant to the Thing. provider: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. expires: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date the content expires and is no longer useful or available. For example a [[VideoObject]] or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]] fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date. contentLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The location depicted or described in the content. For example, the location in a photograph or painting. educationalUse: (Union[List[Union[str, Any]], str, Any]): The purpose of a work in the context of education; for example, 'assignment', 'group work'. copyrightHolder: (Optional[Union[List[Union[str, Any]], str, Any]]): The party holding the legal copyright to the CreativeWork. accessibilityControl: (Union[List[Union[str, Any]], str, Any]): 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). maintainer: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. educationalAlignment: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. spatial: (Optional[Union[List[Union[str, Any]], str, Any]]): The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are not known to be appropriate. publisher: (Optional[Union[List[Union[str, Any]], str, Any]]): The publisher of the creative work. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. assesses: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to assess the competency or learning outcome defined by the referenced term. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. isBasedOn: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A resource from which this work is derived or from which it is a modification or adaption. mentions: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. contributor: (Optional[Union[List[Union[str, Any]], str, Any]]): A secondary contributor to the CreativeWork or Event. license: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this content, typically indicated by URL. citation: (Union[List[Union[str, Any]], str, Any]): A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. accessibilitySummary: (Union[List[Union[str, Any]], str, Any]): 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." award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. commentCount: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): 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. temporalCoverage: (Union[List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl]): 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. dateCreated: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was created or the item was added to a DataFeed. discussionUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A link to the page containing the comments of the CreativeWork. copyrightNotice: (Union[List[Union[str, Any]], str, Any]): Text of a notice appropriate for describing the copyright aspects of this Creative Work, ideally indicating the owner of the copyright for the Work. learningResourceType: (Union[List[Union[str, Any]], str, Any]): The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. accessModeSufficient: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. conditionsOfAccess: (Union[List[Union[str, Any]], str, Any]): 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 ". interactivityType: (Union[List[Union[str, Any]], str, Any]): The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'. abstract: (Union[List[Union[str, Any]], str, Any]): An abstract is a short description that summarizes a [[CreativeWork]]. fileFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of the content, e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry. interpretedAsClaim: (Optional[Union[List[Union[str, Any]], str, Any]]): Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]]. text: (Union[List[Union[str, Any]], str, Any]): The textual content of this CreativeWork. archivedAt: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. alternativeHeadline: (Union[List[Union[str, Any]], str, Any]): A secondary title of the CreativeWork. creditText: (Union[List[Union[str, Any]], str, Any]): Text that can be used to credit person(s) and/or organization(s) associated with a published Creative Work. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. workExample: (Optional[Union[List[Union[str, Any]], str, Any]]): Example/instance/realization/derivation of the concept of this creative work. E.g. the paperback edition, first edition, or e-book. about: (Optional[Union[List[Union[str, Any]], str, Any]]): The subject matter of the content. encodings: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. video: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded video object. isPartOf: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of. pattern: (Union[List[Union[str, Any]], str, Any]): 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. editor: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person who edited the CreativeWork. dateModified: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed. translationOfWork: (Optional[Union[List[Union[str, Any]], str, Any]]): The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the Origin of Species”. creativeWorkStatus: (Union[List[Union[str, Any]], str, Any]): 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. isBasedOnUrl: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. isFamilyFriendly: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether this content is family friendly. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. author: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. contentReferenceTime: (Optional[Union[List[Union[datetime, str, Any]], datetime, str, Any]]): The specific time described by a creative work, for works (e.g. articles, video objects etc.) that emphasise a particular moment within an Event. correction: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]], textually or in another document. sdDatePublished: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): Indicates the date on which the current structured data was generated / published. Typically used alongside [[sdPublisher]] comment: (Optional[Union[List[Union[str, Any]], str, Any]]): Comments, typically from users. countryOfOrigin: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. timeRequired: (Optional[Union[List[Union[str, Any]], str, Any]]): Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'. typicalAgeRange: (Union[List[Union[str, Any]], str, Any]): The typical expected age range, e.g. '7-9', '11-'. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. producer: (Optional[Union[List[Union[str, Any]], str, Any]]): The person or organization who produced the work (e.g. music album, movie, TV/radio series etc.). schemaVersion: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. audience: (Optional[Union[List[Union[str, Any]], str, Any]]): An intended audience, i.e. a group for whom something was created. encoding: (Optional[Union[List[Union[str, Any]], str, Any]]): A media object that encodes this CreativeWork. This property is a synonym for associatedMedia. publisherImprint: (Optional[Union[List[Union[str, Any]], str, Any]]): The publishing division which published the comic. accessibilityAPI: (Union[List[Union[str, Any]], str, Any]): 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). sdPublisher: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. audio: (Optional[Union[List[Union[str, Any]], str, Any]]): An embedded audio object. accessibilityFeature: (Union[List[Union[str, Any]], str, Any]): 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). spatialCoverage: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. accessMode: (Union[List[Union[str, Any]], str, Any]): 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). editEIDR: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. usageInfo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. position: (Union[List[Union[str, int, Any]], str, int, Any]): The position of an item in a series or sequence of items. encodingFormat: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. copyrightYear: (Optional[Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]]): The year during which the claimed copyright for the CreativeWork was first asserted. mainEntity: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the primary entity described in some page or other CreativeWork. creator: (Optional[Union[List[Union[str, Any]], str, Any]]): The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork. teaches: (Union[List[Union[str, Any]], str, Any]): The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term. temporal: (Union[List[Union[datetime, str, Any]], datetime, str, Any]): The "temporal" property can be used in cases where more specific properties(e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]]) are not known to be appropriate. size: (Union[List[Union[str, Any]], str, Any]): 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. translator: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. accountablePerson: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies the Person that is legally accountable for the CreativeWork. accessibilityHazard: (Union[List[Union[str, Any]], str, Any]): 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). contentRating: (Union[List[Union[str, Any]], str, Any]): Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'. recordedAt: (Optional[Union[List[Union[str, Any]], str, Any]]): The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event. publication: (Optional[Union[List[Union[str, Any]], str, Any]]): A publication event associated with the item. sdLicense: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A license document that applies to this structured data, typically indicated by URL. headline: (Union[List[Union[str, Any]], str, Any]): Headline of the article. materialExtent: (Union[List[Union[str, Any]], str, Any]): The quantity of the materials being described or an expression of the physical space they occupy. inLanguage: (Union[List[Union[str, Any]], str, Any]): The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]. material: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): A material that something is made from, e.g. leather, wool, cotton, paper. datePublished: (Optional[Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date]]): Date of first broadcast/publication. offers: (Optional[Union[List[Union[str, Any]], str, Any]]): An offer to provide this item&#x2014;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. hasPart: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense). sourceOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The Organization on whose behalf the creator was working. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. character: (Optional[Union[List[Union[str, Any]], str, Any]]): Fictional person connected with a creative work. claimInterpreter: (Optional[Union[List[Union[str, Any]], str, Any]]): For a [[Claim]] interpreted from [[MediaObject]] content sed to indicate a claim contained, implied or refined from the content of a [[MediaObject]]. appearance: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an occurrence of a [[Claim]] in some [[CreativeWork]]. firstAppearance: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates the first known occurrence of a [[Claim]] in some [[CreativeWork]]. """ type_: str = Field(default="Claim", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) workTranslation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalLevel: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) associatedMedia: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for encoding.", ) exampleOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A creative work that this work is an example/instance/realization/derivation of.", ) releasedEvent: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place and time the release was issued, expressed as a PublicationEvent.", ) version: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The version of the CreativeWork embodied by a specified resource.", ) locationCreated: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location where the CreativeWork was created, which may not be the same as the location" "depicted in the CreativeWork.", ) acquireLicensePage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="Indicates a page documenting how licenses can be purchased or otherwise acquired, for" "the current item.", ) thumbnailUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A thumbnail image relevant to the Thing.", ) provider: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) expires: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date the content expires and is no longer useful or available. For example a [[VideoObject]]" "or [[NewsArticle]] whose availability or relevance is time-limited, or a [[ClaimReview]]" "fact check whose publisher wants to indicate that it may no longer be relevant (or helpful" "to highlight) after some date.", ) contentLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The location depicted or described in the content. For example, the location in a photograph" "or painting.", ) educationalUse: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The purpose of a work in the context of education; for example, 'assignment', 'group" "work'.", ) copyrightHolder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The party holding the legal copyright to the CreativeWork.", ) accessibilityControl: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) maintainer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) educationalAlignment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) spatial: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description='The "spatial" property can be used in cases when more specific properties(e.g. [[locationCreated]],' "[[spatialCoverage]], [[contentLocation]]) are not known to be appropriate.", ) publisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publisher of the creative work.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) assesses: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to assess the competency or learning outcome defined" "by the referenced term.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) isBasedOn: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A resource from which this work is derived or from which it is a modification or adaption.", ) mentions: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates that the CreativeWork contains a reference to, but is not necessarily about" "a concept.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) contributor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A secondary contributor to the CreativeWork or Event.", ) license: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this content, typically indicated by URL.", ) citation: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A citation or reference to another creative work, such as another publication, web page," "scholarly article, etc.", ) accessibilitySummary: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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."', ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) commentCount: Optional[Union[List[Union[str, int, Any]], str, int, Any]] = Field( default=None, description="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.", ) temporalCoverage: Union[ List[Union[datetime, str, Any, AnyUrl]], datetime, str, Any, AnyUrl ] = Field( default=None, description="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.", ) dateCreated: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was created or the item was added to a DataFeed.", ) discussionUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="A link to the page containing the comments of the CreativeWork.", ) copyrightNotice: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text of a notice appropriate for describing the copyright aspects of this Creative Work," "ideally indicating the owner of the copyright for the Work.", ) learningResourceType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant type or kind characterizing the learning resource. For example, 'presentation'," "'handout'.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) accessModeSufficient: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) conditionsOfAccess: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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 ".', ) interactivityType: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The predominant mode of learning supported by the learning resource. Acceptable values" "are 'active', 'expositive', or 'mixed'.", ) abstract: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An abstract is a short description that summarizes a [[CreativeWork]].", ) fileFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Media type, typically MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml))" "of the content, e.g. application/zip of a SoftwareApplication binary. In cases where" "a CreativeWork has several media type representations, 'encoding' can be used to indicate" "each MediaObject alongside particular fileFormat information. Unregistered or niche" "file formats can be indicated instead via the most appropriate URL, e.g. defining Web" "page or a Wikipedia entry.", ) interpretedAsClaim: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Used to indicate a specific claim contained, implied, translated or refined from the" "content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can" "be indicated using [[claimInterpreter]].", ) text: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The textual content of this CreativeWork.", ) archivedAt: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) alternativeHeadline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A secondary title of the CreativeWork.", ) creditText: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Text that can be used to credit person(s) and/or organization(s) associated with a published" "Creative Work.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) workExample: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Example/instance/realization/derivation of the concept of this creative work. E.g." "the paperback edition, first edition, or e-book.", ) about: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The subject matter of the content.", ) encodings: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) video: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded video object.", ) isPartOf: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is" "part of.", ) pattern: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) editor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person who edited the CreativeWork.", ) dateModified: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="The date on which the CreativeWork was most recently modified or when the item's entry" "was modified within a DataFeed.", ) translationOfWork: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The work that this work has been translated from. E.g. 物种起源 is a translationOf “On the" "Origin of Species”.", ) creativeWorkStatus: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) isBasedOnUrl: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) isFamilyFriendly: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether this content is family friendly.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) author: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) contentReferenceTime: Optional[ Union[List[Union[datetime, str, Any]], datetime, str, Any] ] = Field( default=None, description="The specific time described by a creative work, for works (e.g. articles, video objects" "etc.) that emphasise a particular moment within an Event.", ) correction: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Indicates a correction to a [[CreativeWork]], either via a [[CorrectionComment]]," "textually or in another document.", ) sdDatePublished: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="Indicates the date on which the current structured data was generated / published. Typically" "used alongside [[sdPublisher]]", ) comment: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Comments, typically from users.", ) countryOfOrigin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) timeRequired: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Approximate or typical time it takes to work with or through this learning resource for" "the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", ) typicalAgeRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The typical expected age range, e.g. '7-9', '11-'.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) producer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The person or organization who produced the work (e.g. music album, movie, TV/radio" "series etc.).", ) schemaVersion: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) audience: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An intended audience, i.e. a group for whom something was created.", ) encoding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", ) publisherImprint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The publishing division which published the comic.", ) accessibilityAPI: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) sdPublisher: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) audio: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An embedded audio object.", ) accessibilityFeature: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) spatialCoverage: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) accessMode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) editEIDR: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) usageInfo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) position: Union[List[Union[str, int, Any]], str, int, Any] = Field( default=None, description="The position of an item in a series or sequence of items.", ) encodingFormat: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) copyrightYear: Optional[ Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat, ] ] = Field( default=None, description="The year during which the claimed copyright for the CreativeWork was first asserted.", ) mainEntity: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the primary entity described in some page or other CreativeWork.", ) creator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The creator/author of this CreativeWork. This is the same as the Author property for" "CreativeWork.", ) teaches: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The item being described is intended to help a person learn the competency or learning" "outcome defined by the referenced term.", ) temporal: Union[List[Union[datetime, str, Any]], datetime, str, Any] = Field( default=None, description='The "temporal" property can be used in cases where more specific properties(e.g.' "[[temporalCoverage]], [[dateCreated]], [[dateModified]], [[datePublished]])" "are not known to be appropriate.", ) size: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) translator: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) accountablePerson: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies the Person that is legally accountable for the CreativeWork.", ) accessibilityHazard: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) contentRating: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.", ) recordedAt: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Event where the CreativeWork was recorded. The CreativeWork may capture all or part" "of the event.", ) publication: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A publication event associated with the item.", ) sdLicense: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A license document that applies to this structured data, typically indicated by URL.", ) headline: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Headline of the article.", ) materialExtent: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The quantity of the materials being described or an expression of the physical space" "they occupy.", ) inLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The language of the content or performance or used in an action. Please use one of the language" "codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also" "[[availableLanguage]].", ) material: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="A material that something is made from, e.g. leather, wool, cotton, paper.", ) datePublished: Optional[ Union[List[Union[datetime, str, Any, date]], datetime, str, Any, date] ] = Field( default=None, description="Date of first broadcast/publication.", ) offers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An offer to provide this item&#x2014;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.", ) hasPart: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some" "sense).", ) sourceOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The Organization on whose behalf the creator was working.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) character: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Fictional person connected with a creative work.", ) claimInterpreter: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="For a [[Claim]] interpreted from [[MediaObject]] content sed to indicate a claim contained," "implied or refined from the content of a [[MediaObject]].", ) appearance: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an occurrence of a [[Claim]] in some [[CreativeWork]].", ) firstAppearance: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates the first known occurrence of a [[Claim]] in some [[CreativeWork]].", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Claim.py
0.923091
0.442576
Claim.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Nonprofit501c1(BaseModel): """Nonprofit501c1: Non-profit type referring to Corporations Organized Under Act of Congress, including Federal Credit Unions and National Farm Loan Associations. References: https://schema.org/Nonprofit501c1 Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Nonprofit501c1", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Nonprofit501c1.py
0.945058
0.292141
Nonprofit501c1.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class RoofingContractor(BaseModel): """A roofing contractor. References: https://schema.org/RoofingContractor Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. serviceArea: (Optional[Union[List[Union[str, Any]], str, Any]]): The geographic area where the service is provided. founder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. hasPOS: (Optional[Union[List[Union[str, Any]], str, Any]]): Points-of-Sales operated by the organization or person. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. member: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals. knowsAbout: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. makesOffer: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services offered by the organization or person. ownershipFundingInfo: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. founders: (Optional[Union[List[Union[str, Any]], str, Any]]): A person who founded this organization. legalName: (Union[List[Union[str, Any]], str, Any]): The official name of the organization, e.g. the registered company name. actionableFeedbackPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. areaServed: (Union[List[Union[str, Any]], str, Any]): The geographic area where a service or offered item is provided. parentOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this organization is a [[subOrganization]] of, if any. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. department: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. memberOf: (Optional[Union[List[Union[str, Any]], str, Any]]): An Organization (or ProgramMembership) to which this Person or Organization belongs. publishingPrinciples: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. employee: (Optional[Union[List[Union[str, Any]], str, Any]]): Someone working for this organization. award: (Union[List[Union[str, Any]], str, Any]): An award won by or for this item. email: (Union[List[Union[str, Any]], str, Any]): Email address. contactPoints: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. diversityStaffingReport: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. foundingDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was founded. owns: (Optional[Union[List[Union[str, Any]], str, Any]]): Products owned by the organization or person. awards: (Union[List[Union[str, Any]], str, Any]): Awards won by or for this item. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. dissolutionDate: (Optional[Union[List[Union[str, Any, date]], str, Any, date]]): The date that this organization was dissolved. funding: (Optional[Union[List[Union[str, Any]], str, Any]]): A [[Grant]] that directly or indirectly provide funding or sponsorship for this item. See also [[ownershipFundingInfo]]. interactionStatistic: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. seeks: (Optional[Union[List[Union[str, Any]], str, Any]]): A pointer to products or services sought by the organization or person (demand). employees: (Optional[Union[List[Union[str, Any]], str, Any]]): People working for this organization. unnamedSourcesPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required. subOrganization: (Optional[Union[List[Union[str, Any]], str, Any]]): A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property. foundingLocation: (Optional[Union[List[Union[str, Any]], str, Any]]): The place where the Organization was founded. funder: (Optional[Union[List[Union[str, Any]], str, Any]]): A person or organization that supports (sponsors) something through some kind of financial contribution. iso6523Code: (Union[List[Union[str, Any]], str, Any]): An organization identifier as defined in ISO 6523(-1). Note that many existing organization identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns) and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier by setting the ICD part of the ISO 6523 identifier accordingly. diversityPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. hasMerchantReturnPolicy: (Optional[Union[List[Union[str, Any]], str, Any]]): Specifies a MerchantReturnPolicy that may be applicable. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. duns: (Union[List[Union[str, Any]], str, Any]): The Dun & Bradstreet DUNS number for identifying an organization or business person. alumni: (Optional[Union[List[Union[str, Any]], str, Any]]): Alumni of an organization. ethicsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. leiCode: (Union[List[Union[str, Any]], str, Any]): An organization identifier that uniquely identifies a legal entity as defined in ISO 17442. vatID: (Union[List[Union[str, Any]], str, Any]): The Value-added Tax ID of the organization or person. knowsLanguage: (Union[List[Union[str, Any]], str, Any]): 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). correctionsPolicy: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom’s) disclosure and correction policy for errors. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. hasCredential: (Optional[Union[List[Union[str, Any]], str, Any]]): A credential awarded to the Person or Organization. address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. brand: (Optional[Union[List[Union[str, Any]], str, Any]]): The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. nonprofitStatus: (Optional[Union[List[Union[str, Any]], str, Any]]): nonprofitStatus indicates the legal status of a non-profit organization in its primary place of business. contactPoint: (Optional[Union[List[Union[str, Any]], str, Any]]): A contact point for a person or organization. hasOfferCatalog: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates an OfferCatalog listing for this Organization, Person, or Service. members: (Optional[Union[List[Union[str, Any]], str, Any]]): A member of this organization. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. taxID: (Union[List[Union[str, Any]], str, Any]): The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain. naics: (Union[List[Union[str, Any]], str, Any]): The North American Industry Classification System (NAICS) code for a particular organization or business person. location: (Union[List[Union[str, Any]], str, Any]): The location of, for example, where an event is happening, where an organization is located, or where an action takes place. numberOfEmployees: (Optional[Union[List[Union[str, Any]], str, Any]]): The number of employees in an organization, e.g. business. sponsor: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. geoCovers: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). longitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). smokingAllowed: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room. isicV4: (Union[List[Union[str, Any]], str, Any]): The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place. globalLocationNumber: (Union[List[Union[str, Any]], str, Any]): The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations. amenityFeature: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. additionalProperty: (Optional[Union[List[Union[str, Any]], str, Any]]): 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. slogan: (Union[List[Union[str, Any]], str, Any]): A slogan or motto associated with the item. photos: (Optional[Union[List[Union[str, Any]], str, Any]]): Photographs of this place. keywords: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. reviews: (Optional[Union[List[Union[str, Any]], str, Any]]): Review of the item. tourBookingPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. geoWithin: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). containsPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and another that it contains. review: (Optional[Union[List[Union[str, Any]], str, Any]]): A review of the item. hasMap: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. containedIn: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. events: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past events associated with this place or organization. geoOverlaps: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). geoEquals: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other" (a symmetric relationship). maps: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. isAccessibleForFree: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the item, event, or place is accessible for free. event: (Optional[Union[List[Union[str, Any]], str, Any]]): Upcoming or past event associated with this place, organization, or action. photo: (Optional[Union[List[Union[str, Any]], str, Any]]): A photograph of this place. containedInPlace: (Optional[Union[List[Union[str, Any]], str, Any]]): The basic containment relation between a place and one that contains it. logo: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An associated logo. geoCrosses: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). address: (Union[List[Union[str, Any]], str, Any]): Physical address of the item. geo: (Optional[Union[List[Union[str, Any]], str, Any]]): The geo coordinates of the place. openingHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The opening hours of a certain place. geoDisjoint: (Optional[Union[List[Union[str, Any]], str, Any]]): 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).) geoIntersects: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). latitude: (Union[List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat]): The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). maximumAttendeeCapacity: (Optional[Union[List[Union[str, int, Any]], str, int, Any]]): The total number of individuals that may attend an event or venue. aggregateRating: (Optional[Union[List[Union[str, Any]], str, Any]]): The overall rating, based on a collection of reviews or ratings, of the item. map: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): A URL to a map of the place. branchCode: (Union[List[Union[str, Any]], str, Any]): 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. faxNumber: (Union[List[Union[str, Any]], str, Any]): The fax number. publicAccess: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): A flag to signal that the [[Place]] is open to public visitors. If this property is omitted there is no assumed default boolean value geoTouches: (Optional[Union[List[Union[str, Any]], str, Any]]): Represents spatial relations in which two geometries (or the places they represent) touch: "they have at least one boundary point in common, but no interior points." (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).) geoCoveredBy: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). telephone: (Union[List[Union[str, Any]], str, Any]): The telephone number. hasDriveThroughService: (Optional[Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any]]): Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]]) offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]] such facilities could potentially help with social distancing from other potentially-infected users. specialOpeningHoursSpecification: (Optional[Union[List[Union[str, Any]], str, Any]]): The special opening hours of a certain place.Use this to explicitly override general opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]]. geoContains: (Optional[Union[List[Union[str, Any]], str, Any]]): 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). priceRange: (Union[List[Union[str, Any]], str, Any]): The price range of the business, for example ```$$$```. currenciesAccepted: (Union[List[Union[str, Any]], str, Any]): 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". branchOf: (Optional[Union[List[Union[str, Any]], str, Any]]): The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical) [[branch]]. paymentAccepted: (Union[List[Union[str, Any]], str, Any]): Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc. openingHours: (Union[List[Union[str, Any]], str, Any]): 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: <code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>. """ type_: str = Field(default="RoofingContractor", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) serviceArea: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geographic area where the service is provided.", ) founder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) hasPOS: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Points-of-Sales operated by the organization or person.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) member: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of an Organization or a ProgramMembership. Organizations can be members of" "organizations; ProgramMembership is typically for individuals.", ) knowsAbout: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) makesOffer: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services offered by the organization or person.", ) ownershipFundingInfo: Union[ List[Union[str, AnyUrl, Any]], str, AnyUrl, Any ] = Field( default=None, description="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.", ) founders: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person who founded this organization.", ) legalName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The official name of the organization, e.g. the registered company name.", ) actionableFeedbackPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) areaServed: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The geographic area where a service or offered item is provided.", ) parentOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this organization is a [[subOrganization]] of, if any.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) department: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) memberOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="An Organization (or ProgramMembership) to which this Person or Organization belongs.", ) publishingPrinciples: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) employee: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Someone working for this organization.", ) award: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An award won by or for this item.", ) email: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Email address.", ) contactPoints: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) diversityStaffingReport: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) foundingDate: Optional[Union[List[Union[str, Any, date]], str, Any, date]] = Field( default=None, description="The date that this organization was founded.", ) owns: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Products owned by the organization or person.", ) awards: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Awards won by or for this item.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) dissolutionDate: Optional[ Union[List[Union[str, Any, date]], str, Any, date] ] = Field( default=None, description="The date that this organization was dissolved.", ) funding: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A [[Grant]] that directly or indirectly provide funding or sponsorship for this item." "See also [[ownershipFundingInfo]].", ) interactionStatistic: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of interactions for the CreativeWork using the WebSite or SoftwareApplication." "The most specific child type of InteractionCounter should be used.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) seeks: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A pointer to products or services sought by the organization or person (demand).", ) employees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="People working for this organization.", ) unnamedSourcesPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about" "policy on use of unnamed sources and the decision process required.", ) subOrganization: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A relationship between two organizations where the first includes the second, e.g.," "as a subsidiary. See also: the more specific 'department' property.", ) foundingLocation: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The place where the Organization was founded.", ) funder: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A person or organization that supports (sponsors) something through some kind of financial" "contribution.", ) iso6523Code: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier as defined in ISO 6523(-1). Note that many existing organization" "identifiers such as [leiCode](https://schema.org/leiCode), [duns](https://schema.org/duns)" "and [vatID](https://schema.org/vatID) can be expressed as an ISO 6523 identifier" "by setting the ICD part of the ISO 6523 identifier accordingly.", ) diversityPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) hasMerchantReturnPolicy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Specifies a MerchantReturnPolicy that may be applicable.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) duns: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Dun & Bradstreet DUNS number for identifying an organization or business person.", ) alumni: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Alumni of an organization.", ) ethicsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) leiCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An organization identifier that uniquely identifies a legal entity as defined in ISO" "17442.", ) vatID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Value-added Tax ID of the organization or person.", ) knowsLanguage: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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).", ) correctionsPolicy: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing" "(in news media, the newsroom’s) disclosure and correction policy for errors.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) hasCredential: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A credential awarded to the Person or Organization.", ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) brand: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The brand(s) associated with a product or service, or the brand(s) maintained by an organization" "or business person.", ) nonprofitStatus: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="nonprofitStatus indicates the legal status of a non-profit organization in its primary" "place of business.", ) contactPoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A contact point for a person or organization.", ) hasOfferCatalog: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates an OfferCatalog listing for this Organization, Person, or Service.", ) members: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A member of this organization.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) taxID: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in" "Spain.", ) naics: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The North American Industry Classification System (NAICS) code for a particular organization" "or business person.", ) location: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The location of, for example, where an event is happening, where an organization is located," "or where an action takes place.", ) numberOfEmployees: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The number of employees in an organization, e.g. business.", ) sponsor: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) geoCovers: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) longitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) smokingAllowed: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or" "hotel room.", ) isicV4: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The International Standard of Industrial Classification of All Economic Activities" "(ISIC), Revision 4 code for a particular organization, business person, or place.", ) globalLocationNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also referred" "to as International Location Number or ILN) of the respective organization, person," "or place. The GLN is a 13-digit number used to identify parties and physical locations.", ) amenityFeature: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) additionalProperty: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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.", ) slogan: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A slogan or motto associated with the item.", ) photos: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Photographs of this place.", ) keywords: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) reviews: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Review of the item.", ) tourBookingPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) geoWithin: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined" "in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) containsPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and another that it contains.", ) review: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A review of the item.", ) hasMap: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) containedIn: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) events: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past events associated with this place or organization.", ) geoOverlaps: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents a relationship between two geometries (or the places they represent), relating" "a geometry to another that geospatially overlaps it, i.e. they have some but not all points" "in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) geoEquals: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM)." '"Two geometries are topologically equal if their interiors intersect and no part of' 'the interior or boundary of one geometry intersects the exterior of the other" (a symmetric' "relationship).", ) maps: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) isAccessibleForFree: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the item, event, or place is accessible for free.", ) event: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Upcoming or past event associated with this place, organization, or action.", ) photo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A photograph of this place.", ) containedInPlace: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The basic containment relation between a place and one that contains it.", ) logo: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An associated logo.", ) geoCrosses: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).', ) address: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Physical address of the item.", ) geo: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The geo coordinates of the place.", ) openingHoursSpecification: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The opening hours of a certain place.", ) geoDisjoint: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).)', ) geoIntersects: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" "have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).", ) latitude: Union[ List[Union[str, Any, StrictInt, StrictFloat]], str, Any, StrictInt, StrictFloat ] = Field( default=None, description="The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).", ) maximumAttendeeCapacity: Optional[ Union[List[Union[str, int, Any]], str, int, Any] ] = Field( default=None, description="The total number of individuals that may attend an event or venue.", ) aggregateRating: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The overall rating, based on a collection of reviews or ratings, of the item.", ) map: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="A URL to a map of the place.", ) branchCode: Union[List[Union[str, Any]], str, Any] = Field( default=None, description='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.', ) faxNumber: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The fax number.", ) publicAccess: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="A flag to signal that the [[Place]] is open to public visitors. If this property is omitted" "there is no assumed default boolean value", ) geoTouches: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Represents spatial relations in which two geometries (or the places they represent)" 'touch: "they have at least one boundary point in common, but no interior points." (A' "symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)", ) geoCoveredBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) telephone: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The telephone number.", ) hasDriveThroughService: Optional[ Union[List[Union[str, StrictBool, Any]], str, StrictBool, Any] ] = Field( default=None, description="Indicates whether some facility (e.g. [[FoodEstablishment]], [[CovidTestingFacility]])" "offers a service that can be used by driving through in a car. In the case of [[CovidTestingFacility]]" "such facilities could potentially help with social distancing from other potentially-infected" "users.", ) specialOpeningHoursSpecification: Optional[ Union[List[Union[str, Any]], str, Any] ] = Field( default=None, description="The special opening hours of a certain place.Use this to explicitly override general" "opening hours brought in scope by [[openingHoursSpecification]] or [[openingHours]].", ) geoContains: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="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).", ) priceRange: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The price range of the business, for example ```$$$```.", ) currenciesAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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".', ) branchOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The larger organization that this local business is a branch of, if any. Not to be confused" "with (anatomical) [[branch]].", ) paymentAccepted: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", ) openingHours: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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:" '<code>&lt;time itemprop="openingHours" datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays' "and Thursdays 4-8pm&lt;/time&gt;</code>.* If a business is open 7 days a week, then" "it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday" "through Sunday, all day&lt;/time&gt;</code>.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/RoofingContractor.py
0.880476
0.363421
RoofingContractor.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class AMRadioChannel(BaseModel): """A radio channel that uses AM. References: https://schema.org/AMRadioChannel Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. broadcastChannelId: (Union[List[Union[str, Any]], str, Any]): The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number. providesBroadcastService: (Optional[Union[List[Union[str, Any]], str, Any]]): The BroadcastService offered on this channel. genre: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): Genre of the creative work, broadcast channel or group. broadcastServiceTier: (Union[List[Union[str, Any]], str, Any]): The type of service required to have access to the channel (e.g. Standard or Premium). inBroadcastLineup: (Optional[Union[List[Union[str, Any]], str, Any]]): The CableOrSatelliteService offering the channel. broadcastFrequency: (Union[List[Union[str, Any]], str, Any]): The frequency used for over-the-air broadcasts. Numeric values or simple ranges, e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. "87 FM". """ type_: str = Field(default="AMRadioChannel", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) broadcastChannelId: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The unique address by which the BroadcastService can be identified in a provider lineup." "In US, this is typically a number.", ) providesBroadcastService: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The BroadcastService offered on this channel.", ) genre: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="Genre of the creative work, broadcast channel or group.", ) broadcastServiceTier: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The type of service required to have access to the channel (e.g. Standard or Premium).", ) inBroadcastLineup: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="The CableOrSatelliteService offering the channel.", ) broadcastFrequency: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The frequency used for over-the-air broadcasts. Numeric values or simple ranges, e.g." "87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels," 'e.g. "87 FM".', )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/AMRadioChannel.py
0.942222
0.290204
AMRadioChannel.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Downpayment(BaseModel): """Represents the downpayment (up-front payment) price component of the total price for an offered product that has additional installment payments. References: https://schema.org/Downpayment Note: Model Depth 5 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Downpayment", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Downpayment.py
0.947938
0.335405
Downpayment.py
pypi
from __future__ import annotations from datetime import * from time import * from typing import * from pydantic import * class Nonprofit501c25(BaseModel): """Nonprofit501c25: Non-profit type referring to Real Property Title-Holding Corporations or Trusts with Multiple Parents. References: https://schema.org/Nonprofit501c25 Note: Model Depth 6 Attributes: potentialAction: (Optional[Union[List[Union[str, Any]], str, Any]]): Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. mainEntityOfPage: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. subjectOf: (Optional[Union[List[Union[str, Any]], str, Any]]): A CreativeWork or Event about this Thing. url: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): URL of the item. alternateName: (Union[List[Union[str, Any]], str, Any]): An alias for the item. sameAs: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): 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. description: (Union[List[Union[str, Any]], str, Any]): A description of the item. disambiguatingDescription: (Union[List[Union[str, Any]], str, Any]): 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. identifier: (Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]): 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. image: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An image of the item. This can be a [[URL]] or a fully described [[ImageObject]]. name: (Union[List[Union[str, Any]], str, Any]): The name of the item. additionalType: (Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]]): An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. supersededBy: (Optional[Union[List[Union[str, Any]], str, Any]]): Relates a term (i.e. a property, class or enumeration) to one that supersedes it. """ type_: str = Field(default="Nonprofit501c25", alias="@type", const=True) potentialAction: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Indicates a potential Action, which describes an idealized action in which this thing" "would play an 'object' role.", ) mainEntityOfPage: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="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.", ) subjectOf: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="A CreativeWork or Event about this Thing.", ) url: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="URL of the item.", ) alternateName: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="An alias for the item.", ) sameAs: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="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.", ) description: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="A description of the item.", ) disambiguatingDescription: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="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.", ) identifier: Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] = Field( default=None, description="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.", ) image: Optional[Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any]] = Field( default=None, description="An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].", ) name: Union[List[Union[str, Any]], str, Any] = Field( default=None, description="The name of the item.", ) additionalType: Optional[ Union[List[Union[str, AnyUrl, Any]], str, AnyUrl, Any] ] = Field( default=None, description="An additional type for the item, typically used for adding more specific types from external" "vocabularies in microdata syntax. This is a relationship between something and a class" "that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof'" "attribute - for multiple types. Schema.org tools may have only weaker understanding" "of extra types, in particular those defined externally.", ) supersededBy: Optional[Union[List[Union[str, Any]], str, Any]] = Field( default=None, description="Relates a term (i.e. a property, class or enumeration) to one that supersedes it.", )
/schemaorg_types-0.4.0.tar.gz/schemaorg_types-0.4.0/schemaorg_types/Nonprofit501c25.py
0.946572
0.270917
Nonprofit501c25.py
pypi