{"id":1405,"date":"2024-04-23T10:19:09","date_gmt":"2024-04-23T10:19:09","guid":{"rendered":"https:\/\/www.skill-plan.com\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/"},"modified":"2024-06-12T09:34:04","modified_gmt":"2024-06-12T09:34:04","slug":"master-the-kritis-challenge-a-quiz-on-the-bsi-regulation","status":"publish","type":"post","link":"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/","title":{"rendered":"Master the KRITIS challenge: a quiz on the BSI regulation"},"content":{"rendered":"\n\n\n\n    <meta charset=\"UTF-8\"\/>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\/>\n    <title>IT security quiz<\/title>\n    <style>\n        \/* Dein CSS-Styling hier *\/\n    <\/style>\n\n\n    <div class=\"container\">\n        <h1>IT security quiz<\/h1>\n        <div class=\"question\" id=\"question1\">\n            <h2>Which security objective is particularly important in relation to critical infrastructures?<\/h2>\n            <div class=\"options\">\n                <label>\n                    <input type=\"radio\" name=\"question1\" value=\"a\"\/>  a) Data integrity\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question1\" value=\"b\"\/>  b) Availability\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question1\" value=\"c\"\/>  c) Authenticity and confidentiality\n                <\/label>\n            <\/div>\n            <button onclick=\"checkAnswer(1)\">Next<\/button>\n        <\/div>\n        <div class=\"question\" id=\"question2\" style=\"display: none;\">\n            <h2>Which organizations fall under the scope of the CRITIS Regulation?<\/h2>\n            <div class=\"options\">\n                <label>\n                    <input type=\"radio\" name=\"question2\" value=\"a\"\/>  a) Operators of energy networks\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question2\" value=\"b\"\/>  b) Volunteer fire departments\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question2\" value=\"c\"\/>  c) Companies in the retail sector\n                <\/label>\n            <\/div>\n            <button onclick=\"checkAnswer(2)\">Next<\/button>\n        <\/div>\n        <div class=\"question\" id=\"question3\" style=\"display: none;\">\n            <h2>What measures are required under the KRITIS Regulation to ensure IT security?<\/h2>\n            <div class=\"options\">\n                <label>\n                    <input type=\"radio\" name=\"question3\" value=\"a\"\/>  a) Implementation of intrusion detection systems (IDS)\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question3\" value=\"b\"\/>  b) Encryption of all e-mails\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question3\" value=\"c\"\/>  c) Daily system backups to external hard disks\n                <\/label>\n            <\/div>\n            <button onclick=\"checkAnswer(3)\">Next<\/button>\n        <\/div>\n        <div class=\"question\" id=\"question4\" style=\"display: none;\">\n            <h2>What sanctions do organizations face if they fail to meet the requirements of the KRITIS Regulation?<\/h2>\n            <div class=\"options\">\n                <label>\n                    <input type=\"radio\" name=\"question4\" value=\"a\"\/>  a) High fines\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question4\" value=\"b\"\/>  b) Loss of the operator license\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question4\" value=\"c\"\/>  c) Warning by the local police\n                <\/label>\n            <\/div>\n            <button onclick=\"checkAnswer(4)\">Next<\/button>\n        <\/div>\n        <div class=\"question\" id=\"question5\" style=\"display: none;\">\n            <h2>Which authority is responsible for implementing the KRITIS Regulation?<\/h2>\n            <div class=\"options\">\n                <label>\n                    <input type=\"radio\" name=\"question5\" value=\"a\"\/>  a) Federal Office for Information Security (BSI)\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question5\" value=\"b\"\/>  b) Federal Ministry of Transport and Digital Infrastructure\n                <\/label>\n                <label>\n                    <input type=\"radio\" name=\"question5\" value=\"c\"\/>  c) State Office of Criminal Investigation\n                <\/label>\n            <\/div>\n            <button onclick=\"checkAnswer(5)\">Next<\/button>\n        <\/div>\n        <div id=\"feedback\"><\/div>\n    <\/div>\n\n    <script>\n        var currentQuestion = 1;\n        var totalQuestions = document.querySelectorAll('.question').length;\n\n        function checkAnswer(questionNumber) {\n            var answer = document.querySelector('input[name=\"question' + questionNumber + '\"]:checked');\n\n            if (!answer) {\n                document.getElementById('feedback').innerHTML = \"Bitte w\u00e4hlen Sie eine Antwort aus.\";\n                return;\n            }\n\n            var correctAnswer;\n            var explanation;\n            switch (questionNumber) {\n                case 1:\n                    correctAnswer = \"b\";\n                    explanation = \"Verf\u00fcgbarkeit ist in Bezug auf kritische Infrastrukturen besonders wichtig.\";\n                    break;\n                case 2:\n                    correctAnswer = \"a\";\n                    explanation = \"Betreiber von Energienetzen fallen unter den Geltungsbereich der KRITIS-Verordnung.\";\n                    break;\n                case 3:\n                    correctAnswer = \"a\";\n                    explanation = \"Implementierung von Intrusion Detection Systemen (IDS) sind gem\u00e4\u00df der KRITIS-Verordnung zur Gew\u00e4hrleistung der IT-Sicherheit erforderlich.\";\n                    break;\n                case 4:\n                    correctAnswer = \"a\";\n                    explanation = \"Organisationen drohen hohe Bu\u00dfgelder bei Nichterf\u00fcllung der Anforderungen der KRITIS-Verordnung.\";\n                    break;\n                case 5:\n                    correctAnswer = \"a\";\n                    explanation = \"Das Bundesamt f\u00fcr Sicherheit in der Informationstechnik (BSI) ist f\u00fcr die Umsetzung der KRITIS-Verordnung zust\u00e4ndig.\";\n                    break;\n                default:\n                    break;\n            }\n\n            if (answer.value === correctAnswer) {\n                document.getElementById('feedback').innerHTML = \"Richtig! \" + explanation;\n                document.getElementById('feedback').style.color = \"#008000\"; \/\/ Gr\u00fcn f\u00fcr richtig\n            } else {\n                document.getElementById('feedback').innerHTML = \"Falsch. Die richtige Antwort w\u00e4re: \" + explanation;\n                document.getElementById('feedback').style.color = \"#ff0000\"; \/\/ Rot f\u00fcr falsch\n            }\n\n            var current = document.getElementById('question' + questionNumber);\n            var next = document.getElementById('question' + (questionNumber + 1));\n\n            if (currentQuestion % 2 === 0) {\n                \/\/ Nach dem zweiten Klick auf \"Weiter\" zur n\u00e4chsten Frage wechseln\n                current.style.display = 'none';\n                next.style.display = 'block';\n                currentQuestion++;\n            } else {\n                \/\/ Beim ersten Klick auf \"Weiter\" die Antwort anzeigen\n                currentQuestion++;\n            }\n        }\n    <\/script>\n\n\n\n","protected":false},"excerpt":{"rendered":"<p>IT security quiz IT security quiz Which security objective is particularly important in relation to critical infrastructures? a) Data integrity b) Availability c) Authenticity and confidentiality Next Which organizations fall under the scope of the CRITIS Regulation? a) Operators of energy networks b) Volunteer fire departments c) Companies in the retail sector Next What measures [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1405","post","type-post","status-publish","format-standard","hentry","category-unkategorisiert"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Master the KRITIS challenge: a quiz on the BSI regulation - Skillplan GmbH<\/title>\n<meta name=\"description\" content=\"Are you ready to test your knowledge of the BSI&#039;s KRITIS regulation? Our quiz offers you the opportunity to test your understanding of critical infrastructures and the relevant regulations. Test your knowledge now and see how familiar you are with the requirements of the KRITIS Regulation\" \/>\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.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Master the KRITIS challenge: a quiz on the BSI regulation - Skillplan GmbH\" \/>\n<meta property=\"og:description\" content=\"Are you ready to test your knowledge of the BSI&#039;s KRITIS regulation? Our quiz offers you the opportunity to test your understanding of critical infrastructures and the relevant regulations. Test your knowledge now and see how familiar you are with the requirements of the KRITIS Regulation\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/\" \/>\n<meta property=\"og:site_name\" content=\"Skillplan GmbH\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skillplangmbh\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-23T10:19:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-12T09:34:04+00:00\" \/>\n<meta name=\"author\" content=\"Christl Lang\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@TeamSkillplan\" \/>\n<meta name=\"twitter:site\" content=\"@TeamSkillplan\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christl Lang\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\\\/\"},\"author\":{\"name\":\"Christl Lang\",\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/#\\\/schema\\\/person\\\/8b9e1834ceccb3aa9ced82607a61c9ce\"},\"headline\":\"Master the KRITIS challenge: a quiz on the BSI regulation\",\"datePublished\":\"2024-04-23T10:19:09+00:00\",\"dateModified\":\"2024-06-12T09:34:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\\\/\"},\"wordCount\":159,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/#organization\"},\"articleSection\":[\"Unkategorisiert\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\\\/\",\"url\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\\\/\",\"name\":\"Master the KRITIS challenge: a quiz on the BSI regulation - Skillplan GmbH\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/#website\"},\"datePublished\":\"2024-04-23T10:19:09+00:00\",\"dateModified\":\"2024-06-12T09:34:04+00:00\",\"description\":\"Are you ready to test your knowledge of the BSI's KRITIS regulation? Our quiz offers you the opportunity to test your understanding of critical infrastructures and the relevant regulations. Test your knowledge now and see how familiar you are with the requirements of the KRITIS Regulation\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Master the KRITIS challenge: a quiz on the BSI regulation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/\",\"name\":\"Skillplan GmbH\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/#organization\",\"name\":\"Skillplan GmbH\",\"url\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skill-plan.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Skill-Plan.png\",\"contentUrl\":\"https:\\\/\\\/www.skill-plan.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/Skill-Plan.png\",\"width\":500,\"height\":500,\"caption\":\"Skillplan GmbH\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skillplangmbh\",\"https:\\\/\\\/x.com\\\/TeamSkillplan\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/#\\\/schema\\\/person\\\/8b9e1834ceccb3aa9ced82607a61c9ce\",\"name\":\"Christl Lang\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/797f68f9d3b3f9263deb80d3b55de2d70108fd7f714cff41081406e11fa1b58f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/797f68f9d3b3f9263deb80d3b55de2d70108fd7f714cff41081406e11fa1b58f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/797f68f9d3b3f9263deb80d3b55de2d70108fd7f714cff41081406e11fa1b58f?s=96&d=mm&r=g\",\"caption\":\"Christl Lang\"},\"url\":\"https:\\\/\\\/www.skill-plan.com\\\/en\\\/author\\\/clang\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Master the KRITIS challenge: a quiz on the BSI regulation - Skillplan GmbH","description":"Are you ready to test your knowledge of the BSI's KRITIS regulation? Our quiz offers you the opportunity to test your understanding of critical infrastructures and the relevant regulations. Test your knowledge now and see how familiar you are with the requirements of the KRITIS Regulation","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.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/","og_locale":"en_US","og_type":"article","og_title":"Master the KRITIS challenge: a quiz on the BSI regulation - Skillplan GmbH","og_description":"Are you ready to test your knowledge of the BSI's KRITIS regulation? Our quiz offers you the opportunity to test your understanding of critical infrastructures and the relevant regulations. Test your knowledge now and see how familiar you are with the requirements of the KRITIS Regulation","og_url":"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/","og_site_name":"Skillplan GmbH","article_publisher":"https:\/\/www.facebook.com\/skillplangmbh","article_published_time":"2024-04-23T10:19:09+00:00","article_modified_time":"2024-06-12T09:34:04+00:00","author":"Christl Lang","twitter_card":"summary_large_image","twitter_creator":"@TeamSkillplan","twitter_site":"@TeamSkillplan","twitter_misc":{"Written by":"Christl Lang","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/#article","isPartOf":{"@id":"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/"},"author":{"name":"Christl Lang","@id":"https:\/\/www.skill-plan.com\/en\/#\/schema\/person\/8b9e1834ceccb3aa9ced82607a61c9ce"},"headline":"Master the KRITIS challenge: a quiz on the BSI regulation","datePublished":"2024-04-23T10:19:09+00:00","dateModified":"2024-06-12T09:34:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/"},"wordCount":159,"publisher":{"@id":"https:\/\/www.skill-plan.com\/en\/#organization"},"articleSection":["Unkategorisiert"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/","url":"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/","name":"Master the KRITIS challenge: a quiz on the BSI regulation - Skillplan GmbH","isPartOf":{"@id":"https:\/\/www.skill-plan.com\/en\/#website"},"datePublished":"2024-04-23T10:19:09+00:00","dateModified":"2024-06-12T09:34:04+00:00","description":"Are you ready to test your knowledge of the BSI's KRITIS regulation? Our quiz offers you the opportunity to test your understanding of critical infrastructures and the relevant regulations. Test your knowledge now and see how familiar you are with the requirements of the KRITIS Regulation","breadcrumb":{"@id":"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skill-plan.com\/en\/master-the-kritis-challenge-a-quiz-on-the-bsi-regulation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skill-plan.com\/en\/"},{"@type":"ListItem","position":2,"name":"Master the KRITIS challenge: a quiz on the BSI regulation"}]},{"@type":"WebSite","@id":"https:\/\/www.skill-plan.com\/en\/#website","url":"https:\/\/www.skill-plan.com\/en\/","name":"Skillplan GmbH","description":"","publisher":{"@id":"https:\/\/www.skill-plan.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skill-plan.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skill-plan.com\/en\/#organization","name":"Skillplan GmbH","url":"https:\/\/www.skill-plan.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skill-plan.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.skill-plan.com\/wp-content\/uploads\/2023\/06\/Skill-Plan.png","contentUrl":"https:\/\/www.skill-plan.com\/wp-content\/uploads\/2023\/06\/Skill-Plan.png","width":500,"height":500,"caption":"Skillplan GmbH"},"image":{"@id":"https:\/\/www.skill-plan.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skillplangmbh","https:\/\/x.com\/TeamSkillplan"]},{"@type":"Person","@id":"https:\/\/www.skill-plan.com\/en\/#\/schema\/person\/8b9e1834ceccb3aa9ced82607a61c9ce","name":"Christl Lang","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/797f68f9d3b3f9263deb80d3b55de2d70108fd7f714cff41081406e11fa1b58f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/797f68f9d3b3f9263deb80d3b55de2d70108fd7f714cff41081406e11fa1b58f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/797f68f9d3b3f9263deb80d3b55de2d70108fd7f714cff41081406e11fa1b58f?s=96&d=mm&r=g","caption":"Christl Lang"},"url":"https:\/\/www.skill-plan.com\/en\/author\/clang\/"}]}},"_links":{"self":[{"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/posts\/1405","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/comments?post=1405"}],"version-history":[{"count":2,"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/posts\/1405\/revisions"}],"predecessor-version":[{"id":1407,"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/posts\/1405\/revisions\/1407"}],"wp:attachment":[{"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/media?parent=1405"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/categories?post=1405"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skill-plan.com\/en\/wp-json\/wp\/v2\/tags?post=1405"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}