{"id":636,"date":"2022-05-26T11:05:09","date_gmt":"2022-05-26T02:05:09","guid":{"rendered":"https:\/\/daymore.com\/?p=636"},"modified":"2022-05-26T11:45:14","modified_gmt":"2022-05-26T02:45:14","slug":"swift-self-type","status":"publish","type":"post","link":"https:\/\/blog.daymore.com\/?p=636","title":{"rendered":"Swift Self Type"},"content":{"rendered":"\n<p>\uc5c6\uc5b4\ub3c4 \ub420\uac70 \uac19\uc740 Self \ud0c0\uc785, \uc778\uc2a4\ud134\uc2a4\ub97c \uac00\ub9ac\ud0a4\ub294 \ud504\ub85c\ud37c\ud2f0 self \ub3c4 \uc544\ub2c8\uace0 \uba54\ud0c0\ud0c0\uc785 \uac12\uc744 \ub098\ud0c0\ub0b4\ub294 .self \ub3c4 \uc544\ub2d8.<br>\uc11c\ub85c \uc5f0\uad00\uc131 \uc870\ucc28\ub3c4 \uc5c6\uc74c, \ubaa8\ub450 \ub2e4 self\ub77c\uc11c \ud5db\uac08\ub9ac\ub294\ub370 \uadf8\ub0e5 \ub2e4 \ub2e4\ub978\uac83\uc774\ub77c\uace0 \uc0dd\uac01\ud558\uba74 \ub428.<br>The Swift Programming Language \ucc45\uc5d0 \uc815\uc758\ub41c \ub0b4\uc6a9\uc774\ub2e4.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"564\" src=\"https:\/\/daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png\" alt=\"\" class=\"wp-image-637\" srcset=\"https:\/\/blog.daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png 1024w, https:\/\/blog.daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-300x165.png 300w, https:\/\/blog.daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-768x423.png 768w, https:\/\/blog.daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-920x507.png 920w, https:\/\/blog.daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-230x127.png 230w, https:\/\/blog.daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-350x193.png 350w, https:\/\/blog.daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-480x264.png 480w, https:\/\/blog.daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type.png 1362w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>\uac04\ub2e8\ud788 \uc694\uc57d\ud558\uba74 \uad6c\uc870\uccb4, \ud074\ub798\uc2a4, Enum \ud0c0\uc785\uc744 \uac04\ub2e8\ud788 \ub300\uccb4\ud558\uae30 \uc704\ud568, \uc774\ub984\uc744 \ubab0\ub77c\ub3c4 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc74c<br>\uc774\ub984\uc774 Class \uc778 \ud074\ub798\uc2a4\uac00 \uc788\uc73c\uba74 \ud074\ub798\uc2a4 \ub0b4\ubd80\uc5d0\uc11c Class \ub97c Self \ub85c \ub300\uccb4 \uac00\ub2a5\ud558\ub2e4.<br>Self \ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \uacf3\uc740 \uc704\uc5d0\uc11c \ud45c\uc2dc\ub41c 4\uacf3\uc5d0\uc11c\ub9cc \uc0ac\uc6a9 \uac00\ub2a5\ud558\ub2e4.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">class Class {\n    static var typeProperty = \"type property\"\n    var instanceProperty = \"instance property\"\n    \n    \/\/ \ud568\uc218 \ub9ac\ud134 \ud0c0\uc785\uc73c\ub85c \uc0ac\uc6a9\ub428 f1, f2\ub294 \uc644\uc804\ud788 \uac19\uc74c    \n    func f1() -> Self { return self }\n    func f2() -> Class { return self }\n\n    \/\/ \uba54\uc18c\ub4dc \ub0b4\uc5d0\uc11c \uc0ac\uc6a9\ub428, Class.typeProperty\uc640 \uc644\uc804\ud788 \uac19\uc74c\n    func f3() { print(\"\\(Self.typeProperty)\") }\n    \n    \/\/ \ud504\ub85c\ud37c\ud2f0 \ud0c0\uc785\uc73c\ub85c \uc0ac\uc6a9\ub428\n    var computed1: Self {\n        self.instanceProperty = \"computed 1\"\n        return self\n    }\n    var computed2: Class {\n        let c = Class()\n        c.instanceProperty = \"computed 2\"\n        return c\n    }\n}<\/pre>\n\n\n\n<p>\uad6c\uc870\uccb4, \ud074\ub798\uc2a4, Enum \ub0b4\ubd80\uc5d0\uc11c &#8220;\uc790\uc2e0\uc758 \ud0c0\uc785&#8221;\uc73c\ub85c \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \uacf3\uc5d0\uc11c \ud0c0\uc785 \ub300\uc2e0 Self \ub85c \ub300\uccb4 \uac00\ub2a5\ud568<br>\uc989 \uadf8\ub0e5 \uc774\ub984 \ub300\uc2e0 \ud3b8\ud558\uac8c \uc0ac\uc6a9 \uac00\ub2a5\ud568<br>Self \ub294 \ubb54\uac00\ub97c \ub098\ud0c0\ub0b4\ub294\uac8c \uc544\ub2c8\uace0 \uadf8\ub0e5 \ub2e8\uc21c\ud788 \ud0c0\uc785 \uc774\ub984\uc744 \ub300\uc2e0\ud574\uc11c \uc4f8 \uc218 \uc788\ub294 \uac83\uc784<br>\uadf8\ub7fc &#8220;\ud0c0\uc785&#8221; \ub300\uc2e0 \uc65c Self \ub97c \uc0ac\uc6a9\ud560\uae4c? \ub2e4\ub978 \uc774\uc720\ub294 \uc5c6\uc744\uae4c?<br>\ub0b4\uac00 \uc0dd\uac01\ud55c \uccab\ubc88\uc9f8 \uc774\uc720\ub294 \ucf54\ub4dc\uc758 \uc77c\ubc18\ud654\ub77c\uace0 \uc0dd\uac01\ud558\uba74 \ub420\uac70 \uac19\ub2e4.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">func f1() -> Self { return self }\nfunc f2() -> Class { return self }<\/pre>\n\n\n\n<p>\uc704 2\uac1c\uc758 \ud074\ub798\uc2a4 \uba54\uc18c\ub4dc\ub97c \ubcf4\uba74&#8230;<br>f1 \uba54\uc18c\ub4dc\ub294 \ud0c0\uc785\uc5d0 \uc885\uc18d\ub418\uc9c0 \uc54a\uc740 \ubaa8\uc2b5\uc774\uace0 f2 \uba54\uc18c\ub4dc\ub294 \ud0c0\uc785\uc5d0 \uc885\uc18d\ub41c \ubaa8\uc2b5\ub2c8\ub2e4. <br>f1 \uba54\uc18c\ub4dc \ucf54\ub4dc\ub294 \ubcf5\uc0ac\ud558\uc5ec \ub2e4\ub978 \ud074\ub798\uc2a4\uc5d0\uc11c \ubc14\ub85c \uc0ac\uc6a9 \uac00\ub2a5\ud558\uc9c0\ub9cc <br>f2 \uba54\uc18c\ub4dc\ub294 &#8220;Class&#8221;\ub77c\ub294 \ud0c0\uc785\uc744 \uba85\uc2dc\ud55c \uacf3 \ub54c\ubb38\uc5d0 \ubc14\ub85c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\ub2e4.<br>\uc880 \ub354 \ucf54\ub4dc\ub97c \uc77c\ubc18\ud654, \uc735\ud1b5\uc131 \uc788\uac8c \ub9cc\ub4e4 \uc218 \uc788\uac8c \ud558\ub294\uac83 \uac19\uc74c!<\/p>\n\n\n\n<p>\ub450\ubc88\uc9f8 \uc774\uc720\uac00 \uc0ac\uc2e4 \uc911\uc694\ud55c\ub370&#8230; \ub7f0\ud0c0\uc784\uc2dc dynamic \ud0c0\uc785\uc744 \uba85\uc2dc\ud558\uae30 \uc704\ud568\uc774\ub2e4.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">class Superclass {\n    func typeName() -> String { return String(describing: Self.self) }\n}\n\nclass Subclass: Superclass { }\n\nlet superc = Superclass()\nprint(superc.typeName())           \/\/ Superclass\n        \nlet subc = Subclass()\nprint(subc.typeName())             \/\/ Subclass<\/pre>\n\n\n\n<p>\uc704 \ucc98\ub7fc \ud0c0\uc785 \uc774\ub984\uc744 \ub9ac\ud134\ud558\ub294 \uba54\uc18c\ub4dc\uc758 \uacbd\uc6b0 Self \ub97c \uc0ac\uc6a9\ud558\uc9c0 \uc54a\uace0 Self \uc790\ub9ac\uc5d0 &#8220;Superclass&#8221;\ub97c \uc0ac\uc6a9\ud588\ub2e4\uba74<br>Subclass\uc5d0\uc11c \uc77c\uc77c\ud788 typeName() \uba54\uc18c\ub4dc\ub97c override \ud574\uc57c\ud568<br>\uc774\uac83\ub3c4 \ucf54\ub4dc \uc77c\ubc18\ud654\uc640 \uc735\ud1b5\uc131 \uc788\uac8c \ub9cc\ub4e4\uc5b4 \uc8fc\ub294 \uac83\uacfc \uc77c\ub9e5 \uc0c1\ud1b5! \uc815\ub9ac \ub05d__<br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uc5c6\uc5b4\ub3c4 \ub420\uac70 \uac19\uc740 Self \ud0c0\uc785, \uc778\uc2a4\ud134\uc2a4\ub97c \uac00\ub9ac\ud0a4\ub294 \ud504\ub85c\ud37c\ud2f0 self \ub3c4 \uc544\ub2c8\uace0 \uba54\ud0c0\ud0c0\uc785 \uac12\uc744 \ub098\ud0c0\ub0b4\ub294 .self \ub3c4 \uc544\ub2d8.\uc11c\ub85c \uc5f0\uad00\uc131 \uc870\ucc28\ub3c4 \uc5c6\uc74c, \ubaa8\ub450 \ub2e4 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23],"tags":[191,195,196,17,28,21,197],"class_list":["post-636","post","type-post","status-publish","format-standard","hentry","category-swift","tag-self","tag-self-2","tag-self-type","tag-swift","tag-type","tag-21","tag-197"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Swift Self Type - \uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.daymore.com\/?p=636\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Swift Self Type - \uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd\" \/>\n<meta property=\"og:description\" content=\"\uc5c6\uc5b4\ub3c4 \ub420\uac70 \uac19\uc740 Self \ud0c0\uc785, \uc778\uc2a4\ud134\uc2a4\ub97c \uac00\ub9ac\ud0a4\ub294 \ud504\ub85c\ud37c\ud2f0 self \ub3c4 \uc544\ub2c8\uace0 \uba54\ud0c0\ud0c0\uc785 \uac12\uc744 \ub098\ud0c0\ub0b4\ub294 .self \ub3c4 \uc544\ub2d8.\uc11c\ub85c \uc5f0\uad00\uc131 \uc870\ucc28\ub3c4 \uc5c6\uc74c, \ubaa8\ub450 \ub2e4 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.daymore.com\/?p=636\" \/>\n<meta property=\"og:site_name\" content=\"\uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-26T02:05:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-26T02:45:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png\" \/>\n<meta name=\"author\" content=\"daymore\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"daymore\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.daymore.com\/?p=636\",\"url\":\"https:\/\/blog.daymore.com\/?p=636\",\"name\":\"Swift Self Type - \uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd\",\"isPartOf\":{\"@id\":\"https:\/\/blog.daymore.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blog.daymore.com\/?p=636#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blog.daymore.com\/?p=636#primaryimage\"},\"thumbnailUrl\":\"https:\/\/daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png\",\"datePublished\":\"2022-05-26T02:05:09+00:00\",\"dateModified\":\"2022-05-26T02:45:14+00:00\",\"author\":{\"@id\":\"https:\/\/blog.daymore.com\/#\/schema\/person\/d2a6b2e27e0ca7aa5736172b432c1763\"},\"breadcrumb\":{\"@id\":\"https:\/\/blog.daymore.com\/?p=636#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.daymore.com\/?p=636\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/blog.daymore.com\/?p=636#primaryimage\",\"url\":\"https:\/\/daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png\",\"contentUrl\":\"https:\/\/daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.daymore.com\/?p=636#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog.daymore.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Swift Self Type\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.daymore.com\/#website\",\"url\":\"https:\/\/blog.daymore.com\/\",\"name\":\"\uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd\",\"description\":\"blog.daymore.com\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.daymore.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/blog.daymore.com\/#\/schema\/person\/d2a6b2e27e0ca7aa5736172b432c1763\",\"name\":\"daymore\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/blog.daymore.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f7c8fbf7472c334702e25bab1089b35096ea0daf226ea3e22f66568aba3570e6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f7c8fbf7472c334702e25bab1089b35096ea0daf226ea3e22f66568aba3570e6?s=96&d=mm&r=g\",\"caption\":\"daymore\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Swift Self Type - \uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd","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:\/\/blog.daymore.com\/?p=636","og_locale":"ko_KR","og_type":"article","og_title":"Swift Self Type - \uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd","og_description":"\uc5c6\uc5b4\ub3c4 \ub420\uac70 \uac19\uc740 Self \ud0c0\uc785, \uc778\uc2a4\ud134\uc2a4\ub97c \uac00\ub9ac\ud0a4\ub294 \ud504\ub85c\ud37c\ud2f0 self \ub3c4 \uc544\ub2c8\uace0 \uba54\ud0c0\ud0c0\uc785 \uac12\uc744 \ub098\ud0c0\ub0b4\ub294 .self \ub3c4 \uc544\ub2d8.\uc11c\ub85c \uc5f0\uad00\uc131 \uc870\ucc28\ub3c4 \uc5c6\uc74c, \ubaa8\ub450 \ub2e4 [&hellip;]","og_url":"https:\/\/blog.daymore.com\/?p=636","og_site_name":"\uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd","article_published_time":"2022-05-26T02:05:09+00:00","article_modified_time":"2022-05-26T02:45:14+00:00","og_image":[{"url":"https:\/\/daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png","type":"","width":"","height":""}],"author":"daymore","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"daymore","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"3\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/blog.daymore.com\/?p=636","url":"https:\/\/blog.daymore.com\/?p=636","name":"Swift Self Type - \uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd","isPartOf":{"@id":"https:\/\/blog.daymore.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.daymore.com\/?p=636#primaryimage"},"image":{"@id":"https:\/\/blog.daymore.com\/?p=636#primaryimage"},"thumbnailUrl":"https:\/\/daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png","datePublished":"2022-05-26T02:05:09+00:00","dateModified":"2022-05-26T02:45:14+00:00","author":{"@id":"https:\/\/blog.daymore.com\/#\/schema\/person\/d2a6b2e27e0ca7aa5736172b432c1763"},"breadcrumb":{"@id":"https:\/\/blog.daymore.com\/?p=636#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.daymore.com\/?p=636"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/blog.daymore.com\/?p=636#primaryimage","url":"https:\/\/daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png","contentUrl":"https:\/\/daymore.com\/wp-content\/uploads\/2022\/05\/Self-Type-1024x564.png"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.daymore.com\/?p=636#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.daymore.com\/"},{"@type":"ListItem","position":2,"name":"Swift Self Type"}]},{"@type":"WebSite","@id":"https:\/\/blog.daymore.com\/#website","url":"https:\/\/blog.daymore.com\/","name":"\uae00\uc4f0\uae30, IT \uc791\uc740 \uc9c0\uc2dd","description":"blog.daymore.com","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.daymore.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/blog.daymore.com\/#\/schema\/person\/d2a6b2e27e0ca7aa5736172b432c1763","name":"daymore","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/blog.daymore.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f7c8fbf7472c334702e25bab1089b35096ea0daf226ea3e22f66568aba3570e6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f7c8fbf7472c334702e25bab1089b35096ea0daf226ea3e22f66568aba3570e6?s=96&d=mm&r=g","caption":"daymore"}}]}},"_links":{"self":[{"href":"https:\/\/blog.daymore.com\/index.php?rest_route=\/wp\/v2\/posts\/636","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.daymore.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.daymore.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.daymore.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.daymore.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=636"}],"version-history":[{"count":12,"href":"https:\/\/blog.daymore.com\/index.php?rest_route=\/wp\/v2\/posts\/636\/revisions"}],"predecessor-version":[{"id":654,"href":"https:\/\/blog.daymore.com\/index.php?rest_route=\/wp\/v2\/posts\/636\/revisions\/654"}],"wp:attachment":[{"href":"https:\/\/blog.daymore.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=636"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.daymore.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=636"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.daymore.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=636"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}