---
title: fetchAttributes
framework: corespotlight
role: symbol
role_heading: Instance Property
path: corespotlight/filesource/fetchattributes
---

# fetchAttributes

The attributes to fetch for each file or directory and provide to the model.

## Declaration

```swift
var fetchAttributes: [SearchableItemAttribute]
```

## Discussion

Discussion Use this property to minimize the number of round trips between the Spotlight search tool and your content. When you index your app’s content, you create a CSSearchableItemAttributeSet for each item and fill it with metadata about that item. For example, you might specify the title of a document and the number of pages it contains. For each item the Spotlight search tool identifies as a result, the tool retrieves the attributes you specify in this property. The tool delivers these attributes together with the item’s identifier to the model so it doesn’t have to request them later. The default value of this property is an empty set, which delivers only the item’s identifier to the model.

## See Also

### Configuring the search options

- [scopes](corespotlight/filesource/scopes.md)
- [maximumResultCount](corespotlight/filesource/maximumresultcount.md)
