<!--
{
  "availability" : [
    "iOS: 26.0.0 -",
    "iPadOS: 26.0.0 -",
    "macCatalyst: 26.0.0 -",
    "macOS: 26.0.0 -",
    "visionOS: 26.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "DeviceManagement",
  "identifier" : "/documentation/DeviceManagement/SafariBookmarks",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Device Management"
    ],
    "preciseIdentifier" : "rmdm-declarations:SafariBookmarks"
  },
  "title" : "SafariBookmarks"
}
-->

# SafariBookmarks

The declaration to configure managed bookmarks in Safari.

```
object SafariBookmarks
```

## Discussion

Specify `com.apple.configuration.safari.bookmarks` as the declaration type.

### Configuration availability

|||
|--------------------------------|------------------------------------------------------------------------------------|
|Allowed in supervised enrollment|iOS, macOS, Shared iPad, visionOS                                                   |
|Allowed in device enrollment    |iOS, Shared iPad, visionOS                                                          |
|Allowed in user enrollment      |N/A                                                                                 |
|Allowed in local enrollment     |N/A                                                                                 |
|Allowed in system scope         |iOS, visionOS                                                                       |
|Allowed in user scope           |macOS, Shared iPad                                                                  |
|Apply                           |Multiple configurations are combined and applied as a single effective configuration|

### Configuration example

This configuration applies a set of managed bookmarks: two bookmarks and one bookmarks folder, which contains two more bookmarks.

```json
{
    "Type": "com.apple.configuration.safari.bookmarks",
    "Identifier": "EB13EE2B-5D63-4EBA-810F-5B81D07F5017",
    "ServerToken": "E180CA9A-F089-4FA3-BBDF-94CC159C4AE8",
    "Payload": {
        "ManagedBookmarks": [
            {
                "GroupIdentifier": "Group1",
                "Title": "Company Bookmarks",
                "Bookmarks": [
                    {
                        "Title": "Public Site",
                        "URL": "https://www.example.com"
                    },
                    {
                        "Title": "Store",
                        "URL": "https://store.example.com"
                    },
                    {
                        "Title": "Internal Developers",
                        "Folder": [
                            {
                                "Title": "Developers",
                                "URL": "https://developer.example.com"
                            },
                            {
                                "Title": "Repositories",
                                "URL": "https://repo.example.com"
                            }
                        ]
                    }
                ]
            }
        ]
    }
}
```

## Topics

### Objects

[`SafariBookmarksBookmarkGroupObject`](/documentation/DeviceManagement/SafariBookmarksBookmarkGroupObject)

A group of managed bookmarks.



---

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)