{"id":3928,"date":"2024-08-28T12:14:25","date_gmt":"2024-08-28T12:14:25","guid":{"rendered":"https:\/\/rimanagency.com\/?page_id=3928"},"modified":"2024-08-28T12:19:43","modified_gmt":"2024-08-28T12:19:43","slug":"organization-markup-generator-json","status":"publish","type":"page","link":"https:\/\/rimanagency.com\/fr\/organization-markup-generator-json\/","title":{"rendered":"G\u00e9n\u00e9rateur de balisage d&#039;organisation \u2013 JSON"},"content":{"rendered":"\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-m0dtm2sj-3589bf8cc19cf74c0072cfd5212dd97d\">\n.avia-section.av-m0dtm2sj-3589bf8cc19cf74c0072cfd5212dd97d{\nbackground-color:#f4f4f4;\nbackground-image:unset;\n}\n<\/style>\n<div id='av_section_1'  class='avia-section av-m0dtm2sj-3589bf8cc19cf74c0072cfd5212dd97d main_color avia-section-default avia-no-border-styling  avia-builder-el-0  el_before_av_one_half  avia-builder-el-first  avia-bg-style-scroll container_wrap sidebar_right'  ><div class='container av-section-cont-open' ><main  role=\"main\" itemprop=\"mainContentOfPage\"  class='template-page content  av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-3928'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-m0dtmgd6-6ae08b0bd526eacd6dcdf540a2c652cd\">\n#top .av-special-heading.av-m0dtmgd6-6ae08b0bd526eacd6dcdf540a2c652cd{\npadding-bottom:10px;\n}\nbody .av-special-heading.av-m0dtmgd6-6ae08b0bd526eacd6dcdf540a2c652cd .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-m0dtmgd6-6ae08b0bd526eacd6dcdf540a2c652cd .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-m0dtmgd6-6ae08b0bd526eacd6dcdf540a2c652cd av-special-heading-h1  avia-builder-el-1  avia-builder-el-no-sibling '><h1 class='av-special-heading-tag '  itemprop=\"headline\"  >Organization Markup Generator Tool<\/h1><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div>\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='after_section_1'  class='main_color av_default_container_wrap container_wrap sidebar_right'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-small alpha units'><div class='post-entry post-entry-type-page post-entry-3928'><div class='entry-content-wrapper clearfix'><div  class='flex_column av-42r7xk-e00adc3f7d3b79d49ecfbd4f88ee8563 av_one_half  avia-builder-el-2  el_after_av_section  el_before_av_one_half  avia-builder-el-first  first flex_column_div  '     ><p><section  class='av_textblock_section av-m0dthz00-236675ae6b556ec38b922e9a629d4862 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/CreativeWork\" ><div class='avia_textblock'  itemprop=\"text\" >    <form id=\"organization-schema-form\">\r\n        <label for=\"org-type\">Organization @type:<\/label>\r\n        <select id=\"org-type\" name=\"orgType\">\r\n            <option value=\"Organization\">Organization<\/option>\r\n            <option value=\"Corporation\">Corporation<\/option>\r\n            <option value=\"EducationalOrganization\">Educational Organization<\/option>\r\n            <option value=\"GovernmentOrganization\">Government Organization<\/option>\r\n            <option value=\"LocalBusiness\">Local Business<\/option>\r\n            <option value=\"NGO\">NGO<\/option>\r\n            <option value=\"SportsOrganization\">Sports Organization<\/option>\r\n            <option value=\"PerformingGroup\">Performing Group<\/option>\r\n        <\/select>\r\n\r\n        <label for=\"org-name\">Name:<\/label>\r\n        <input type=\"text\" id=\"org-name\" name=\"name\" placeholder=\"Enter Organization Name\" required \/>\r\n\r\n        <label for=\"org-alt-name\">Alternate name:<\/label>\r\n        <input type=\"text\" id=\"org-alt-name\" name=\"altName\" placeholder=\"Enter Alternate Name\" \/>\r\n\r\n        <label for=\"org-url\">URL:<\/label>\r\n        <input type=\"url\" id=\"org-url\" name=\"url\" placeholder=\"Enter URL\" required \/>\r\n\r\n        <label for=\"org-logo\">Logo URL:<\/label>\r\n        <input type=\"url\" id=\"org-logo\" name=\"logo\" placeholder=\"Enter Logo URL\" required \/>\r\n\r\n        <button type=\"submit\">Generate JSON-LD<\/button>\r\n    <\/form>\r\n    <button id=\"copy-json-ld\" style=\"display:none;\">Copy to Clipboard<\/button>\r\n    <pre id=\"json-ld-output\"><\/pre>\r\n\r\n    <script>\r\n        document.getElementById('organization-schema-form').addEventListener('submit', function(e) {\r\n            e.preventDefault();\r\n\r\n            var orgType = document.getElementById('org-type').value;\r\n            var name = document.getElementById('org-name').value;\r\n            var altName = document.getElementById('org-alt-name').value;\r\n            var url = document.getElementById('org-url').value;\r\n            var logo = document.getElementById('org-logo').value;\r\n\r\n            var jsonLd = {\r\n                \"@context\": \"https:\/\/schema.org\",\r\n                \"@type\": orgType,\r\n                \"name\": name,\r\n                \"url\": url,\r\n                \"logo\": logo\r\n            };\r\n\r\n            if (altName) {\r\n                jsonLd[\"alternateName\"] = altName;\r\n            }\r\n\r\n            var jsonLdScript = document.createElement('script');\r\n            jsonLdScript.type = 'application\/ld+json';\r\n            jsonLdScript.textContent = JSON.stringify(jsonLd, null, 2);\r\n            document.getElementById('json-ld-output').textContent = jsonLdScript.outerHTML;\r\n\r\n            \/\/ Show the copy button\r\n            document.getElementById('copy-json-ld').style.display = 'inline';\r\n        });\r\n\r\n        document.getElementById('copy-json-ld').addEventListener('click', function() {\r\n            var jsonLdText = document.getElementById('json-ld-output').textContent;\r\n            navigator.clipboard.writeText(jsonLdText).then(function() {\r\n                alert('JSON-LD copied to clipboard!');\r\n            }, function() {\r\n                alert('Failed to copy JSON-LD.');\r\n            });\r\n        });\r\n    <\/script>\r\n    \n<\/div><\/section><br \/>\n<section  class='av_textblock_section av-m0dtlnpm-a9195458c1104fc2e039d6b0a822fe48 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/CreativeWork\" ><div class='avia_textblock'  itemprop=\"text\" ><h2>FAQs<\/h2>\n<h3><strong>FAQs for Organization Markup Generator Tool<\/strong><\/h3>\n<h4>1. <strong>What is the Organization Markup Generator?<\/strong><\/h4>\n<p>The Organization Markup Generator is an online tool that helps you create structured data for your organization in the form of JSON-LD. This markup is designed to enhance your website&#8217;s visibility in search engines by providing them with detailed information about your organization.<\/p>\n<h4>2. <strong>Why should I use the Organization Markup Generator?<\/strong><\/h4>\n<p>Using structured data like JSON-LD helps search engines better understand your website&#8217;s content. By using the Organization Markup Generator, you can easily create this data without needing to code, making it easier for your organization to appear in rich search results like knowledge panels or enhanced snippets.<\/p>\n<h4>3. <strong>How do I use the Organization Markup Generator?<\/strong><\/h4>\n<p>Simply fill in the form fields with your organization\u2019s details, such as the name, URL, and logo. Once you\u2019ve entered the necessary information, click the &#8220;Generate JSON-LD&#8221; button. The tool will then produce the structured data, which you can copy and paste into your website\u2019s HTML.<\/p>\n<h4>4. <strong>What types of organizations can I create markup for?<\/strong><\/h4>\n<p>The tool supports various organization types, including general organizations, corporations, educational institutions, government organizations, local businesses, NGOs, sports organizations, and performing groups. You can select the type that best describes your organization from the dropdown menu.<\/p>\n<h4>5. <strong>What information do I need to generate the markup?<\/strong><\/h4>\n<p>You will need to provide the following details:<\/p>\n<ul>\n<li><strong>Organization Type<\/strong>: Choose from a list of common organization types.<\/li>\n<li><strong>Name<\/strong>: The name of your organization.<\/li>\n<li><strong>Alternate Name<\/strong>: An optional field for an alternate or secondary name.<\/li>\n<li><strong>URL<\/strong>: The website address of your organization.<\/li>\n<li><strong>Logo URL<\/strong>: The URL of your organization\u2019s logo.<\/li>\n<\/ul>\n<h4>6. <strong>Can I edit the JSON-LD markup after it\u2019s generated?<\/strong><\/h4>\n<p>Yes, the JSON-LD markup is displayed in a text box after generation. You can manually edit it before copying it to your website\u2019s HTML if you need to make any adjustments or add additional information.<\/p>\n<h4>7. <strong>How do I implement the generated JSON-LD markup on my website?<\/strong><\/h4>\n<p>Once you&#8217;ve generated and copied the JSON-LD markup, paste it into the <code>&lt;head&gt;<\/code> section of your HTML code. If you are using a content management system like WordPress, you can add it to your site\u2019s custom HTML or header settings.<\/p>\n<h4>8. <strong>Will using this tool improve my search engine rankings?<\/strong><\/h4>\n<p>While adding structured data alone doesn\u2019t guarantee higher search rankings, it can improve how your website is displayed in search results. Rich snippets, knowledge panels, and other enhanced search results can increase your click-through rate and overall visibility.<\/p>\n<h4>9. <strong>Is there a limit to the number of organizations I can create markup for?<\/strong><\/h4>\n<p>No, you can use the tool as many times as you need. Whether you manage one organization or multiple entities, you can generate JSON-LD markup for each one.<\/p>\n<h4>10. <strong>Is the tool free to use?<\/strong><\/h4>\n<p>Yes, the Organization Markup Generator is completely free to use. You can generate and copy the JSON-LD markup as often as needed without any cost.<\/p>\n<h4>11. <strong>Do I need any coding knowledge to use this tool?<\/strong><\/h4>\n<p>No coding knowledge is required to use the Organization Markup Generator. The tool is designed to be user-friendly, allowing anyone to create structured data with ease.<\/p>\n<h4>12. <strong>Can I use this tool on any website?<\/strong><\/h4>\n<p>Yes, the generated JSON-LD markup is compatible with any website. As long as you have access to your website\u2019s HTML code, you can implement the markup regardless of the platform or content management system you are using.<\/p>\n<h4>13. <strong>How can I check if the JSON-LD markup is implemented correctly?<\/strong><\/h4>\n<p>You can use Google\u2019s Structured Data Testing Tool or Rich Results Test to verify that your JSON-LD markup is correctly implemented. These tools will show you how your structured data will appear to search engines and highlight any errors that need fixing.<\/p>\n<h4>14. <strong>What happens if I input incorrect information?<\/strong><\/h4>\n<p>If incorrect information is entered into the tool, the generated markup will also be incorrect. It\u2019s important to double-check all details before generating the JSON-LD to ensure accuracy. If you notice a mistake, simply correct the information in the form and regenerate the markup.<\/p>\n<h4>15. <strong>Can I generate JSON-LD for multiple locations of my organization?<\/strong><\/h4>\n<p>Yes, you can generate JSON-LD for multiple locations by filling out the form separately for each location. This is particularly useful for businesses or organizations with multiple branches or offices.<\/p>\n<h4>16. <strong>Is the data I input stored or shared?<\/strong><\/h4>\n<p>No, the data you input into the Organization Markup Generator is not stored or shared. The tool generates the JSON-LD markup in your browser, and once you copy the code, it is entirely under your control.<\/p>\n<\/div><\/section><\/p><\/div><div  class='flex_column av-8u5nc-1e62335bfc521dbad247079f5b900a97 av_one_half  avia-builder-el-5  el_after_av_one_half  avia-builder-el-last  flex_column_div  '     ><section  class='av_textblock_section av-m0dtmo87-b0de9797a327c36652c5525510f05612 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/CreativeWork\" ><div class='avia_textblock'  itemprop=\"text\" ><h4><strong>Overview<\/strong><\/h4>\n<p>The <strong>Organization Markup Generator<\/strong> is a versatile WordPress plugin designed to simplify the creation of structured data for organizations. Structured data, specifically JSON-LD (JavaScript Object Notation for Linked Data), plays a crucial role in helping search engines understand the content and context of a website, improving its visibility and ranking in search results.<\/p>\n<p>This tool is particularly useful for website administrators, SEO professionals, and digital marketers who want to enhance their site&#8217;s SEO without manually coding JSON-LD. By generating the structured data automatically, the plugin reduces errors, saves time, and ensures that your organization\u2019s information is presented accurately and comprehensively to search engines.<\/p>\n<h4><strong>Key Features<\/strong><\/h4>\n<ol>\n<li><strong>Simple User Interface<\/strong>:\n<ul>\n<li><strong>Drop-down Menu for Organization Type<\/strong>: Select from common organization types like <code>Organization<\/code>, <code>Corporation<\/code>, <code>Educational Organization<\/code>, <code>Government Organization<\/code>, <code>Local Business<\/code>, <code>NGO<\/code>, <code>Sports Organization<\/code>, or <code>Performing Group<\/code>.<\/li>\n<li><strong>Text Fields for Essential Details<\/strong>: Input fields for the organization&#8217;s name, alternate name (optional), website URL, and logo URL.<\/li>\n<li><strong>Automatic JSON-LD Generation<\/strong>: With the click of a button, the tool generates the JSON-LD script, ready for implementation.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Copy to Clipboard Functionality<\/strong>:\n<ul>\n<li>After generating the JSON-LD code, users can easily copy it to the clipboard for quick insertion into their website\u2019s HTML.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Extensive Customization<\/strong>:\n<ul>\n<li>The plugin accommodates various types of organizations, making it a flexible tool for different sectors and industries.<\/li>\n<li>Users can modify the generated code to fit specific needs or include additional fields if required.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Error Reduction<\/strong>:\n<ul>\n<li>By automating the JSON-LD creation process, the plugin minimizes the chances of coding errors that could affect the structured data\u2019s effectiveness.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Time Efficiency<\/strong>:\n<ul>\n<li>The plugin allows users to quickly generate accurate structured data, significantly reducing the time spent on this task compared to manual coding.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h4><strong>Benefits<\/strong><\/h4>\n<ol>\n<li><strong>Enhanced SEO<\/strong>:\n<ul>\n<li>Structured data helps search engines better understand your website\u2019s content, which can lead to improved search visibility, higher click-through rates, and potentially better rankings.<\/li>\n<li>It increases the likelihood of your organization appearing in rich snippets, knowledge panels, and other enhanced search results.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Improved Click-Through Rates<\/strong>:\n<ul>\n<li>When an organization\u2019s structured data is implemented correctly, it can lead to richer search results (like company logos or direct links), which are more appealing and clickable for users.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Increased Brand Visibility<\/strong>:\n<ul>\n<li>Accurate and comprehensive structured data can help your organization appear in more relevant searches, making it easier for potential clients or customers to find you.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Consistent Data Across Platforms<\/strong>:\n<ul>\n<li>The tool ensures that your organization\u2019s key information is consistently represented across search engines and other platforms that use structured data.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Ease of Use<\/strong>:\n<ul>\n<li>The plugin is designed to be user-friendly, requiring no technical knowledge or coding skills. This makes it accessible for users of all levels, from beginner to advanced.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h4><strong>Functions<\/strong><\/h4>\n<ol>\n<li><strong>Dynamic Form Generation<\/strong>:\n<ul>\n<li>The plugin dynamically generates a form that allows users to input relevant organization details. This form is responsive and adapts to the selected organization type.<\/li>\n<\/ul>\n<\/li>\n<li><strong>JSON-LD Script Creation<\/strong>:\n<ul>\n<li>Once the form is submitted, the plugin generates a JSON-LD script that includes all the provided details, formatted according to Schema.org\u2019s specifications for the selected organization type.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Copy Functionality<\/strong>:\n<ul>\n<li>The tool includes a button to copy the generated JSON-LD code to the clipboard, making it easy for users to implement the structured data on their website.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Customizable Output<\/strong>:\n<ul>\n<li>The JSON-LD code can be easily customized or expanded by users who wish to include additional fields or make specific modifications to the structured data.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h4><strong>Use Cases<\/strong><\/h4>\n<ol>\n<li><strong>Business Websites<\/strong>:\n<ul>\n<li><strong>Corporate Websites<\/strong>: For corporations or businesses with multiple locations, this tool can help generate structured data that accurately represents each branch or location.<\/li>\n<li><strong>Small Businesses<\/strong>: Local businesses can use the tool to create structured data that highlights their name, logo, and URL, enhancing their local search visibility.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Educational Institutions<\/strong>:\n<ul>\n<li><strong>Schools and Universities<\/strong>: Educational organizations can use the tool to ensure their information is properly formatted and visible in search results, improving the institution&#8217;s online presence.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Non-Profit Organizations<\/strong>:\n<ul>\n<li><strong>NGOs and Charities<\/strong>: Non-profits can benefit from using the tool to make their mission, logo, and website more visible in search engines, potentially increasing awareness and donations.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Government Organizations<\/strong>:\n<ul>\n<li><strong>Public Sector Websites<\/strong>: Government entities can use the tool to ensure their structured data is correctly implemented, making it easier for citizens to find essential information.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Marketing and SEO Agencies<\/strong>:\n<ul>\n<li><strong>Client Projects<\/strong>: Agencies can use the plugin to quickly generate structured data for multiple client websites, improving efficiency and consistency across projects.<\/li>\n<\/ul>\n<\/li>\n<li><strong>E-commerce Platforms<\/strong>:\n<ul>\n<li><strong>Online Retailers<\/strong>: E-commerce sites can use the structured data generated by the tool to enhance brand visibility, especially if the organization operates multiple online stores or has a significant online presence.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h4><strong>Conclusion<\/strong><\/h4>\n<p>The <strong>Organization Markup Generator<\/strong> is a powerful and essential tool for any website that wants to enhance its SEO through structured data. By automating the creation of JSON-LD markup for organizations, it makes the process accessible to users of all skill levels, reduces errors, and saves time. Whether you\u2019re running a small local business or managing a large corporate website, this plugin will help ensure your organization\u2019s key information is accurately represented in search engines, driving visibility, clicks, and ultimately, success.<\/p>\n<\/div><\/section><\/div><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-3928","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Organization Markup Generator - JSON - Riman Agency<\/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:\/\/rimanagency.com\/fr\/organization-markup-generator-json\/\" \/>\n<meta property=\"og:locale\" content=\"fr_CA\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Organization Markup Generator - JSON - Riman Agency\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rimanagency.com\/fr\/organization-markup-generator-json\/\" \/>\n<meta property=\"og:site_name\" content=\"Riman Agency\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-28T12:19:43+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/organization-markup-generator-json\\\/\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/organization-markup-generator-json\\\/\",\"name\":\"Organization Markup Generator - JSON - Riman Agency\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#website\"},\"datePublished\":\"2024-08-28T12:14:25+00:00\",\"dateModified\":\"2024-08-28T12:19:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/organization-markup-generator-json\\\/#breadcrumb\"},\"inLanguage\":\"fr-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/rimanagency.com\\\/organization-markup-generator-json\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/organization-markup-generator-json\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/rimanagency.com\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Organization Markup Generator &#8211; JSON\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#website\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/\",\"name\":\"Riman Agency\",\"description\":\"A Full Service Digital Marketing Agency\",\"publisher\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/rimanagency.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#organization\",\"name\":\"Riman Agency\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-CA\",\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/rimanagency.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/RIMANagency-all-logos-1-2.png\",\"contentUrl\":\"https:\\\/\\\/rimanagency.com\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/RIMANagency-all-logos-1-2.png\",\"width\":694,\"height\":211,\"caption\":\"Riman Agency\"},\"image\":{\"@id\":\"https:\\\/\\\/rimanagency.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"G\u00e9n\u00e9rateur de balisage organisationnel - JSON - Agence Riman","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:\/\/rimanagency.com\/fr\/organization-markup-generator-json\/","og_locale":"fr_CA","og_type":"article","og_title":"Organization Markup Generator - JSON - Riman Agency","og_url":"https:\/\/rimanagency.com\/fr\/organization-markup-generator-json\/","og_site_name":"Riman Agency","article_modified_time":"2024-08-28T12:19:43+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/rimanagency.com\/organization-markup-generator-json\/","url":"https:\/\/rimanagency.com\/organization-markup-generator-json\/","name":"G\u00e9n\u00e9rateur de balisage organisationnel - JSON - Agence Riman","isPartOf":{"@id":"https:\/\/rimanagency.com\/#website"},"datePublished":"2024-08-28T12:14:25+00:00","dateModified":"2024-08-28T12:19:43+00:00","breadcrumb":{"@id":"https:\/\/rimanagency.com\/organization-markup-generator-json\/#breadcrumb"},"inLanguage":"fr-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rimanagency.com\/organization-markup-generator-json\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/rimanagency.com\/organization-markup-generator-json\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rimanagency.com\/home\/"},{"@type":"ListItem","position":2,"name":"Organization Markup Generator &#8211; JSON"}]},{"@type":"WebSite","@id":"https:\/\/rimanagency.com\/#website","url":"https:\/\/rimanagency.com\/","name":"Agence Riman","description":"Une agence de marketing num\u00e9rique \u00e0 service complet","publisher":{"@id":"https:\/\/rimanagency.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rimanagency.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-CA"},{"@type":"Organization","@id":"https:\/\/rimanagency.com\/#organization","name":"Agence Riman","url":"https:\/\/rimanagency.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-CA","@id":"https:\/\/rimanagency.com\/#\/schema\/logo\/image\/","url":"https:\/\/rimanagency.com\/wp-content\/uploads\/2022\/02\/RIMANagency-all-logos-1-2.png","contentUrl":"https:\/\/rimanagency.com\/wp-content\/uploads\/2022\/02\/RIMANagency-all-logos-1-2.png","width":694,"height":211,"caption":"Riman Agency"},"image":{"@id":"https:\/\/rimanagency.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/pages\/3928","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/comments?post=3928"}],"version-history":[{"count":0,"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/pages\/3928\/revisions"}],"wp:attachment":[{"href":"https:\/\/rimanagency.com\/fr\/wp-json\/wp\/v2\/media?parent=3928"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}