<!--
{
  "availability" : [
    "iOS: 11.0.0 - 13.0.0",
    "iPadOS: 11.0.0 - 13.0.0",
    "macCatalyst: 13.1.0 - 13.1.0",
    "visionOS: 1.0.0 - 1.0.0",
    "watchOS: 4.0.0 - 6.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INNotebookDomainHandling",
  "metadataVersion" : "0.1.0",
  "role" : "Protocol",
  "symbol" : {
    "kind" : "Protocol",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INNotebookDomainHandling"
  },
  "title" : "INNotebookDomainHandling"
}
-->

# INNotebookDomainHandling

An interface for adopting all of the protocols in the lists and notes domain.

```
protocol INNotebookDomainHandling : INAddTasksIntentHandling, INAppendToNoteIntentHandling, INCreateNoteIntentHandling, INCreateTaskListIntentHandling, INSearchForNotebookItemsIntentHandling, INSetTaskAttributeIntentHandling
```

## Overview

The [`INNotebookDomainHandling`](/documentation/Intents/INNotebookDomainHandling) protocol is a convenience protocol that adopts all of the protocols used to handle list, note, and reminder-related intents. When your app adopts all of the protocols associated with notes and reminders, you can adopt this one protocol instead of adopting the [`INCreateNoteIntentHandling`](/documentation/Intents/INCreateNoteIntentHandling), [`INAppendToNoteIntentHandling`](/documentation/Intents/INAppendToNoteIntentHandling), [`INSearchForNotebookItemsIntentHandling`](/documentation/Intents/INSearchForNotebookItemsIntentHandling), [`INCreateTaskListIntentHandling`](/documentation/Intents/INCreateTaskListIntentHandling), [`INAddTasksIntentHandling`](/documentation/Intents/INAddTasksIntentHandling), and [`INSetTaskAttributeIntentHandling`](/documentation/Intents/INSetTaskAttributeIntentHandling) protocols separately.

An object that adopts this protocol must be able to respond to the following intents:

- [`INCreateNoteIntent`](/documentation/Intents/INCreateNoteIntent), a request to create a new note.
- [`INAppendToNoteIntent`](/documentation/Intents/INAppendToNoteIntent), a request to modify an existing note.
- [`INSearchForNotebookItemsIntent`](/documentation/Intents/INSearchForNotebookItemsIntent), a request to search for existing notes.
- [`INCreateTaskListIntent`](/documentation/Intents/INCreateTaskListIntent), a request to create a new list of tasks or reminders.
- [`INAddTasksIntent`](/documentation/Intents/INAddTasksIntent), a request to add tasks to an existing task list.
- [`INSetTaskAttributeIntent`](/documentation/Intents/INSetTaskAttributeIntent), a request to modify a task.

Your handler object must be prepared to resolve any parameters associated with these intents and to confirm and handle the requests. When confirming and handling a request, you provide the response object that matches the specified intent.

## Relationships

### Inherits From

[`NSObjectProtocol`](/documentation/ObjectiveC/NSObjectProtocol)

[`INCreateTaskListIntentHandling`](/documentation/Intents/INCreateTaskListIntentHandling)

[`INCreateNoteIntentHandling`](/documentation/Intents/INCreateNoteIntentHandling)

[`INSetTaskAttributeIntentHandling`](/documentation/Intents/INSetTaskAttributeIntentHandling)

[`INAppendToNoteIntentHandling`](/documentation/Intents/INAppendToNoteIntentHandling)

[`INSearchForNotebookItemsIntentHandling`](/documentation/Intents/INSearchForNotebookItemsIntentHandling)

[`INAddTasksIntentHandling`](/documentation/Intents/INAddTasksIntentHandling)

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)