---
title: settings
framework: appintents
role: symbol
role_heading: Instance Property
path: appintents/appschema/booksentity/settings
---

# settings

An entity schema for  settings.

## Declaration

```swift
var settings: 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 books domain and its content matches the settings schema, you can generate the properties and protocol conformance the schema requires for your app entity implementation with the @AppEntity( .books.settings) 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 settings schema: @AppEntity(schema: .books.settings) struct BookSettingsEntity {     // MARK: Static

static let defaultQuery = BookSettingsEntityQuery()

// MARK: Properties

let id: <#Identifiable.ID#>

var font: <#BookFont#>     var fontSize: <#BookFontSize#>     var theme: <#BookTheme#>     var pageNavigationSetting: <#BookPageNavigationSetting#>     var isTextJustified: Bool     var isAllowMultipleColumns: Bool

var displayRepresentation: DisplayRepresentation {         <#DisplayRepresentation#>     }

// MARK: Query

struct BookSettingsEntityQuery: EntityQuery {         func entities(for identifiers: [BookSettingsEntity.ID]) async throws -> [BookSettingsEntity] {             <#code#>         }     } } The schema supports the following system experiences: 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

- [audiobook](appintents/appschema/booksentity/audiobook.md)
- [book](appintents/appschema/booksentity/book.md)
- [AppSchema.BooksEntity](appintents/appschema/booksentity.md)
