{"id":6506,"date":"2014-05-27T11:11:24","date_gmt":"2014-05-27T15:11:24","guid":{"rendered":"http:\/\/localhost\/documentation\/"},"modified":"2021-09-22T10:00:45","modified_gmt":"2021-09-22T14:00:45","slug":"gform_chosen_options","status":"publish","type":"post","link":"https:\/\/docs.gravityforms.com\/gform_chosen_options\/","title":{"rendered":"gform_chosen_options"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-description\">Description<\/h2>\n\n\n\n<p>Allows the <a href=\"http:\/\/harvesthq.github.com\/chosen\/\">Chosen<\/a> jQuery script settings for Drop Down and Multi-Select fields to be modified when the &#8220;Enable enhanced user interface&#8221; is checked. Fires when the form is loaded and has a field using Chosen.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-usage\">Usage<\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\n gform.addFilter( 'gform_chosen_options', function ( options, element ) {\n    return options;\n} );\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-parameters\">Parameters<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>options<\/strong> JS Object\n<p>The Chosen script options object. Additional documentation can be found in the <a href=\"https:\/\/github.com\/harvesthq\/chosen\/releases\/download\/v1.1.0\/chosen_v1.1.0.zip\">Chosen 1.1.0 release<\/a>.<\/p>\n<ul>\n<li><strong>allow_single_deselect<\/strong> <a href=\"\/bool\" data-autolink=\"autolink_bool\">bool<\/a>\n<p>When set to true on a single select, Chosen adds a UI element which selects the first element (if it is blank).<\/p>\n<\/li>\n<li>\n<p><strong>disable_search<\/strong> <a href=\"\/bool\" data-autolink=\"autolink_bool\">bool<\/a><\/p>\n<p>When set to true, Chosen will not display the search field (single selects only).<\/p>\n<\/li>\n<li>\n<p><strong>disable_search_threshold<\/strong> <a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a><\/p>\n<p>Hide the search input on single selects if there are fewer than (n) options.<\/p>\n<\/li>\n<li>\n<p><strong>enable_split_word_search<\/strong> <a href=\"\/bool\" data-autolink=\"autolink_bool\">bool<\/a><\/p>\n<p>By default, searching will match on any word within an option tag. Set this option to false if you want to only match on the entire text of an option tag.<\/p>\n<\/li>\n<li>\n<p><strong>inherit_select_classes<\/strong> <a href=\"\/bool\" data-autolink=\"autolink_bool\">bool<\/a><\/p>\n<p>When set to true, Chosen will grab any classes on the original select field and add them to Chosen\u2019s container div.<\/p>\n<\/li>\n<li>\n<p><strong>max_selected_options<\/strong> <a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a><\/p>\n<p>Limits how many options the user can select. When the limit is reached, the chosen:maxselected event is triggered.<\/p>\n<\/li>\n<li>\n<p><strong>no_results_text<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a><\/p>\n<p>The text to be displayed when no matching results are found. The current search is shown at the end of the text (e.g., No results match &#8220;Bad Search&#8221;).<\/p>\n<\/li>\n<li>\n<p><strong>placeholder_text_multiple<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a><\/p>\n<p>The text to be displayed as a placeholder when no options are selected for a multiple select.<\/p>\n<\/li>\n<li>\n<p><strong>placeholder_text_single<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a><\/p>\n<p>The text to be displayed as a placeholder when no options are selected for a single select.<\/p>\n<\/li>\n<li>\n<p><strong>search_contains<\/strong> <a href=\"\/bool\" data-autolink=\"autolink_bool\">bool<\/a><\/p>\n<p>By default, Chosen\u2019s search matches starting at the beginning of a word. Setting this option to true allows matches starting from anywhere within a word. This is especially useful for options that include a lot of special characters or phrases in ()s and []s.<\/p>\n<\/li>\n<li>\n<p><strong>single_backstroke_delete<\/strong> <a href=\"\/bool\" data-autolink=\"autolink_bool\">bool<\/a><\/p>\n<p>By default, pressing delete\/backspace on multiple selects will remove a selected choice. When false, pressing delete\/backspace will highlight the last choice, and a second press deselects it.<\/p>\n<\/li>\n<li>\n<p><strong>width<\/strong> <a href=\"\/int\" data-autolink=\"autolink_int\">int<\/a><\/p>\n<p>The width of the Chosen select box. By default, Chosen attempts to match the width of the select box you are replacing. If your select is hidden when Chosen is instantiated, you must specify a width or the select will show up with a width of 0.<\/p>\n<\/li>\n<li>\n<p><strong>display_disabled_options<\/strong> <a href=\"\/bool\" data-autolink=\"autolink_bool\">bool<\/a><\/p>\n<p>By default, Chosen includes disabled options in search results with a special styling. Setting this option to false will hide disabled results and exclude them from searches.<\/p>\n<\/li>\n<li>\n<p><strong>display_selected_options<\/strong> <a href=\"\/bool\" data-autolink=\"autolink_bool\">bool<\/a><\/p>\n<p>By default, Chosen includes selected options in search results with a special styling. Setting this option to false will hide selected results and exclude them from searches.<\/p>\n<\/li>\n<\/ul>\n<\/li><\/ul>\n\n\n\n<p>Note: this is for multiple selects only. In single selects, the selected result will always be displayed.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>element<\/strong> <a href=\"\/js-object\" data-autolink=\"autolink_js-object\">Js Object<\/a>\n<p>The jQuery element object.<\/p>\n<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-examples\">Examples<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-1-limit-the-number-of-items-which-may-be-selected-in-a-multi-select-field\">1. Limit the number of items which may be selected in a multi-select field.<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\ngform.addFilter( 'gform_chosen_options', function ( options, element ) {\n    \/\/form id = 85, field id = 5\n    if ( element.attr( 'id' ) == 'input_85_5' ) {\n        options.max_selected_options = 2;\n    }\n\n    return options;\n} );\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-2-configure-chosen-to-use-a-percentage-based-width\">2. Configure Chosen to use a percentage based width.<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\ngform.addFilter( 'gform_chosen_options', function ( options, element ) {\n    options.width = '75%';\n\n    return options;\n} );\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-3-allow-matches-starting-from-anywhere-within-a-word\">3. Allow matches starting from anywhere within a word.<\/h3>\n\n\n\n<p>This can be done by enabling the search_contains <a href=\"https:\/\/harvesthq.github.io\/chosen\/options.html\" target=\"_blank\" rel=\"noopener noreferrer\">option provided by the Chosen script<\/a>.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\ngform.addFilter( 'gform_chosen_options', function ( options, element ) {\n    options.search_contains = true;\n    return options;\n} );\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-placement\">Placement<\/h2>\n\n\n\n<p>JavaScript should be placed in a JS file included by your theme or a custom plugin.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-source-code\">Source Code<\/h2>\n\n\n\n<p>This filter is located in &#8220;gravityforms.js&#8221;<\/p>\n","protected":false},"excerpt":{"rendered":"Allows the Chosen jQuery script settings for Drop Down and Multi-Select fields to be modified when the \"Enable enhanced user interface\" is checked.","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_autodraft_ids":[],"_sb_is_suggestion_mode":false,"_sb_show_suggestion_boards":false,"_sb_show_comment_boards":false,"_sb_suggestion_history":"","_sb_update_block_changes":"","_is_real_time_mode":false,"_realtime_collaborators":"","footnotes":"","jetpack_post_was_ever_published":false,"cf_checklist_status":[]},"categories":[210],"tags":[],"class_list":["post-6506","post","type-post","status-publish","format-standard","hentry","category-javascript","wpautop"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.7) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>gform_chosen_options - Gravity Forms Documentation<\/title>\n<meta name=\"description\" content=\"Allows the Chosen jQuery script settings for Drop Down and Multi-Select fields to be modified when the &quot;Enable enhanced user interface&quot; is checked.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/docs.gravityforms.com\/gform_chosen_options\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"gform_chosen_options\" \/>\n<meta property=\"og:description\" content=\"Allows the Chosen jQuery script settings for Drop Down and Multi-Select fields to be modified when the &quot;Enable enhanced user interface&quot; is checked.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.gravityforms.com\/gform_chosen_options\/\" \/>\n<meta property=\"og:site_name\" content=\"Gravity Forms Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2014-05-27T15:11:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-22T14:00:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2023\/08\/gf-docs-default-v3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"544\" \/>\n\t<meta property=\"og:image:height\" content=\"288\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Justin Pakes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@gravityforms\" \/>\n<meta name=\"twitter:site\" content=\"@gravityforms\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Justin Pakes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gform_chosen_options\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gform_chosen_options\\\/\"},\"author\":{\"name\":\"Justin Pakes\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/person\\\/8a88745ec2ee5bc1bb24eea8634bf376\"},\"headline\":\"gform_chosen_options\",\"datePublished\":\"2014-05-27T15:11:24+00:00\",\"dateModified\":\"2021-09-22T14:00:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gform_chosen_options\\\/\"},\"wordCount\":565,\"publisher\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#organization\"},\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gform_chosen_options\\\/\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/gform_chosen_options\\\/\",\"name\":\"gform_chosen_options - Gravity Forms Documentation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#website\"},\"datePublished\":\"2014-05-27T15:11:24+00:00\",\"dateModified\":\"2021-09-22T14:00:45+00:00\",\"description\":\"Allows the Chosen jQuery script settings for Drop Down and Multi-Select fields to be modified when the \\\"Enable enhanced user interface\\\" is checked.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gform_chosen_options\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/docs.gravityforms.com\\\/gform_chosen_options\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gform_chosen_options\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/docs.gravityforms.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"gform_chosen_options\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#website\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/\",\"name\":\"Gravity Forms Documentation\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/docs.gravityforms.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#organization\",\"name\":\"Gravity Forms\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/gravity-forms-2020-logo-stacked.png\",\"contentUrl\":\"https:\\\/\\\/docs.gravityforms.com\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/gravity-forms-2020-logo-stacked.png\",\"width\":392,\"height\":515,\"caption\":\"Gravity Forms\"},\"image\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/gravityforms\",\"http:\\\/\\\/@gravityforms.com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/person\\\/8a88745ec2ee5bc1bb24eea8634bf376\",\"name\":\"Justin Pakes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g\",\"caption\":\"Justin Pakes\"},\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/author\\\/pakes\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"gform_chosen_options - Gravity Forms Documentation","description":"Allows the Chosen jQuery script settings for Drop Down and Multi-Select fields to be modified when the \"Enable enhanced user interface\" is checked.","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:\/\/docs.gravityforms.com\/gform_chosen_options\/","og_locale":"en_US","og_type":"article","og_title":"gform_chosen_options","og_description":"Allows the Chosen jQuery script settings for Drop Down and Multi-Select fields to be modified when the \"Enable enhanced user interface\" is checked.","og_url":"https:\/\/docs.gravityforms.com\/gform_chosen_options\/","og_site_name":"Gravity Forms Documentation","article_published_time":"2014-05-27T15:11:24+00:00","article_modified_time":"2021-09-22T14:00:45+00:00","og_image":[{"width":544,"height":288,"url":"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2023\/08\/gf-docs-default-v3.png","type":"image\/png"}],"author":"Justin Pakes","twitter_card":"summary_large_image","twitter_creator":"@gravityforms","twitter_site":"@gravityforms","twitter_misc":{"Written by":"Justin Pakes","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/docs.gravityforms.com\/gform_chosen_options\/#article","isPartOf":{"@id":"https:\/\/docs.gravityforms.com\/gform_chosen_options\/"},"author":{"name":"Justin Pakes","@id":"https:\/\/docs.gravityforms.com\/#\/schema\/person\/8a88745ec2ee5bc1bb24eea8634bf376"},"headline":"gform_chosen_options","datePublished":"2014-05-27T15:11:24+00:00","dateModified":"2021-09-22T14:00:45+00:00","mainEntityOfPage":{"@id":"https:\/\/docs.gravityforms.com\/gform_chosen_options\/"},"wordCount":565,"publisher":{"@id":"https:\/\/docs.gravityforms.com\/#organization"},"articleSection":["JavaScript"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/docs.gravityforms.com\/gform_chosen_options\/","url":"https:\/\/docs.gravityforms.com\/gform_chosen_options\/","name":"gform_chosen_options - Gravity Forms Documentation","isPartOf":{"@id":"https:\/\/docs.gravityforms.com\/#website"},"datePublished":"2014-05-27T15:11:24+00:00","dateModified":"2021-09-22T14:00:45+00:00","description":"Allows the Chosen jQuery script settings for Drop Down and Multi-Select fields to be modified when the \"Enable enhanced user interface\" is checked.","breadcrumb":{"@id":"https:\/\/docs.gravityforms.com\/gform_chosen_options\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.gravityforms.com\/gform_chosen_options\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.gravityforms.com\/gform_chosen_options\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.gravityforms.com\/"},{"@type":"ListItem","position":2,"name":"gform_chosen_options"}]},{"@type":"WebSite","@id":"https:\/\/docs.gravityforms.com\/#website","url":"https:\/\/docs.gravityforms.com\/","name":"Gravity Forms Documentation","description":"","publisher":{"@id":"https:\/\/docs.gravityforms.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.gravityforms.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.gravityforms.com\/#organization","name":"Gravity Forms","url":"https:\/\/docs.gravityforms.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.gravityforms.com\/#\/schema\/logo\/image\/","url":"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2020\/01\/gravity-forms-2020-logo-stacked.png","contentUrl":"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2020\/01\/gravity-forms-2020-logo-stacked.png","width":392,"height":515,"caption":"Gravity Forms"},"image":{"@id":"https:\/\/docs.gravityforms.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/gravityforms","http:\/\/@gravityforms.com"]},{"@type":"Person","@id":"https:\/\/docs.gravityforms.com\/#\/schema\/person\/8a88745ec2ee5bc1bb24eea8634bf376","name":"Justin Pakes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g","caption":"Justin Pakes"},"url":"https:\/\/docs.gravityforms.com\/author\/pakes\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pdGaEa-1GW","_links":{"self":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts\/6506","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/comments?post=6506"}],"version-history":[{"count":2,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts\/6506\/revisions"}],"predecessor-version":[{"id":30082,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts\/6506\/revisions\/30082"}],"wp:attachment":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/media?parent=6506"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/categories?post=6506"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/tags?post=6506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}