{"id":2969,"date":"2021-01-24T17:54:58","date_gmt":"2021-01-25T01:54:58","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=2969"},"modified":"2021-01-24T17:55:00","modified_gmt":"2021-01-25T01:55:00","slug":"json-web-token-structure-three-parts-separated-by-dots","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=2969","title":{"rendered":"JSON Web Token Structure &#8211; Three Parts Separated by Dots"},"content":{"rendered":"\n<p>All Auth0-issued JWTs have\u00a0JSON Web Signatures (JWSs), meaning they are signed rather than encrypted. A JWS represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures.<\/p>\n\n\n\n<p>A well-formed JWT consists of three concatenated Base64url-encoded strings, separated by dots (<code>.<\/code>):<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>JOSE Header<\/strong>: contains metadata about the type of token and the cryptographic algorithms used to secure its contents.<\/li><li><strong>JWS payload<\/strong>\u00a0(set of\u00a0claims): contains verifiable security statements, such as the identity of the user and the permissions they are allowed.<\/li><li><strong>JWS signature<\/strong>: used to validate that the token is trustworthy and has not been tampered with. When you use a JWT, you\u00a0<strong>must<\/strong>\u00a0check its signature\u00a0before storing and using it.<\/li><\/ul>\n\n\n\n<p>A JWT typically looks like this:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/images.ctfassets.net\/cdy7uua7fh8z\/7FI79jeM55zrNGd6QFdxnc\/80a18597f06faf96da649f86560cbeab\/encoded-jwt3.png\" alt=\"JSON Web Token\"\/><\/figure>\n\n\n\n<p>To see for yourself what is inside a JWT, use the\u00a0JWT.io Debugger. It allows you to quickly check that a JWT is well formed and to manually inspect the values of the various claims.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/images.ctfassets.net\/cdy7uua7fh8z\/5U3Azt2AReuNzNuQqkRs5\/9629ab9924a0212b74bee0b8fa88c295\/legacy-app-auth-5.png\" alt=\"JWT Debugger\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">JOSE header<\/h3>\n\n\n\n<p>JSON object containing the parameters describing the cryptographic operations and parameters employed. The JOSE (JSON Object Signing and Encryption) Header is comprised of a set of Header Parameters that typically consist of a name\/value pair: the hashing algorithm being used (e.g., HMAC SHA256 or RSA) and the type of the JWT.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    {\n      \"alg\": \"HS256\",\n      \"typ\": \"JWT\"\n    }\n\n<\/code><\/pre>\n\n\n\n<p>Was this helpful?Yes\/No<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">JWS payload<\/h3>\n\n\n\n<p>The payload contains statements about the entity (typically, the user) and additional entity attributes, which are called claims. In this example, our entity is a user.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    {\n      \"sub\": \"1234567890\",\n      \"name\": \"John Doe\",\n      \"admin\": true\n    }\n    \n<\/code><\/pre>\n\n\n\n<p>Was this helpful?Yes\/No<\/p>\n\n\n\n<p>When working with JWT claims, you should be aware of the different claim types and naming rules.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">JWS signature<\/h3>\n\n\n\n<p>The signature is used to verify that the sender of the JWT is who it says it is and to ensure that the message wasn&#8217;t changed along the way.<\/p>\n\n\n\n<p>To create the signature, the Base64-encoded header and payload are taken, along with a secret, and signed with the algorithm specified in the header.<\/p>\n\n\n\n<p>For example, if you are creating a signature for a token using the HMAC SHA256 algorithm, you would do the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    HMACSHA256(\n      base64UrlEncode(header) + \".\" +\n      base64UrlEncode(payload),\n      secret)\n    <\/code><\/pre>\n\n\n\n<p>Ref: https:\/\/auth0.com\/docs\/tokens\/json-web-tokens\/json-web-token-structure<\/p>\n","protected":false},"excerpt":{"rendered":"<p>All Auth0-issued JWTs have\u00a0JSON Web Signatures (JWSs), meaning they are signed rather than encrypted. A JWS represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. A well-formed JWT consists of three concatenated Base64url-encoded strings, separated by dots (.): JOSE Header: contains metadata about the type of token and the <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=2969\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[400,4,7],"tags":[566,567],"class_list":["post-2969","post","type-post","status-publish","format-standard","hentry","category-ccnp","category-cert","category-network","tag-json","tag-json-web-token-structure"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"All Auth0-issued JWTs have JSON Web Signatures (JWSs), meaning they are signed rather than encrypted. A JWS represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. A well-formed JWT consists of three concatenated Base64url-encoded strings, separated by dots (.): JOSE Header: contains metadata about the type of token and the\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"json,json web token structure,ccnp,certifications,comptia network+\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=2969\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#article\",\"name\":\"JSON Web Token Structure \\u2013 Three Parts Separated by Dots | Summa Lai\",\"headline\":\"JSON Web Token Structure &#8211; Three Parts Separated by Dots\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/images.ctfassets.net\\\/cdy7uua7fh8z\\\/7FI79jeM55zrNGd6QFdxnc\\\/80a18597f06faf96da649f86560cbeab\\\/encoded-jwt3.png\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969\\\/#articleImage\"},\"datePublished\":\"2021-01-24T17:54:58-08:00\",\"dateModified\":\"2021-01-24T17:55:00-08:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#webpage\"},\"articleSection\":\"CCNP, Certifications, CompTIA Network+, JSON, JSON Web Token Structure\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=4#listItem\",\"name\":\"Certifications\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=4#listItem\",\"position\":2,\"name\":\"Certifications\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=4\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=7#listItem\",\"name\":\"CompTIA Network+\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=7#listItem\",\"position\":3,\"name\":\"CompTIA Network+\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=7\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#listItem\",\"name\":\"JSON Web Token Structure &#8211; Three Parts Separated by Dots\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=4#listItem\",\"name\":\"Certifications\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#listItem\",\"position\":4,\"name\":\"JSON Web Token Structure &#8211; Three Parts Separated by Dots\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=7#listItem\",\"name\":\"CompTIA Network+\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969\",\"name\":\"JSON Web Token Structure \\u2013 Three Parts Separated by Dots | Summa Lai\",\"description\":\"All Auth0-issued JWTs have JSON Web Signatures (JWSs), meaning they are signed rather than encrypted. A JWS represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. A well-formed JWT consists of three concatenated Base64url-encoded strings, separated by dots (.): JOSE Header: contains metadata about the type of token and the\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=2969#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2021-01-24T17:54:58-08:00\",\"dateModified\":\"2021-01-24T17:55:00-08:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"JSON Web Token Structure \u2013 Three Parts Separated by Dots | Summa Lai","description":"All Auth0-issued JWTs have JSON Web Signatures (JWSs), meaning they are signed rather than encrypted. A JWS represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. A well-formed JWT consists of three concatenated Base64url-encoded strings, separated by dots (.): JOSE Header: contains metadata about the type of token and the","canonical_url":"https:\/\/SUMMALAI.COM\/?p=2969","robots":"max-image-preview:large","keywords":"json,json web token structure,ccnp,certifications,comptia network+","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=2969#article","name":"JSON Web Token Structure \u2013 Three Parts Separated by Dots | Summa Lai","headline":"JSON Web Token Structure &#8211; Three Parts Separated by Dots","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/images.ctfassets.net\/cdy7uua7fh8z\/7FI79jeM55zrNGd6QFdxnc\/80a18597f06faf96da649f86560cbeab\/encoded-jwt3.png","@id":"https:\/\/SUMMALAI.COM\/?p=2969\/#articleImage"},"datePublished":"2021-01-24T17:54:58-08:00","dateModified":"2021-01-24T17:55:00-08:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=2969#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=2969#webpage"},"articleSection":"CCNP, Certifications, CompTIA Network+, JSON, JSON Web Token Structure"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=2969#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=4#listItem","name":"Certifications"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=4#listItem","position":2,"name":"Certifications","item":"https:\/\/SUMMALAI.COM\/?cat=4","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=7#listItem","name":"CompTIA Network+"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=7#listItem","position":3,"name":"CompTIA Network+","item":"https:\/\/SUMMALAI.COM\/?cat=7","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=2969#listItem","name":"JSON Web Token Structure &#8211; Three Parts Separated by Dots"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=4#listItem","name":"Certifications"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=2969#listItem","position":4,"name":"JSON Web Token Structure &#8211; Three Parts Separated by Dots","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=7#listItem","name":"CompTIA Network+"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=2969#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=2969#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=2969#webpage","url":"https:\/\/SUMMALAI.COM\/?p=2969","name":"JSON Web Token Structure \u2013 Three Parts Separated by Dots | Summa Lai","description":"All Auth0-issued JWTs have JSON Web Signatures (JWSs), meaning they are signed rather than encrypted. A JWS represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. A well-formed JWT consists of three concatenated Base64url-encoded strings, separated by dots (.): JOSE Header: contains metadata about the type of token and the","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=2969#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2021-01-24T17:54:58-08:00","dateModified":"2021-01-24T17:55:00-08:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"2969","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"none","schema_type_options":"{\"webPage\":{\"webPageType\":\"WebPage\"},\"article\":{\"articleType\":\"BlogPosting\"},\"book\":[],\"course\":[],\"event\":[],\"jobPosting\":[],\"music\":[],\"person\":[],\"product\":[],\"recipe\":[],\"restaurant\":[],\"service\":[],\"software\":[],\"video\":[]}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":{"businessInfo":{"name":"","urls":{"website":"","aboutPage":"","contactPage":""},"address":{"line1":"","line2":"","zip":"","city":"","state":"","country":""},"contact":{"email":"","phone":"","fax":""},"ids":{"vatID":"","taxID":"","chamberID":""},"payment":{"priceIndication":"","currenciesAccepted":"","methodsAccepted":""},"areaServed":""},"openingHours":{"show":false,"closedLabel":"","open24h":false,"open24hLabel":"","open247":false,"use24hFormat":false,"twoSets":false,"timezone":"","hours":[]}},"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-01-25 01:51:13","updated":"2024-01-12 05:17:43","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=4\" title=\"Certifications\">Certifications<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=7\" title=\"CompTIA Network+\">CompTIA Network+<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tJSON Web Token Structure \u2013 Three Parts Separated by Dots\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Certifications","link":"https:\/\/SUMMALAI.COM\/?cat=4"},{"label":"CompTIA Network+","link":"https:\/\/SUMMALAI.COM\/?cat=7"},{"label":"JSON Web Token Structure &#8211; Three Parts Separated by Dots","link":"https:\/\/SUMMALAI.COM\/?p=2969"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/2969","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2969"}],"version-history":[{"count":1,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/2969\/revisions"}],"predecessor-version":[{"id":2970,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/2969\/revisions\/2970"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2969"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2969"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2969"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}