---
title: place
framework: appintents
role: symbol
role_heading: Instance Property
path: appintents/appschema/mapsentity/place
---

# place

An entity schema for a place.

## Declaration

```swift
var place: some AppSchemaEntity { get }
```

## Discussion

Discussion To make your app’s content available to Apple Intelligence, conform your AppEntity to a schema that describes your content to the system. If your app’s functionality aligns with the maps domain and its content matches the place schema, you can generate the properties and protocol conformance the schema requires for your app entity implementation with the @AppEntity( .maps.place) Swift macro. To make your app work with Siri, see Apple Intelligence and Siri AI. The following example shows an app entity that conforms to the place schema: @AppEntity(schema: .maps.place) struct MapsPlaceEntity {     // MARK: Static

static let defaultQuery = MapsPlaceEntityQuery()

// MARK: Properties

let id: <#Identifiable.ID#>

var place: GeoToolbox.PlaceDescriptor     var name: String?     var categories: [String]     var operatingStatus: <#MapsOperatingStatusEnum#>?     var operatingHours: <#MapsOperatingHoursEntity#>?     var phoneNumber: String?     var priceRange: <#MapsPriceRangeEnum#>?     var ratings: [<#MapsRating#>]     var amenities: [String]

var displayRepresentation: DisplayRepresentation {         <#DisplayRepresentation#>     }

// MARK: Query

struct MapsPlaceEntityQuery: EntityQuery {         func entities(for identifiers: [MapsPlaceEntity.ID]) async throws -> [MapsPlaceEntity] {             <#code#>         }     } } The schema supports the following system experiences: Siri Shortcuts For more information about the App Intents framework and the experiences it supports, see Getting started with the App Intents framework.

## See Also

### Content and parameter types

- [currentLocation](appintents/appschema/mapsentity/currentlocation.md)
- [navigationSession](appintents/appschema/mapsentity/navigationsession.md)
- [operatingHours](appintents/appschema/mapsentity/operatinghours.md)
- [operatingTimeRange](appintents/appschema/mapsentity/operatingtimerange.md)
- [rating](appintents/appschema/mapsentity/rating.md)
- [AppSchema.MapsEntity](appintents/appschema/mapsentity.md)
