> For the complete documentation index, see [llms.txt](https://standards.spdci.org/standards/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://standards.spdci.org/standards/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-objects/do.com.07-place.md).

# 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="/pages/ctz3lHCKfhpCgUtmqSUn">/pages/ctz3lHCKfhpCgUtmqSUn</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="/pages/ctz3lHCKfhpCgUtmqSUn">/pages/ctz3lHCKfhpCgUtmqSUn</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="/pages/w7L6yk9mBzF8hF89BMTW">/pages/w7L6yk9mBzF8hF89BMTW</a></td><td>0...1</td><td>Geo location details</td></tr><tr><td>contained_in_place</td><td><a data-mention href="/pages/ciq0I9tZk6WDunUTecZL">/pages/ciq0I9tZk6WDunUTecZL</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="/pages/ciq0I9tZk6WDunUTecZL">/pages/ciq0I9tZk6WDunUTecZL</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>" %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://standards.spdci.org/standards/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-objects/do.com.07-place.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
