---
title: exportFormat
framework: appintents
role: symbol
role_heading: Instance Property
path: appintents/assistantschemas/presentationenum/exportformat
---

# exportFormat

## Declaration

```swift
var exportFormat: some AssistantSchemas.Enum { get }
```

## Overview

Overview To integrate your app’s functionality with Siri and Apple Intelligence, you use Swift macros that generate additional properties and add protocol conformance for your app enum implementation. For general information about app intent domains, see doc:Integrating-actions-with-siri-and-apple-intelligence. The following example shows an app enum that conforms to the presentation.exportFormat schema: @AppEnum(schema: .presentation.exportFormat) enum ExportFormatEnum: String {     case pdf     case powerpoint

static let caseDisplayRepresentations: [Self: DisplayRepresentation] = [         .pdf: "Pdf",         .powerpoint: "Powerpoint"     ] }
