{"id":248,"date":"2013-02-26T15:48:21","date_gmt":"2013-02-26T21:48:21","guid":{"rendered":"http:\/\/monkeylogic.us\/blog\/?p=248"},"modified":"2016-08-09T15:45:40","modified_gmt":"2016-08-09T20:45:40","slug":"incremental-quiz-grading-in-captivate","status":"publish","type":"post","link":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/","title":{"rendered":"Incremental quiz grading in Captivate"},"content":{"rendered":"<p>One service that monkeylogic design provides that isn\u2019t listed on our site yet is creating asynchronous online learning trainings for the web. The tool we use is Adobe Captivate, version 6 as of this post, and while Captivate does many great things it\u2019s the quizzing feature that has some limitations.<\/p>\n<p><!--more. . . Continue reading--><\/p>\n<p>Captivate can only have one quiz per training module so if you need to have periodic quizzes or knowledge checks in a module which also give you individual results for each quiz, then this is where the problem lies. The reason, if you\u2019ve never had any experience with designing an online training or dealt with a Learning Management System (LMS), is that Captivate only has a set list of variables it uses to track the data of all the questions of a quiz without a built in way to break up the questions of a quiz into groups. Even though you can move individual questions of the quiz to any slide you want in the module, you don\u2019t have a way to tell Captivate or your LMS that the questions on slides 5-9 are one group, the questions on slides 13-16 are another group and to then give the scored results of each group individually to the person going through the module.<\/p>\n<p>If you do design online trainings in Captivate then you likely already know of this limitation or if you didn\u2019t you do now. Research into the problem on the web will return a few pages that give some workarounds but it requires quite a bit of manipulation to the files that Captivate generates including combining different files together in a zip file and changing data in an XML file amongst a few other things. If you\u2019re willing to go this extra step then it\u2019s not a problem but as it does land on the more technical side of things I wondered if there was an easier way. The good news is that an easier way is possible and its really simple as long as you understand Captivate\u2019s variables and advanced actions.<\/p>\n<p><a href=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/Captivate\/IncrementalQuizResults\/\" target=\"_blank\">Click here<\/a> to view what this post will be creating.<\/p>\n<h3>Variables, advanced actions, and buttons<\/h3>\n<p>A Captivate file will place all the quiz slides together when you add them to a module. The visual structure would appear as the following:<\/p>\n<ul>\n<li>Introduction<\/li>\n<li>Content slide 1<\/li>\n<li>Content slide 2<\/li>\n<li>Quiz slide 1<\/li>\n<li>Quiz slide 2<\/li>\n<li>Quiz slide 3<\/li>\n<li>Quiz slide 4<\/li>\n<li>Quiz slide 5<\/li>\n<li>Quiz slide 6<\/li>\n<li>Quiz results<\/li>\n<\/ul>\n<p>We want to spread out the quiz so the first three questions appear after Content Slide 1 and the last three questions appear after Content Slide 2 so the structure changes to:<\/p>\n<ul>\n<li>Introduction<\/li>\n<li>Content slide 1<\/li>\n<li>Quiz slide 1<\/li>\n<li>Quiz slide 2<\/li>\n<li>Quiz slide 3<\/li>\n<li>Content slide 2<\/li>\n<li>Quiz slide 4<\/li>\n<li>Quiz slide 5<\/li>\n<li>Quiz slide 6<\/li>\n<li>Quiz results<\/li>\n<\/ul>\n<p>Captivate doesn\u2019t have a way to show the total points scored after the first three quiz slides so you have to setup an advanced action to acquire the score from Captivate and a variable to house that score. (To help you see how to setup a file using this method there is a link to a Captivate CS6 file at the end of this post).<\/p>\n<p>In the file there are two quizzes so you have to setup two variables named Subscore1 and Subscore2 and assign them both a value of 0. On the Submit button Action on Quiz slide 3 I setup an advanced action, named QuizSubscore1, with the following parameters:<\/p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td><strong>Actions<\/strong><\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>Assign<\/td>\n<td>Subscore1 with 0<\/td>\n<\/tr>\n<tr>\n<td>Expression<\/td>\n<td>Subscore1 = Subscore1 + cpQuizinfoPointsscored<\/td>\n<\/tr>\n<tr>\n<td>Go to Next Slide<\/td>\n<td><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The reason why the first action is to assign Subscore1 with 0 is that it makes it possible to report a running total at the bottom of every quiz slide in group 1 as long as you\u2019ve assigned the advanced action to the Submit button on each quiz slide in the group. The Captivate file in this post uses this feature at the bottom of every quiz slide. If the value wasn\u2019t reset to 0 each time you would be adding the value of each current slide to the next slide which would give you a total score higher than what it actually is.<\/p>\n<p>The expression then recalculates the value of Subscore1 by using a basic algebra equation, X = (X + Y). This may seem like a backwards way of approaching this, but it works. The plain language version is: \u201cSet Subtotal1 to 0. Let Subtotal1 equal Subtotal1 plus cpQuizinfoPointsscored.\u201d<\/p>\n<p>We want to report to the user what their score was for group 1 and 2 so you add a new slide after Quiz slide 3 and Quiz slide 6 for the subscores.<\/p>\n<ul>\n<li>Introduction<\/li>\n<li>Content slide 1<\/li>\n<li>Quiz slide 1<\/li>\n<li>Quiz slide 2<\/li>\n<li>Quiz slide 3<\/li>\n<li>Quiz Subscore 1 results<\/li>\n<li>Content slide 2<\/li>\n<li>Quiz slide 4<\/li>\n<li>Quiz slide 5<\/li>\n<li>Quiz slide 6<\/li>\n<li>Quiz Subscore 2 results<\/li>\n<li>Quiz results<\/li>\n<\/ul>\n<p>On the Quiz Subscore 1 results page you add two text captions. One to display the value stored in Subscore1 and the other to identify what the value is. Unless you\u2019re specifying what the points are for each slide or each quiz question is a different value, it wouldn\u2019t make sense to tell the user how many points they received if they don\u2019t know how many possible points there were. So I placed an additional text caption on the subscore page that stated how many total points were possible. As the quiz questions aren\u2019t random I just typed in the total possible score rather than using an advanced action to figure it out.<\/p>\n<p>The advanced action, named QuizSubscore2, for the second subscore page\u00a0 is similar to the first but requires an additional line to function:<\/p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td><strong>Actions<\/strong><\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>Assign<\/td>\n<td>Subscore2 with 0<\/td>\n<\/tr>\n<tr>\n<td>Expression<\/td>\n<td>Subscore2 = Subscore2 + cpQuizinfoPointsscored<\/td>\n<\/tr>\n<tr>\n<td>Expression<\/td>\n<td>Subscore2 = Subscore2 &#8211; Subscore1<\/td>\n<\/tr>\n<tr>\n<td>Go to Next Slide<\/td>\n<td><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The script does the same thing as the first but as the total points for all the quiz questions includes the points from the first group you have to subtract the points of the first group from the second to get the correct value for the second group.<\/p>\n<p>You could setup the second quiz group results slide the same as the first and just say how many points were earned as well as the total possible points, but I\u2019ve also included the total number of points from both quizzes as well as the maximum score possible.<\/p>\n<h3><b>Last thoughts \u00a0 <\/b><\/h3>\n<p>This is a proof of concept to show that it\u2019s possible to do incremental quiz scoring on a linear training that doesn\u2019t have branching, you would need to do some additional work in order to get this solution to function under a few different circumstances. If you had a branching training and each branch ended in a different quiz, you would need to build in additional conditional advanced actions so that the subscore variables were being calculated correctly.<\/p>\n<p>I do need to credit Lieve Weymeis for having a similar solution to this problem which she posted back in September of 2012. <del>Unfortunately the site Posterous, which is where she posted about an alternative solution, is shutting down April 30, 2013 but you can view her post until then at this link,<\/del> <a href=\"http:\/\/blog.lilybiri.com\/intermediate-score-slides\" target=\"_blank\">http:\/\/blog.lilybiri.com\/intermediate-score-slides<\/a>. (UPDATE: The link is now directed to the new site) Her solution allows you to do a lot more with a Captivate file, primarily if you want the user to be able to select a random quiz to take, but this post along with her post should give you more flexibility and possibilities when creating Captivate trainings.<\/p>\n<h3>CAPTIVATE FILE USED IN THIS POST<\/h3>\n<p><a href=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/Captivate\/IncrementalQuizResults\/IncrementalQuizResults.zip\" target=\"_blank\">Incremental Quiz Reporting Captivate 9 file<\/a><\/p>\n<p><em>UPDATE: The original file was accidentally deleted so it had to be recreated in Captivate 9.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Adobe Captivate doesn&#8217;t allow for incremental quiz grading out of the box but it&#8217;s simple to get it to work.<\/p>\n","protected":false},"author":1,"featured_media":249,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,3],"tags":[],"class_list":["post-248","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-adobe","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Incremental quiz grading in Captivate - monkeylogic blog<\/title>\n<meta name=\"description\" content=\"Adobe Captivate doesn&#039;t allow for incremental quiz grading out of the box but it&#039;s simple to get it to work.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Incremental quiz grading in Captivate - monkeylogic blog\" \/>\n<meta property=\"og:description\" content=\"Adobe Captivate doesn&#039;t allow for incremental quiz grading out of the box but it&#039;s simple to get it to work.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/\" \/>\n<meta property=\"og:site_name\" content=\"monkeylogic blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/MonkeylogicDesign\" \/>\n<meta property=\"article:published_time\" content=\"2013-02-26T21:48:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-08-09T20:45:40+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2013\/02\/08IncrementalQuizResults.png\" \/>\n\t<meta property=\"og:image:width\" content=\"570\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Michael (the head monkey)\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael (the head monkey)\" \/>\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\":\"Article\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/\"},\"author\":{\"name\":\"Michael (the head monkey)\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#\\\/schema\\\/person\\\/4d39347fa8dbfebec314b0a130b26aa1\"},\"headline\":\"Incremental quiz grading in Captivate\",\"datePublished\":\"2013-02-26T21:48:21+00:00\",\"dateModified\":\"2016-08-09T20:45:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/\"},\"wordCount\":1258,\"commentCount\":2,\"image\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/02\\\/08IncrementalQuizResults.png\",\"articleSection\":[\"Adobe\",\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/\",\"url\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/\",\"name\":\"Incremental quiz grading in Captivate - monkeylogic blog\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/#primaryimage\"},\"image\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/02\\\/08IncrementalQuizResults.png\",\"datePublished\":\"2013-02-26T21:48:21+00:00\",\"dateModified\":\"2016-08-09T20:45:40+00:00\",\"author\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#\\\/schema\\\/person\\\/4d39347fa8dbfebec314b0a130b26aa1\"},\"description\":\"Adobe Captivate doesn't allow for incremental quiz grading out of the box but it's simple to get it to work.\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/#primaryimage\",\"url\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/02\\\/08IncrementalQuizResults.png\",\"contentUrl\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/02\\\/08IncrementalQuizResults.png\",\"width\":570,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/incremental-quiz-grading-in-captivate\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Incremental quiz grading in Captivate\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#website\",\"url\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/\",\"name\":\"monkeylogic blog\",\"description\":\"Out of Register\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#\\\/schema\\\/person\\\/4d39347fa8dbfebec314b0a130b26aa1\",\"name\":\"Michael (the head monkey)\",\"sameAs\":[\"http:\\\/\\\/www.monkeylogic.us\"],\"url\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/author\\\/head-monkey\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Incremental quiz grading in Captivate - monkeylogic blog","description":"Adobe Captivate doesn't allow for incremental quiz grading out of the box but it's simple to get it to work.","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":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/","og_locale":"en_US","og_type":"article","og_title":"Incremental quiz grading in Captivate - monkeylogic blog","og_description":"Adobe Captivate doesn't allow for incremental quiz grading out of the box but it's simple to get it to work.","og_url":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/","og_site_name":"monkeylogic blog","article_publisher":"https:\/\/www.facebook.com\/MonkeylogicDesign","article_published_time":"2013-02-26T21:48:21+00:00","article_modified_time":"2016-08-09T20:45:40+00:00","og_image":[{"width":570,"height":200,"url":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2013\/02\/08IncrementalQuizResults.png","type":"image\/png"}],"author":"Michael (the head monkey)","twitter_misc":{"Written by":"Michael (the head monkey)","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/#article","isPartOf":{"@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/"},"author":{"name":"Michael (the head monkey)","@id":"http:\/\/monkeylogic.us\/blog\/#\/schema\/person\/4d39347fa8dbfebec314b0a130b26aa1"},"headline":"Incremental quiz grading in Captivate","datePublished":"2013-02-26T21:48:21+00:00","dateModified":"2016-08-09T20:45:40+00:00","mainEntityOfPage":{"@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/"},"wordCount":1258,"commentCount":2,"image":{"@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/#primaryimage"},"thumbnailUrl":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2013\/02\/08IncrementalQuizResults.png","articleSection":["Adobe","Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/","url":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/","name":"Incremental quiz grading in Captivate - monkeylogic blog","isPartOf":{"@id":"http:\/\/monkeylogic.us\/blog\/#website"},"primaryImageOfPage":{"@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/#primaryimage"},"image":{"@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/#primaryimage"},"thumbnailUrl":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2013\/02\/08IncrementalQuizResults.png","datePublished":"2013-02-26T21:48:21+00:00","dateModified":"2016-08-09T20:45:40+00:00","author":{"@id":"http:\/\/monkeylogic.us\/blog\/#\/schema\/person\/4d39347fa8dbfebec314b0a130b26aa1"},"description":"Adobe Captivate doesn't allow for incremental quiz grading out of the box but it's simple to get it to work.","breadcrumb":{"@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/#primaryimage","url":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2013\/02\/08IncrementalQuizResults.png","contentUrl":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2013\/02\/08IncrementalQuizResults.png","width":570,"height":200},{"@type":"BreadcrumbList","@id":"http:\/\/monkeylogic.us\/blog\/incremental-quiz-grading-in-captivate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/monkeylogic.us\/blog\/"},{"@type":"ListItem","position":2,"name":"Incremental quiz grading in Captivate"}]},{"@type":"WebSite","@id":"http:\/\/monkeylogic.us\/blog\/#website","url":"http:\/\/monkeylogic.us\/blog\/","name":"monkeylogic blog","description":"Out of Register","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/monkeylogic.us\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"http:\/\/monkeylogic.us\/blog\/#\/schema\/person\/4d39347fa8dbfebec314b0a130b26aa1","name":"Michael (the head monkey)","sameAs":["http:\/\/www.monkeylogic.us"],"url":"http:\/\/monkeylogic.us\/blog\/author\/head-monkey\/"}]}},"_links":{"self":[{"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/posts\/248","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/comments?post=248"}],"version-history":[{"count":60,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/posts\/248\/revisions"}],"predecessor-version":[{"id":889,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/posts\/248\/revisions\/889"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/media\/249"}],"wp:attachment":[{"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/media?parent=248"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/categories?post=248"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/tags?post=248"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}