{"id":302,"date":"2019-06-04T15:51:46","date_gmt":"2019-06-04T19:51:46","guid":{"rendered":"https:\/\/pressbooks.library.ryerson.ca\/iwacc\/?post_type=chapter&#038;p=302"},"modified":"2022-12-16T10:32:05","modified_gmt":"2022-12-16T15:32:05","slug":"introduction-to-wai-aria","status":"publish","type":"chapter","link":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/","title":{"raw":"Introduction to WAI-ARIA","rendered":"Introduction to WAI-ARIA"},"content":{"raw":"An important and recent addition to the family of accessibility standards created by the W3C is WAI-ARIA. This acronym stands for \u201cWeb Accessibility Initiative,\u201d the W3C subgroup that created the standard, and \u201cAccessible Rich Internet Applications,\u201d the name of the standard itself. Here we touch on WAI-ARIA without going into much detail. It is primarily aimed at developers who create custom web applications and widgets using non-standard HTML. For example, a developer might create a checkbox out of an HTML <code>&lt;div&gt;<\/code>element. WAI-ARIA allows a developer to assign checkbox semantics to that <code>&lt;div&gt;<\/code>, like its role (i.e., <code style=\"background-color: #ffffff\">role=\"checkbox\"<\/code>) and its state (i.e., <code style=\"background-color: #ffffff\">aria-checked=\"true\"<\/code> or <code style=\"background-color: #ffffff\">aria-checked=\"false\"<\/code>), so when it is encountered by an assistive technology, the technology recognizes that <code>&lt;div&gt; <\/code>as a checkbox.\r\n<div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\r\n\r\n<strong>What is a <code>&lt;div&gt;<\/code><\/strong>?\r\n\r\nThe <code>&lt;div&gt;<\/code> tag defines a division or a section in an HTML document.\r\n\r\nThe <code>&lt;div&gt; <\/code> element is often used as a container for other HTML elements to style them with CSS or to perform certain tasks with JavaScript.\r\n\r\n<a href=\"https:\/\/www.w3schools.com\/tags\/tag_div.asp\">Source: W3C<\/a>\r\n\r\n<\/div>\r\nYou were indirectly introduced to some of the semantics described in the paragraph above in Activity 1. As you were navigating through the Showcase demo website, you would have heard a number of WAI-ARIA elements announced by your screen reader.\r\n\r\nAs part of what you are learning here, just knowing of the existence of WAI-ARIA will be sufficient. Here, we will provide an overview of how it works and when it should be used, along with an example you can try with your screen reader to develop a little practical experience with it.\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #f66\"><strong>Key Point: <\/strong>Just be familiar with the existence of WAI-ARIA and the purpose it serves as part of your learning here. WAI-ARIA makes custom-created web elements meaningful to assistive technology users.<\/div>\r\n<h2>Static vs. Dynamic WAI-ARIA<\/h2>\r\nThough primarily aimed at developers and programmers, there is some WAI-ARIA that can be used in a static form. That is, a person writing HTML can write WAI-ARIA \u00a0right into the HTML. The landmark navigation elements you were introduced to earlier is one example of a static use of HTML. These landmarks are a type of role, specifically used to define regions on a web page. There are eight landmark roles, listed here.\r\n<h3>WAI-ARIA Landmark Roles<\/h3>\r\n<ul>\r\n \t<li>Banner<\/li>\r\n \t<li>Navigation<\/li>\r\n \t<li>Main<\/li>\r\n \t<li>Complimentary<\/li>\r\n \t<li>Contentinfo<\/li>\r\n \t<li>Search<\/li>\r\n \t<li>Form<\/li>\r\n \t<li>Region<\/li>\r\n<\/ul>\r\nOther roles can also be used statically, though it is generally necessary to update their associated states and properties using JavaScript. Let\u2019s take the WAI-ARIA semantics for a menu as an example. The main WAI-ARIA elements for defining menus are as follows:\r\n<h4>Roles<\/h4>\r\n<ul>\r\n \t<li><strong>menubar<\/strong> (defines a role for a container, typically a top level list, where multiple submenus are present)<\/li>\r\n \t<li><strong>menu<\/strong> (the role assigned to each submenu)<\/li>\r\n \t<li><strong>menuitem<\/strong> (the role assigned to each item in a submenu)<\/li>\r\n<\/ul>\r\n<h4>Properties<\/h4>\r\n<ul>\r\n \t<li><strong>aria-haspopup<\/strong> (assigned to menu items that are the parent of a submenu that can be opened)<\/li>\r\n \t<li><strong>aria-activedescendant<\/strong> (the ID value of the menu item that is currently active)<\/li>\r\n \t<li><strong>aria-describedby <\/strong>or<strong> aria-labelledby<\/strong> (refers to the ID of an element containing a description of the menu or instruction on how to operate it)<\/li>\r\n<\/ul>\r\n<h4>States<\/h4>\r\n<ul>\r\n \t<li><strong>aria-expanded<\/strong> (when a menu item\u2019s submenu is open, aria-expanded is set to \u201ctrue\u201d; otherwise, it should be set to false)<\/li>\r\n \t<li><strong>aria-hidden<\/strong> (set to true to hide inactive submenus; set to false when a submenu is displayed)<\/li>\r\n<\/ul>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\"><strong>Suggested Reading: <\/strong>For more about WAI-ARIA for menus, see <a href=\"https:\/\/www.w3.org\/WAI\/ARIA\/apg\/patterns\/menu\/\">WAI-ARIA Authoring Practices (Menus)<\/a>.<\/div>\r\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #b9f\">\r\n<h4><strong><a id=\"Try This: Revisit the Showcase Menu\"><\/a>Try This: Revisit the Showcase Menu<\/strong><\/h4>\r\nNow that you\u2019ve been introduced to some of the WAI-ARIA elements that might be used with a menu, revisit the menu on the Showcase site (reproduced below) <em><strong>using your screen reader<\/strong><\/em>. Navigate through the first menu below using the Tab and arrow keys. Listen carefully to what the screen reader is announcing. Then, do the same for the second menu below. Are you able to pick out the difference? Though they both operate exactly the same, only the first menu has WAI-ARIA menu semantics added to it.\r\n\r\n(Note: The links in the menu items are not active.)\r\n<h5>Menu <strong>with <\/strong>WAI-ARIA<\/h5>\r\n[h5p id=\"11\"]\r\n<h5>Menu <em>without<\/em> WAI-ARIA<\/h5>\r\n[h5p id=\"12\"]\r\n\r\n<\/div>\r\n<h2>When to Use WAI-ARIA<\/h2>\r\nIt is important to understand when and when not to use WAI-ARIA. If incorrectly used, it can create more problems than it resolves. Any standard uses of HTML do not need WAI-ARIA. For example, an HTML <code>&lt;form&gt;<\/code> does not need its role defined as a form (i.e., <code>role=\"form\"<\/code>). It already has this role defined by default.\r\n\r\nAs described above, if a developer wanted to create a custom checkbox using a <code>&lt;div&gt;<\/code> element, in that case, <code>role=\"checkbox\"<\/code> would be added as an attribute of the <code>&lt;div&gt;<\/code>. Assistive technologies would then recognize the <code>&lt;div&gt;<\/code> as a checkbox. That said, however, when there is an HTML element that serves a particular purpose, like a checkbox, it is generally better to use the standard checkbox rather than creating a custom one.\r\n\r\nWhen navigating through the menu examples above, you may notice that the list semantics of the second menu are suppressed in the first menu. In this case, replacing the list semantics with menu semantics is desired. On the other hand, if HTML headings were being used as headers in a collapsible menu, adding the <code>role=\"menu\"<\/code> attribute to the heading would suppress the structural semantics associated with the heading. This potentially upsets the structure of the document and removes headings as a means of navigation.\r\n<p style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\"><strong>Suggested Reading:<\/strong> For a detailed, technical look at WAI-ARIA, see <a href=\"https:\/\/pressbooks.library.torontomu.ca\/wafd\/\">Web Accessibility for Developers<\/a>.<\/p>\r\n\r\n<\/div>","rendered":"<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_80 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Contents<\/p>\n<label for=\"ez-toc-cssicon-toggle-item-69d06c088444d\" class=\"ez-toc-cssicon-toggle-label\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/label><input type=\"checkbox\"  id=\"ez-toc-cssicon-toggle-item-69d06c088444d\"  aria-label=\"Toggle\" \/><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/#Static_vs_Dynamic_WAI-ARIA\" >Static vs. Dynamic WAI-ARIA<\/a><ul class='ez-toc-list-level-3' ><li class='ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/#WAI-ARIA_Landmark_Roles\" >WAI-ARIA Landmark Roles<\/a><ul class='ez-toc-list-level-4' ><li class='ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/#Roles\" >Roles<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/#Properties\" >Properties<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/#States\" >States<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-4'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/#Try_This_Revisit_the_Showcase_Menu\" >Try This: Revisit the Showcase Menu<\/a><ul class='ez-toc-list-level-5' ><li class='ez-toc-heading-level-5'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/#Menu_with_WAI-ARIA\" >Menu with WAI-ARIA<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-5'><a class=\"ez-toc-link ez-toc-heading-8\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/#Menu_without_WAI-ARIA\" >Menu without WAI-ARIA<\/a><\/li><\/ul><\/li><\/ul><\/li><\/ul><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-9\" href=\"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/chapter\/introduction-to-wai-aria\/#When_to_Use_WAI-ARIA\" >When to Use WAI-ARIA<\/a><\/li><\/ul><\/nav><\/div>\n<p>An important and recent addition to the family of accessibility standards created by the W3C is WAI-ARIA. This acronym stands for \u201cWeb Accessibility Initiative,\u201d the W3C subgroup that created the standard, and \u201cAccessible Rich Internet Applications,\u201d the name of the standard itself. Here we touch on WAI-ARIA without going into much detail. It is primarily aimed at developers who create custom web applications and widgets using non-standard HTML. For example, a developer might create a checkbox out of an HTML <code>&lt;div&gt;<\/code>element. WAI-ARIA allows a developer to assign checkbox semantics to that <code>&lt;div&gt;<\/code>, like its role (i.e., <code style=\"background-color: #ffffff\">role=\"checkbox\"<\/code>) and its state (i.e., <code style=\"background-color: #ffffff\">aria-checked=\"true\"<\/code> or <code style=\"background-color: #ffffff\">aria-checked=\"false\"<\/code>), so when it is encountered by an assistive technology, the technology recognizes that <code>&lt;div&gt; <\/code>as a checkbox.<\/p>\n<div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd\" title=\"definition\">\n<p><strong>What is a <code>&lt;div&gt;<\/code><\/strong>?<\/p>\n<p>The <code>&lt;div&gt;<\/code> tag defines a division or a section in an HTML document.<\/p>\n<p>The <code>&lt;div&gt; <\/code> element is often used as a container for other HTML elements to style them with CSS or to perform certain tasks with JavaScript.<\/p>\n<p><a href=\"https:\/\/www.w3schools.com\/tags\/tag_div.asp\">Source: W3C<\/a><\/p>\n<\/div>\n<p>You were indirectly introduced to some of the semantics described in the paragraph above in Activity 1. As you were navigating through the Showcase demo website, you would have heard a number of WAI-ARIA elements announced by your screen reader.<\/p>\n<p>As part of what you are learning here, just knowing of the existence of WAI-ARIA will be sufficient. Here, we will provide an overview of how it works and when it should be used, along with an example you can try with your screen reader to develop a little practical experience with it.<\/p>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #f66\"><strong>Key Point: <\/strong>Just be familiar with the existence of WAI-ARIA and the purpose it serves as part of your learning here. WAI-ARIA makes custom-created web elements meaningful to assistive technology users.<\/div>\n<h2><span class=\"ez-toc-section\" id=\"Static_vs_Dynamic_WAI-ARIA\"><\/span>Static vs. Dynamic WAI-ARIA<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Though primarily aimed at developers and programmers, there is some WAI-ARIA that can be used in a static form. That is, a person writing HTML can write WAI-ARIA \u00a0right into the HTML. The landmark navigation elements you were introduced to earlier is one example of a static use of HTML. These landmarks are a type of role, specifically used to define regions on a web page. There are eight landmark roles, listed here.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"WAI-ARIA_Landmark_Roles\"><\/span>WAI-ARIA Landmark Roles<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<ul>\n<li>Banner<\/li>\n<li>Navigation<\/li>\n<li>Main<\/li>\n<li>Complimentary<\/li>\n<li>Contentinfo<\/li>\n<li>Search<\/li>\n<li>Form<\/li>\n<li>Region<\/li>\n<\/ul>\n<p>Other roles can also be used statically, though it is generally necessary to update their associated states and properties using JavaScript. Let\u2019s take the WAI-ARIA semantics for a menu as an example. The main WAI-ARIA elements for defining menus are as follows:<\/p>\n<h4><span class=\"ez-toc-section\" id=\"Roles\"><\/span>Roles<span class=\"ez-toc-section-end\"><\/span><\/h4>\n<ul>\n<li><strong>menubar<\/strong> (defines a role for a container, typically a top level list, where multiple submenus are present)<\/li>\n<li><strong>menu<\/strong> (the role assigned to each submenu)<\/li>\n<li><strong>menuitem<\/strong> (the role assigned to each item in a submenu)<\/li>\n<\/ul>\n<h4><span class=\"ez-toc-section\" id=\"Properties\"><\/span>Properties<span class=\"ez-toc-section-end\"><\/span><\/h4>\n<ul>\n<li><strong>aria-haspopup<\/strong> (assigned to menu items that are the parent of a submenu that can be opened)<\/li>\n<li><strong>aria-activedescendant<\/strong> (the ID value of the menu item that is currently active)<\/li>\n<li><strong>aria-describedby <\/strong>or<strong> aria-labelledby<\/strong> (refers to the ID of an element containing a description of the menu or instruction on how to operate it)<\/li>\n<\/ul>\n<h4><span class=\"ez-toc-section\" id=\"States\"><\/span>States<span class=\"ez-toc-section-end\"><\/span><\/h4>\n<ul>\n<li><strong>aria-expanded<\/strong> (when a menu item\u2019s submenu is open, aria-expanded is set to \u201ctrue\u201d; otherwise, it should be set to false)<\/li>\n<li><strong>aria-hidden<\/strong> (set to true to hide inactive submenus; set to false when a submenu is displayed)<\/li>\n<\/ul>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\"><strong>Suggested Reading: <\/strong>For more about WAI-ARIA for menus, see <a href=\"https:\/\/www.w3.org\/WAI\/ARIA\/apg\/patterns\/menu\/\">WAI-ARIA Authoring Practices (Menus)<\/a>.<\/div>\n<div style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #b9f\">\n<h4><strong><a><\/a>Try This: Revisit the Showcase Menu<\/strong><\/h4>\n<p>Now that you\u2019ve been introduced to some of the WAI-ARIA elements that might be used with a menu, revisit the menu on the Showcase site (reproduced below) <em><strong>using your screen reader<\/strong><\/em>. Navigate through the first menu below using the Tab and arrow keys. Listen carefully to what the screen reader is announcing. Then, do the same for the second menu below. Are you able to pick out the difference? Though they both operate exactly the same, only the first menu has WAI-ARIA menu semantics added to it.<\/p>\n<p>(Note: The links in the menu items are not active.)<\/p>\n<h5><span class=\"ez-toc-section\" id=\"Menu_with_WAI-ARIA\"><\/span>Menu <strong>with <\/strong>WAI-ARIA<span class=\"ez-toc-section-end\"><\/span><\/h5>\n<div id=\"h5p-11\">\n<div class=\"h5p-content\" data-content-id=\"11\"><\/div>\n<\/div>\n<h5><span class=\"ez-toc-section\" id=\"Menu_without_WAI-ARIA\"><\/span>Menu <em>without<\/em> WAI-ARIA<span class=\"ez-toc-section-end\"><\/span><\/h5>\n<div id=\"h5p-12\">\n<div class=\"h5p-content\" data-content-id=\"12\"><\/div>\n<\/div>\n<\/div>\n<h2><span class=\"ez-toc-section\" id=\"When_to_Use_WAI-ARIA\"><\/span>When to Use WAI-ARIA<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>It is important to understand when and when not to use WAI-ARIA. If incorrectly used, it can create more problems than it resolves. Any standard uses of HTML do not need WAI-ARIA. For example, an HTML <code>&lt;form&gt;<\/code> does not need its role defined as a form (i.e., <code>role=\"form\"<\/code>). It already has this role defined by default.<\/p>\n<p>As described above, if a developer wanted to create a custom checkbox using a <code>&lt;div&gt;<\/code> element, in that case, <code>role=\"checkbox\"<\/code> would be added as an attribute of the <code>&lt;div&gt;<\/code>. Assistive technologies would then recognize the <code>&lt;div&gt;<\/code> as a checkbox. That said, however, when there is an HTML element that serves a particular purpose, like a checkbox, it is generally better to use the standard checkbox rather than creating a custom one.<\/p>\n<p>When navigating through the menu examples above, you may notice that the list semantics of the second menu are suppressed in the first menu. In this case, replacing the list semantics with menu semantics is desired. On the other hand, if HTML headings were being used as headers in a collapsible menu, adding the <code>role=\"menu\"<\/code> attribute to the heading would suppress the structural semantics associated with the heading. This potentially upsets the structure of the document and removes headings as a means of navigation.<\/p>\n<p style=\"margin: 1em 0;padding: 1em;border: 1px solid #ddd;border-left: 10px solid #0000ff\"><strong>Suggested Reading:<\/strong> For a detailed, technical look at WAI-ARIA, see <a href=\"https:\/\/pressbooks.library.torontomu.ca\/wafd\/\">Web Accessibility for Developers<\/a>.<\/p>\n<\/div>\n","protected":false},"author":100,"menu_order":3,"template":"","meta":{"pb_show_title":"on","pb_short_title":"","pb_subtitle":"","pb_authors":[],"pb_section_license":""},"chapter-type":[],"contributor":[],"license":[],"class_list":["post-302","chapter","type-chapter","status-publish","hentry"],"part":36,"_links":{"self":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters\/302","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters"}],"about":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/types\/chapter"}],"author":[{"embeddable":true,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/users\/100"}],"version-history":[{"count":23,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters\/302\/revisions"}],"predecessor-version":[{"id":1371,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters\/302\/revisions\/1371"}],"part":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/parts\/36"}],"metadata":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapters\/302\/metadata\/"}],"wp:attachment":[{"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/media?parent=302"}],"wp:term":[{"taxonomy":"chapter-type","embeddable":true,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/pressbooks\/v2\/chapter-type?post=302"},{"taxonomy":"contributor","embeddable":true,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/contributor?post=302"},{"taxonomy":"license","embeddable":true,"href":"https:\/\/pressbooks.library.torontomu.ca\/iwacc\/wp-json\/wp\/v2\/license?post=302"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}