{"id":983,"date":"2024-10-26T11:08:47","date_gmt":"2024-10-26T15:08:47","guid":{"rendered":"https:\/\/www.bijanmarjan.com\/wordpress-main\/?p=983"},"modified":"2024-10-26T11:27:43","modified_gmt":"2024-10-26T15:27:43","slug":"story-point-calculator","status":"publish","type":"post","link":"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/","title":{"rendered":"Story Point Calculator"},"content":{"rendered":"\n<p>Below is a sample Story Point calculator which can be used in estimating. These are just some sample factors and each organization can chose a different configuration. Note the example below uses weights.<\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Story Point Estimator<\/title>\n<\/head>\n<body>\n\n<h1>Story Point Estimator<\/h1>\n<form id=\"storyPointForm\">\n    <label for=\"complexity\">Complexity (1-3):<\/label>\n    <input type=\"number\" id=\"complexity\" min=\"1\" max=\"3\" value=\"1\"><br><br>\n\n    <label for=\"effort\">Effort (1-3):<\/label>\n    <input type=\"number\" id=\"effort\" min=\"1\" max=\"3\" value=\"1\"><br><br>\n\n    <label for=\"risk\">Risk (1-3):<\/label>\n    <input type=\"number\" id=\"risk\" min=\"1\" max=\"3\" value=\"1\"><br><br>\n\n    <label for=\"uncertainty\">Uncertainty (1-3):<\/label>\n    <input type=\"number\" id=\"uncertainty\" min=\"1\" max=\"3\" value=\"1\"><br><br>\n\n    <label for=\"dependencies\">Dependencies (1-3):<\/label>\n    <input type=\"number\" id=\"dependencies\" min=\"1\" max=\"3\" value=\"1\"><br><br>\n\n    <label for=\"knowledge\">Knowledge (1-3):<\/label>\n    <input type=\"number\" id=\"knowledge\" min=\"1\" max=\"3\" value=\"1\"><br><br>\n\n    <label for=\"repetition\">Repetition (1-3):<\/label>\n    <input type=\"number\" id=\"repetition\" min=\"1\" max=\"3\" value=\"1\"><br><br>\n\n    <button type=\"button\" onclick=\"calculateStoryPoints()\">Calculate Story Points<\/button>\n<\/form>\n\n<h2>Estimated Story Points: <span id=\"result\">0<\/span><\/h2>\n\n<script>\n    function calculateStoryPoints() {\n        \/\/ Retrieve values from input fields\n        let complexity = parseInt(document.getElementById(\"complexity\").value);\n        let effort = parseInt(document.getElementById(\"effort\").value);\n        let risk = parseInt(document.getElementById(\"risk\").value);\n        let uncertainty = parseInt(document.getElementById(\"uncertainty\").value);\n        let dependencies = parseInt(document.getElementById(\"dependencies\").value);\n        let knowledge = parseInt(document.getElementById(\"knowledge\").value);\n        let repetition = parseInt(document.getElementById(\"repetition\").value);\n\n        \/\/ Define weights for each factor\n        const weightComplexity = 2;\n        const weightEffort = 1;\n        const weightRisk = 1.5;\n        const weightUncertainty = 1.2;\n        const weightDependencies = 1.3;\n        const weightKnowledge = 1.4;\n        const weightRepetition = -0.5;  \/\/ Higher repetition lowers complexity\n\n        \/\/ Calculate the score based on factors\n        let score = (complexity * weightComplexity) + \n                    (effort * weightEffort) + \n                    (risk * weightRisk) + \n                    (uncertainty * weightUncertainty) + \n                    (dependencies * weightDependencies) + \n                    (knowledge * weightKnowledge) + \n                    (repetition * weightRepetition);\n\n        \/\/ Map the score to story points\n        let storyPoints;\n        if (score <= 4) {\n            storyPoints = 1;\n        } else if (score <= 7) {\n            storyPoints = 3;\n        } else if (score <= 10) {\n            storyPoints = 5;\n        } else if (score <= 15) {\n            storyPoints = 8;\n        } else if (score <= 20) {\n            storyPoints = 13;\n        } else if (score <= 26) {\n            storyPoints = 21;\n        } else {\n            storyPoints = 34;\n        }\n\n        \/\/ Display the result\n        document.getElementById(\"result\").textContent = storyPoints;\n    }\n<\/script>\n\n<\/body>\n<\/html>\n\n\n\n<p>This formula provides weeks based on approximate values for each story point level:<\/p>\n\n\n\n<p>\u2022 <strong>1 story point<\/strong>: 0.5 weeks<\/p>\n\n\n\n<p>\u2022 <strong>2 story points<\/strong>: 1 week<\/p>\n\n\n\n<p>\u2022 <strong>3 story points<\/strong>: 2.5 weeks (midpoint of 2-3)<\/p>\n\n\n\n<p>\u2022 <strong>5 story points<\/strong>: 3.5 weeks (midpoint of 3-4)<\/p>\n\n\n\n<p>\u2022 <strong>8 story points<\/strong>: 8 weeks (midpoint of 4-12)<\/p>\n\n\n\n<p>\u2022 <strong>13 story points<\/strong>: 18 weeks (midpoint of 12-24)<\/p>\n\n\n\n<p>\u2022 <strong>21 story points<\/strong>: 30 weeks (midpoint of 24-36)<\/p>\n\n\n\n<p>\u2022 <strong>34 story points<\/strong>: 36 weeks or more<\/p>\n\n\n\n<p>Weights:<br><strong>Complexity (Weight: 2)<\/strong><\/p>\n\n\n\n<p>\u2022 Complexity is weighted <strong>2<\/strong>, meaning it has a strong impact on the total score. High complexity indicates that the task is challenging or requires advanced technical work, so tasks that are more complex will significantly increase the estimated story points.<\/p>\n\n\n\n<p>2. <strong>Effort (Weight: 1)<\/strong><\/p>\n\n\n\n<p>\u2022 Effort has a weight of <strong>1<\/strong>, representing a moderate influence on the score. It indicates how much time or physical work is required. Since effort alone doesn\u2019t necessarily make a task complex, its influence is moderate in the overall calculation.<\/p>\n\n\n\n<p>3. <strong>Risk (Weight: 1.5)<\/strong><\/p>\n\n\n\n<p>\u2022 Risk is weighted <strong>1.5<\/strong>, reflecting that uncertainty or potential obstacles add extra difficulty. If there\u2019s a high level of risk (e.g., dependencies on external systems or untested technology), it raises the story points to account for possible issues.<\/p>\n\n\n\n<p>4. <strong>Uncertainty (Weight: 1.2)<\/strong><\/p>\n\n\n\n<p>\u2022 Uncertainty has a weight of <strong>1.2<\/strong>, meaning tasks with vague or incomplete requirements add some extra difficulty. This accounts for time and effort needed to clarify or adjust requirements and makes the score slightly higher if the task is less well-defined.<\/p>\n\n\n\n<p>5. <strong>Dependencies (Weight: 1.3)<\/strong><\/p>\n\n\n\n<p>\u2022 Dependencies have a weight of <strong>1.3<\/strong>, which slightly increases the score if a task relies on other tasks or teams. This factor represents coordination time and potential delays, making it more complex than independent tasks.<\/p>\n\n\n\n<p>6. <strong>Knowledge (Weight: 1.4)<\/strong><\/p>\n\n\n\n<p>\u2022 Knowledge is weighted <strong>1.4<\/strong>, representing the team\u2019s familiarity with the task. If a task requires skills that the team doesn\u2019t have extensive experience in, it\u2019s expected to take more time and effort, raising the story points.<\/p>\n\n\n\n<p>7. <strong>Repetition (Weight: -0.5)<\/strong><\/p>\n\n\n\n<p>\u2022 Repetition has a weight of <strong>-0.5<\/strong>, meaning it reduces the score when similar tasks have been done frequently before. When a task is repetitive, it usually becomes easier and quicker over time, so familiarity decreases the overall story points by a small amount.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Below is a sample Story Point calculator which can be used in estimating. These are just some sample factors and each organization can chose a different configuration. Note the example below uses weights. Story Point Estimator Story Point Estimator Complexity (1-3): Effort (1-3): Risk (1-3): Uncertainty (1-3): Dependencies (1-3): Knowledge (1-3): Repetition (1-3): Calculate Story ... <a title=\"Story Point Calculator\" class=\"read-more\" href=\"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/\" aria-label=\"Read more about Story Point Calculator\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-983","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Story Point Calculator - Bijan Marjan<\/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:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Story Point Calculator\" \/>\n<meta property=\"og:description\" content=\"Below is a sample Story Point calculator which can be used in estimating. These are just some sample factors and each organization can chose a different configuration. Note the example below uses weights. Story Point Estimator Story Point Estimator Complexity (1-3): Effort (1-3): Risk (1-3): Uncertainty (1-3): Dependencies (1-3): Knowledge (1-3): Repetition (1-3): Calculate Story ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"Bijan Marjan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/bijan.marjan\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/bijan.marjan\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-26T15:08:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-26T15:27:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-content\/uploads\/2023\/07\/Screenshot-2023-07-06-at-3.31.12-PM.png\" \/>\n\t<meta property=\"og:image:width\" content=\"271\" \/>\n\t<meta property=\"og:image:height\" content=\"272\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"bmarjan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"bmarjan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/story-point-calculator\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/story-point-calculator\\\/\"},\"author\":{\"name\":\"bmarjan\",\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/#\\\/schema\\\/person\\\/e4942942c45da1677513ebc1c941e15c\"},\"headline\":\"Story Point Calculator\",\"datePublished\":\"2024-10-26T15:08:47+00:00\",\"dateModified\":\"2024-10-26T15:27:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/story-point-calculator\\\/\"},\"wordCount\":405,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/#\\\/schema\\\/person\\\/e4942942c45da1677513ebc1c941e15c\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/story-point-calculator\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/story-point-calculator\\\/\",\"url\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/story-point-calculator\\\/\",\"name\":\"Story Point Calculator - Bijan Marjan\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/#website\"},\"datePublished\":\"2024-10-26T15:08:47+00:00\",\"dateModified\":\"2024-10-26T15:27:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/story-point-calculator\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/story-point-calculator\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/story-point-calculator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Story Point Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/#website\",\"url\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/\",\"name\":\"Bijan Marjan\",\"description\":\"Welcome to my Site\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/#\\\/schema\\\/person\\\/e4942942c45da1677513ebc1c941e15c\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/#\\\/schema\\\/person\\\/e4942942c45da1677513ebc1c941e15c\",\"name\":\"bmarjan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/IMG_5379.jpg\",\"url\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/IMG_5379.jpg\",\"contentUrl\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/IMG_5379.jpg\",\"width\":600,\"height\":800,\"caption\":\"bmarjan\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/IMG_5379.jpg\"},\"sameAs\":[\"http:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\",\"https:\\\/\\\/www.facebook.com\\\/bijan.marjan\",\"https:\\\/\\\/www.instagram.com\\\/instantbijan\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/bijanmarjan\\\/\"],\"url\":\"https:\\\/\\\/www.bijanmarjan.com\\\/wordpress-main\\\/author\\\/bmarjan\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Story Point Calculator - Bijan Marjan","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.bijanmarjan.com\/wordpress-main\/story-point-calculator\/","og_locale":"en_US","og_type":"article","og_title":"Story Point Calculator","og_description":"Below is a sample Story Point calculator which can be used in estimating. These are just some sample factors and each organization can chose a different configuration. Note the example below uses weights. Story Point Estimator Story Point Estimator Complexity (1-3): Effort (1-3): Risk (1-3): Uncertainty (1-3): Dependencies (1-3): Knowledge (1-3): Repetition (1-3): Calculate Story ... Read more","og_url":"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/","og_site_name":"Bijan Marjan","article_publisher":"https:\/\/www.facebook.com\/bijan.marjan","article_author":"https:\/\/www.facebook.com\/bijan.marjan","article_published_time":"2024-10-26T15:08:47+00:00","article_modified_time":"2024-10-26T15:27:43+00:00","og_image":[{"width":271,"height":272,"url":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-content\/uploads\/2023\/07\/Screenshot-2023-07-06-at-3.31.12-PM.png","type":"image\/png"}],"author":"bmarjan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"bmarjan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/#article","isPartOf":{"@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/"},"author":{"name":"bmarjan","@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/#\/schema\/person\/e4942942c45da1677513ebc1c941e15c"},"headline":"Story Point Calculator","datePublished":"2024-10-26T15:08:47+00:00","dateModified":"2024-10-26T15:27:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/"},"wordCount":405,"commentCount":0,"publisher":{"@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/#\/schema\/person\/e4942942c45da1677513ebc1c941e15c"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/","url":"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/","name":"Story Point Calculator - Bijan Marjan","isPartOf":{"@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/#website"},"datePublished":"2024-10-26T15:08:47+00:00","dateModified":"2024-10-26T15:27:43+00:00","breadcrumb":{"@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/story-point-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.bijanmarjan.com\/wordpress-main\/"},{"@type":"ListItem","position":2,"name":"Story Point Calculator"}]},{"@type":"WebSite","@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/#website","url":"https:\/\/www.bijanmarjan.com\/wordpress-main\/","name":"Bijan Marjan","description":"Welcome to my Site","publisher":{"@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/#\/schema\/person\/e4942942c45da1677513ebc1c941e15c"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bijanmarjan.com\/wordpress-main\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/#\/schema\/person\/e4942942c45da1677513ebc1c941e15c","name":"bmarjan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-content\/uploads\/2023\/07\/IMG_5379.jpg","url":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-content\/uploads\/2023\/07\/IMG_5379.jpg","contentUrl":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-content\/uploads\/2023\/07\/IMG_5379.jpg","width":600,"height":800,"caption":"bmarjan"},"logo":{"@id":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-content\/uploads\/2023\/07\/IMG_5379.jpg"},"sameAs":["http:\/\/www.bijanmarjan.com\/wordpress-main","https:\/\/www.facebook.com\/bijan.marjan","https:\/\/www.instagram.com\/instantbijan","https:\/\/www.linkedin.com\/in\/bijanmarjan\/"],"url":"https:\/\/www.bijanmarjan.com\/wordpress-main\/author\/bmarjan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-json\/wp\/v2\/posts\/983","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-json\/wp\/v2\/comments?post=983"}],"version-history":[{"count":0,"href":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-json\/wp\/v2\/posts\/983\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-json\/wp\/v2\/media?parent=983"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-json\/wp\/v2\/categories?post=983"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bijanmarjan.com\/wordpress-main\/wp-json\/wp\/v2\/tags?post=983"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}