{"id":10620,"date":"2021-06-10T17:15:21","date_gmt":"2021-06-10T11:45:21","guid":{"rendered":"https:\/\/www.hexnode.com\/blogs\/?p=10620"},"modified":"2022-06-27T14:29:33","modified_gmt":"2022-06-27T08:59:33","slug":"what-is-declarative-device-management","status":"publish","type":"post","link":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/","title":{"rendered":"WWDC 2021 highlights: What is declarative device management?"},"content":{"rendered":"<p>This year, Apple&#8217;s <a href=\"https:\/\/www.apple.com\/apple-events\/?&amp;mnid=sKE5ldHdY-dc_mtid_20925gyh65756_pcrid_525781350629_pgrid_123336642899_&amp;mtid=20925gyh65756&amp;aosid=p238&amp;cid=wwa-in-kwgo-iphone-slid--Brand-AppleLive-Post-Event-\" target=\"_blank\" rel=\"noopenner noreferrer nofollow noopener\">Worldwide Developers Conference<\/a> brought many innovative goodies to the table. Amongst them, the declarative device management model seems like one of the super goodies which could create a lasting impact on the device management industry. Before we familiarise ourselves with the topic at hand, here&#8217;s a little backstory.<\/p>\n<p>Apple has always prioritized providing the best device management features and functionalities to organizations relying on their tools. Apple&#8217;s heavily used MDM protocol is what makes it all happen. This protocol which is already provided within iOS, macOS and tvOS devices, is updated every year.<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/MDM-Protocol-Declarative-Management-e1623237698921.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/MDM-Protocol-Declarative-Management-e1623237698921.jpg\" alt=\"MDM Protocol \" width=\"638\" height=\"308\" \/><\/a><em>MDM Protocol<\/em><br \/>\n<em>Image source: Apple WWDC 2021<\/em><\/p>\n<p style=\"text-align: left;\">The current MDM protocol is described as &#8216;imperative and reactive.&#8217; Any management process involves multiple round trips between the device and the server. This raises some serious performance challenges if we increase the number of devices. To make the MDM protocol more scalable, Apple has introduced a new paradigm on the existing protocol called declarative device management.<\/p>\n<h2 style=\"text-align: left;\">What is declarative device management?<\/h2>\n<p style=\"text-align: left;\">Declarative device management makes the whole device management process more autonomous and proactive, which lightens the load on the server. How does that work? An autonomous device can make management decisions based on its status changes without relying on the server. The proactive bit refers to the device updating the server on significant status changes without having to ask. Declarations, status channels and extensibility are the three components of the declarative management model.<\/p>\n<h2 style=\"text-align: left;\">Declarations<\/h2>\n<p style=\"text-align: left;\">A declaration is pretty much what you call the policies pushed onto a device by an organization. They can also act like dictionaries containing keys and values. These policies can be pushed on multiple or single devices. There are four types of declarations; Configurations, assets, activations and management.<\/p>\n<p style=\"text-align: left;\">The polices which are on the device are represented by configurations such as accounts, settings and restrictions.<br \/>\nAssets represent the references to support data that are required by the configurations. Assets can also represent the information specific to a user. Multiple configurations can rely upon a single asset that eliminates unnecessary copies of the same asset. If we were to update an asset, all the configurations linked to that asset would be automatically updated.<\/p>\n<p style=\"text-align: left;\">Configurations will be applied automatically in sets that are represented by activations. However, all the configurations have to be valid for the activation to succeed. If one configuration or a reference asset is invalid, the activation fails.<br \/>\nManagement declarations are a great way to convey static information such as organization details or the capabilities to the device.<\/p>\n<h3 style=\"text-align: left;\"><strong>Declarations Structure<\/strong><\/h3>\n<p style=\"text-align: center;\"><a href=\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Declaration-Structure-Declarative-management-e1623239043407.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Declaration-Structure-Declarative-management-e1623239043407.jpg\" alt=\"Structure of an activation declaration\" width=\"659\" height=\"377\" \/><\/a><em>Structure of an activation declaration<br \/>\n<\/em><em>Image source: Apple WWDC 2021<\/em><\/p>\n<p style=\"text-align: left;\">Declarations are arranged as JSON objects rather than plists when sent over the network. A declaration is structured with three sections.<\/p>\n<p style=\"text-align: left;\"><strong>Standard keys<br \/>\n<\/strong>Standard keys provide information on a declaration and uniquely marks them for easy identification and synchronization by the server.<\/p>\n<p style=\"text-align: left;\"><strong>Type:<\/strong> The type can be used to identify the type of policy represented by the declaration.<br \/>\n<strong>Identifier:<\/strong> Identifier is a unique value that represents the current declaration. All declarations have their Identifier key, which the device uses while syncing declarations with the server. This is usually a UUID represented as a string.<br \/>\n<strong>ServerToken:<\/strong> Server token is also a unique value allotted to a declaration, but this value changes with each revision.<\/p>\n<p style=\"text-align: left;\"><strong>Payload<\/strong><br \/>\nThe payload contains the content, which varies based on the type of declaration. For a configuration, it carries the data of the policy. The payload for an asset contains ancillary data for a configuration. Activation declarations will input the identifier keys of the referenced configurations in the payload. And in management declaration, static information is conveyed through the payload.<\/p>\n<p style=\"text-align: left;\"><strong>Predicate<\/strong><br \/>\nActivation can also include a predicate that acts as a condition. If the predicate is true, then the configurations under an activation is processed.<\/p>\n<h2 style=\"text-align: left;\">Status channel<\/h2>\n<p style=\"text-align: left;\">The device state need not be the same as the declared state. Let&#8217;s take the case of a password policy as an example. The new password criteria declared, is not fulfilled by the device until the user heeds to the declaration. Only after user intervention will the device state change. The status channel was established to keep track of this status change. If the server were to get updates on every status change, it would be unnecessarily loaded. We can utilize subscription configurations to subscribe to specific status updates and avoid crowding the server with unnecessary information. The updated status of declarations is always reported to the server regardless of subscription.<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Status-Items-Declarative-Management.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Status-Items-Declarative-Management.jpg\" alt=\"Subscription declaration\" width=\"675\" height=\"340\" \/><\/a><em>Structure of a subscription declaration<br \/>\nImage source: Apple WWDC 2021<br \/>\n<\/em><\/p>\n<p>The above subscription declaration is used to subscribe to the device operating system version, type and model. First, the initial status of the three status items would be sent to the server. Only the status of items that underwent an update will be sent in the consecutive reports. Let&#8217;s say that the status of the OS version changed; then, only the updated OS version will be included in the report.<\/p>\n<h2>Extensibility<\/h2>\n<p>It is vital to maintain the compatibility of various versions of the MDM with MDM protocol. The capabilities of both the server and the client are advertised to each other to achieve this. Each would know when it can start utilizing the capabilities of the other without relying on any software or hardware updates.<br \/>\nThe shared details include supported payloads, protocol updates and server capabilities. The client capability changes are sent to the server as status updates to take advantage of them immediately.<\/p>\n<h2>Integration with MDM<\/h2>\n<p>Declarative device management is already integrated with the MDM protocol so that it can be used by MDM vendors right now! Since the protocol did not undergo a complete change, it can be integrated into an MDM solution without disrupting its server infrastructure. The declarations in the status channel are already present in the policies and MDM commands. The integration will not affect the current behavior of the MDM solution.<\/p>\n<p>We can adopt the various features of declarative management at our own pace. For example, it is possible to integrate only the status channel from this model to support subscription declarations. Disenrolling the device will remove the declarative management features.<\/p>\n<p>A declarative management command can be used to enable this model. Once enabled, it is not possible to turn it off. We can effectively disable declarative management by removing all the declarations. A new type of Check-in request is available, which the device uses for declaration synchronization and sending status reports.<br \/>\nAfter using a Check-in request, the server sends two types of responses; A manifest, which contains information of the standard keys of all the declarations and a single declaration.<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/ProfileURL-Declarative-Management-e1623238776644.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/ProfileURL-Declarative-Management-e1623238776644.jpg\" alt=\"Referencing policy\" width=\"693\" height=\"333\" \/><\/a><em>Referencing a policy in a configuration<br \/>\n<\/em><em>Image source: Apple WWDC 2021<\/em><\/p>\n<p>You can install a profile to a device by using a profile URL within the configuration. This features ensures that we can use the entire set of profiles in an MDM to use declarative management properly.<\/p>\n<h2>The last say<\/h2>\n<p>Declarative device management could be a new milestone in the device management industry. One of its many key takeaways is its non-disruptive nature which is quite convenient. Everyone would appreciate an integration that could be done at any pace.\u00a0 With the freedom to adopt the only features which we need, it would be easy to facilitate a seamless transition to declarative device management. It&#8217;ll take a while for any potential faults or drawbacks of this model to come up if any exist that is. Personally, I feel like declarative device management has the potential to bring about a change in the overall concept of device management. In the end, we can only wait and see what it has in store for us in the not-so-distant future.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This year, Apple&#8217;s Worldwide Developers Conference brought many innovative goodies to the table. Amongst them,&#8230;<\/p>\n","protected":false},"author":28,"featured_media":10646,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[4914],"tags":[4834],"class_list":["post-10620","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-industry-insights","tag-wwdc","tab_group-immersive-reads"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WWDC 2021 highlights: What is declarative device management?<\/title>\n<meta name=\"description\" content=\"Apple unveiled Declarative device management, a new paradigm built on the same MDM protocol which could shape the future of device management.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WWDC 2021 highlights: What is declarative device management?\" \/>\n<meta property=\"og:description\" content=\"Apple unveiled Declarative device management, a new paradigm built on the same MDM protocol which could shape the future of device management.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/\" \/>\n<meta property=\"og:site_name\" content=\"Hexnode Blogs\" \/>\n<meta property=\"article:published_time\" content=\"2021-06-10T11:45:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-27T08:59:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/23143550\/Declarative-device-management.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"688\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Andrei Geralt\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Andrei Geralt\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/\",\"url\":\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/\",\"name\":\"WWDC 2021 highlights: What is declarative device management?\",\"isPartOf\":{\"@id\":\"https:\/\/www.hexnode.com\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Declarative-device-management.png?format=webp\",\"datePublished\":\"2021-06-10T11:45:21+00:00\",\"dateModified\":\"2022-06-27T08:59:33+00:00\",\"author\":{\"@id\":\"https:\/\/www.hexnode.com\/blogs\/#\/schema\/person\/610e324c47d3d37f4ebd86cb179c8ea9\"},\"description\":\"Apple unveiled Declarative device management, a new paradigm built on the same MDM protocol which could shape the future of device management.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#primaryimage\",\"url\":\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Declarative-device-management.png?format=webp\",\"contentUrl\":\"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Declarative-device-management.png?format=webp\",\"width\":1280,\"height\":688,\"caption\":\"Declarative device management\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.hexnode.com\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WWDC 2021 highlights: What is declarative device management?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hexnode.com\/blogs\/#website\",\"url\":\"https:\/\/www.hexnode.com\/blogs\/\",\"name\":\"Hexnode Blogs\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hexnode.com\/blogs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hexnode.com\/blogs\/#\/schema\/person\/610e324c47d3d37f4ebd86cb179c8ea9\",\"name\":\"Andrei Geralt\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hexnode.com\/blogs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a3885519c258ba3de439eeeb1cd5122f035ecbb2dcf4ee4ad3feb15499fb7127?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a3885519c258ba3de439eeeb1cd5122f035ecbb2dcf4ee4ad3feb15499fb7127?s=96&d=mm&r=g\",\"caption\":\"Andrei Geralt\"},\"description\":\"Frolicking on the keys while appreciating\u00a0the serenity behind the screen.\",\"url\":\"https:\/\/www.hexnode.com\/blogs\/author\/edgar\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WWDC 2021 highlights: What is declarative device management?","description":"Apple unveiled Declarative device management, a new paradigm built on the same MDM protocol which could shape the future of device management.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/","og_locale":"en_US","og_type":"article","og_title":"WWDC 2021 highlights: What is declarative device management?","og_description":"Apple unveiled Declarative device management, a new paradigm built on the same MDM protocol which could shape the future of device management.","og_url":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/","og_site_name":"Hexnode Blogs","article_published_time":"2021-06-10T11:45:21+00:00","article_modified_time":"2022-06-27T08:59:33+00:00","og_image":[{"width":1280,"height":688,"url":"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/23143550\/Declarative-device-management.png","type":"image\/png"}],"author":"Andrei Geralt","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Andrei Geralt","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/","url":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/","name":"WWDC 2021 highlights: What is declarative device management?","isPartOf":{"@id":"https:\/\/www.hexnode.com\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#primaryimage"},"image":{"@id":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Declarative-device-management.png?format=webp","datePublished":"2021-06-10T11:45:21+00:00","dateModified":"2022-06-27T08:59:33+00:00","author":{"@id":"https:\/\/www.hexnode.com\/blogs\/#\/schema\/person\/610e324c47d3d37f4ebd86cb179c8ea9"},"description":"Apple unveiled Declarative device management, a new paradigm built on the same MDM protocol which could shape the future of device management.","breadcrumb":{"@id":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#primaryimage","url":"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Declarative-device-management.png?format=webp","contentUrl":"https:\/\/cdn.hexnode.com\/blogs\/wp-content\/uploads\/2021\/06\/Declarative-device-management.png?format=webp","width":1280,"height":688,"caption":"Declarative device management"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hexnode.com\/blogs\/what-is-declarative-device-management\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hexnode.com\/blogs\/"},{"@type":"ListItem","position":2,"name":"WWDC 2021 highlights: What is declarative device management?"}]},{"@type":"WebSite","@id":"https:\/\/www.hexnode.com\/blogs\/#website","url":"https:\/\/www.hexnode.com\/blogs\/","name":"Hexnode Blogs","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hexnode.com\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hexnode.com\/blogs\/#\/schema\/person\/610e324c47d3d37f4ebd86cb179c8ea9","name":"Andrei Geralt","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hexnode.com\/blogs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a3885519c258ba3de439eeeb1cd5122f035ecbb2dcf4ee4ad3feb15499fb7127?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a3885519c258ba3de439eeeb1cd5122f035ecbb2dcf4ee4ad3feb15499fb7127?s=96&d=mm&r=g","caption":"Andrei Geralt"},"description":"Frolicking on the keys while appreciating\u00a0the serenity behind the screen.","url":"https:\/\/www.hexnode.com\/blogs\/author\/edgar\/"}]}},"_links":{"self":[{"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/posts\/10620","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/comments?post=10620"}],"version-history":[{"count":9,"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/posts\/10620\/revisions"}],"predecessor-version":[{"id":20000,"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/posts\/10620\/revisions\/20000"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/media\/10646"}],"wp:attachment":[{"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/media?parent=10620"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/categories?post=10620"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hexnode.com\/blogs\/wp-json\/wp\/v2\/tags?post=10620"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}