http://schema.org/GeoCoordinates
Instances of schema:GeoCoordinates can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class schema:GeoCoordinates | |||
schema:latitude | rdf:Property | The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). | xsd:float |
schema:longitude | rdf:Property | The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). | xsd:float |
From class schema:Thing | |||
schema:alternateName | rdf:Property | An alias for the item. | xsd:string |
schema:description | rdf:Property | A description of the item. | rdf:langString xsd:string |
schema:identifier | rdf:Property | The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details. | xsd:string sh:IRI |
schema:image | rdf:Property | An image of the item. | sh:IRI |
schema:name | rdf:Property | The name of the item. | xsd:string |
schema:sameAs | rdf:Property | URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website. | sh:IRI |
schema:url | rdf:Property | URL of the item. | sh:IRI |
By the associated SHACL property shapes, instances of schema:GeoCoordinates can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
LOCAL RANGE |
GLOBAL RANGE |
|
---|---|---|---|---|---|---|---|
schema:GeoCoordinates | |||||||
schema:latitude | rdf:Property |
The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).
The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). |
1 | 1 |
xsd:float
|
owl:Thing | |
schema:longitude | rdf:Property |
The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).
The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)). |
1 | 1 |
xsd:float
|
owl:Thing | |
schema:Thing | |||||||
schema:alternateName | rdf:Property |
An alias for the item.
An alias for the item. |
xsd:string
|
owl:Thing | |||
schema:description | rdf:Property |
A description of the item.
A description of the item. |
1 | owl:Thing | |||
schema:identifier | rdf:Property |
The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.
The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details. |
1 | owl:Thing | |||
schema:image | rdf:Property |
An image of the item.
An image of the item. |
1 | owl:Thing | |||
schema:name | rdf:Property |
The name of the item.
The name of the item. |
1 | 1 |
xsd:string
|
owl:Thing | |
schema:sameAs | rdf:Property |
URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.
URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website. |
owl:Thing | ||||
schema:url | rdf:Property |
URL of the item.
URL of the item. |
owl:Thing |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
schema:GeoCoordinates a rdfs:Class ;
rdfs:subClassOf schema:StructuredValue .