# DO.COM.07 Place

### DOM.COM.07 Place

The spdci:Place object represents a structured entity encompassing the details and various components of a specific location.

<table><thead><tr><th width="195">Property Key</th><th>Data Type (and Restrictions)</th><th width="129">Cardinality</th><th>Description</th></tr></thead><tbody><tr><td>name</td><td><a data-mention href="../data-types-and-formats/dt.com.02-string">dt.com.02-string</a></td><td>0...1</td><td>Name of the place, e.g., 'King's Palace'</td></tr><tr><td>address_line</td><td><a data-mention href="../data-types-and-formats/dt.com.02-string">dt.com.02-string</a></td><td>0...1</td><td>Full mailing address, formatted for display or use on a mailing label </td></tr><tr><td>geo</td><td><a data-mention href="do.com.04-geolocation">do.com.04-geolocation</a></td><td>0...1</td><td>Geo location details</td></tr><tr><td>contained_in_place</td><td><a data-mention href="do.com.07-place">do.com.07-place</a></td><td>0...1</td><td>A relationship indicating a larger place that this place is part of</td></tr><tr><td>contains_place</td><td><a data-mention href="do.com.07-place">do.com.07-place</a></td><td>0...*</td><td>A relationship indicating a smaller place that is contained within this place</td></tr></tbody></table>

### Example of Use

```json
{
    "@context": {
        "spdci": "https://schema.spdci.org/core/v1/data",
        "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
        "xsd": "http://www.w3.org/2001/XMLSchema#"
    },
    "@id": "Place_1",
    "@type": "spdci:Place",
    "name": "Koh Samui",
    "geo": {
        "@type": "spdci:GeoLocation",
        "latitude": 9.5604,
        "longitude": 100.0245
    },
    "address_line": "",
    "contained_in_place": "",
    "contains_place": [
        {
            "@id": "Place_3",
            "@type": "spdci:Place",
            "name": "Fisherman's Village",
            "address": "Bophut\nKoh Samui\nSurat Thani 84320\nThailand",
            "geo": {
                "@type": "spdci:GeoLocation",
                "latitude": 9.5617,
                "longitude": 100.0259
            }
        },
        {
            "@id": "Place_4",
            "@type": "spdci:Place",
            "name": "Big Buddha Beach",
            "address": "Big Buddha Beach\nKoh Samui\nSurat Thani 84320\nThailand",
            "geo": {
                "@type": "spdci:GeoLocation",
                "latitude": 9.5736,
                "longitude": 100.0587
            }
        }
    ]
}
```

### JSON-LD File on GitHub

{% embed url="<https://schema.spdci.org/core/v1/data/Place.jsonld>" %}
