{"id":728,"date":"2024-02-29T15:33:59","date_gmt":"2024-02-29T14:33:59","guid":{"rendered":"https:\/\/farminform.bekijkuwwebsite.nl\/wie-zijn-wij\/"},"modified":"2025-07-20T22:11:47","modified_gmt":"2025-07-20T20:11:47","slug":"who-we-are","status":"publish","type":"page","link":"https:\/\/www.farminform.nl\/en\/who-we-are\/","title":{"rendered":"Who we are"},"content":{"rendered":"<section class=\"section aos-init  \" data-aos=\"fade-up\">\n            <div class=\"section-content\">\n<div class=\"\">\n<div class=\"video-background position-relative overflow-hidden\">\n    <video id=\"myvid\" loop playsinline poster=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2025\/04\/farminform_18-03-2025_ENG-SUBS_compressed_1080p-1440x810.jpg\" class=\"m-0 d-block\">\n        <source id=\"video-source\" src=\"\" type=\"video\/mp4\">\n                <img decoding=\"async\" src=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2025\/04\/farminform_18-03-2025_ENG-SUBS_compressed_1080p-1440x810.jpg\" alt=\"Fallback Afbeelding\" class=\"fallback-image\">\n            <\/video>\n    \n    <div class=\"position-absolute left-0 top-0 w-100 h-100 d-flex align-items-center justify-content-center\" style=\"z-index: 10;\">\n        <button id=\"playPauseBtn\" class=\"stretched-link d-flex align-items-center justify-content-center\" style=\"background: rgba(0,0,0,0.5); color: white; border: none; border-radius: 50%; width: 100px; height: 100px; cursor: pointer; transition: opacity 0.3s ease;\">\n            <i id=\"video-control-icon\" class=\"fa-solid fa-play fa-2x\"><\/i>\n        <\/button>\n    <\/div>\n<\/div>\n<\/div>\n\n<style>\n.video-background:hover #playPauseBtn:not(.showing-play) {\n    opacity: 1;\n}\n#playPauseBtn.showing-play {\n    opacity: 1 !important;\n}\n#playPauseBtn:not(.showing-play) {\n    opacity: 0;\n}\n<\/style>\n\n<script>\n  window.onload = function() {\n      \/\/ Elementen ophalen\n      const myvid = document.getElementById(\"myvid\");\n      const videoSource = document.getElementById(\"video-source\");\n      const playPauseBtn = document.getElementById(\"playPauseBtn\");\n      const videoIcon = document.getElementById(\"video-control-icon\");\n      const videoContainer = document.querySelector('.video-background');\n      \n      \/\/ Helper functie om icoon te wijzigen\n      function updateVideoIcon(isPlay) {\n          console.log(\"Updating icon to:\", isPlay ? \"play\" : \"pause\");\n          \n          \/\/ Font Awesome class aanpassen\n          if (isPlay) {\n              videoIcon.classList.remove('fa-pause');\n              videoIcon.classList.add('fa-play');\n          } else {\n              videoIcon.classList.remove('fa-play');\n              videoIcon.classList.add('fa-pause');\n          }\n          \n          \/\/ Update data-icon attribuut\n          videoIcon.setAttribute('data-icon', isPlay ? 'play' : 'pause');\n          \n          \/\/ Force SVG update\n          setTimeout(() => {\n              \/\/ Zoek elke SVG binnen de button\n              const svgs = playPauseBtn.querySelectorAll('svg');\n              svgs.forEach(svg => {\n                  svg.setAttribute('data-icon', isPlay ? 'play' : 'pause');\n                  console.log(\"SVG found and updated:\", svg);\n              });\n          }, 10);\n          \n          console.log(\"Icon updated to:\", isPlay ? \"play\" : \"pause\");\n      }\n      \n      \/\/ Update knop gebaseerd op video status\n      function updatePlayPauseButton() {\n          const isPaused = myvid.paused;\n          console.log(\"Updating button, video is paused:\", isPaused);\n          \n          updateVideoIcon(isPaused);\n          \n          if (isPaused) {\n              playPauseBtn.classList.add('showing-play');\n          } else {\n              playPauseBtn.classList.remove('showing-play');\n          }\n      }\n\n      \/\/ Bepaal welke video te laden op basis van schermgrootte\n      function getResponsiveVideoUrl() {\n          const width = window.innerWidth;\n          const videoDesktop = \"https:\/\/www.farminform.nl\/wp-content\/uploads\/2025\/04\/farminform_18-03-2025_ENG-SUBS_compressed_1080p.mp4\";\n          const videoTablet = \"\";\n          const videoMobile = \"\";\n          \n          \/\/ Check welke videos beschikbaar zijn\n          const hasDesktop = videoDesktop && videoDesktop.length > 0;\n          const hasTablet = videoTablet && videoTablet.length > 0;\n          const hasMobile = videoMobile && videoMobile.length > 0;\n          \n          \/\/ Selecteer de beste video voor de schermgrootte\n          if (width > 1200) {\n              return hasDesktop ? videoDesktop : (hasTablet ? videoTablet : videoMobile);\n          } else if (width > 768) {\n              return hasTablet ? videoTablet : (hasDesktop ? videoDesktop : videoMobile);\n          } else {\n              return hasMobile ? videoMobile : (hasTablet ? videoTablet : videoDesktop);\n          }\n      }\n      \n      \/\/ Laad de video\n      const videoUrl = getResponsiveVideoUrl();\n      if (videoUrl) {\n          videoSource.src = videoUrl;\n          myvid.load();\n          updateVideoIcon(true);\n          playPauseBtn.classList.add('showing-play');\n      }\n      \n      \/\/ Event listeners\n      playPauseBtn.addEventListener(\"click\", function() {\n          console.log(\"Button clicked, video paused:\", myvid.paused);\n          \n          if (myvid.paused) {\n              myvid.play()\n                  .then(() => {\n                      console.log(\"Video started playing\");\n                      \/\/ Direct icoon updaten zonder te wachten op play event\n                      updateVideoIcon(false);\n                      playPauseBtn.classList.remove('showing-play');\n                  })\n                  .catch(error => {\n                      console.error(\"Video play error:\", error);\n                  });\n          } else {\n              console.log(\"Pausing video\");\n              myvid.pause();\n              updateVideoIcon(true);\n              playPauseBtn.classList.add('showing-play');\n          }\n      });\n      \n      \/\/ Hover functionaliteit\n      videoContainer.addEventListener('mouseenter', function() {\n          console.log(\"Mouse enter, video paused:\", myvid.paused);\n          if (!myvid.paused) {\n              updateVideoIcon(false);\n              console.log(\"Set to pause icon on hover\");\n          }\n      });\n      \n      videoContainer.addEventListener('mouseleave', function() {\n          console.log(\"Mouse leave\");\n          if (!myvid.paused) {\n              updateVideoIcon(false);\n              console.log(\"Kept as pause icon after hover (video playing)\");\n          }\n      });\n      \n      \/\/ Video status events\n      myvid.addEventListener('play', function() {\n          console.log('Video play event fired');\n          updateVideoIcon(false);\n          playPauseBtn.classList.remove('showing-play');\n      });\n      \n      myvid.addEventListener('pause', function() {\n          console.log('Video pause event fired');\n          updateVideoIcon(true);\n          playPauseBtn.classList.add('showing-play');\n      });\n      \n      myvid.addEventListener('ended', function() {\n          console.log('Video ended event fired');\n          updateVideoIcon(true);\n          playPauseBtn.classList.add('showing-play');\n      });\n  };\n<\/script>\n\n\n\n<\/div>\n    \n    <\/section>\n\n<section class=\"section aos-init  \" data-aos=\"fade-up\">\n            <div class=\"section-content\">\n<div class=\"container\">\n    <div class=\"row alt-row\">\n                <div class=\"col-lg-6 alt-col\">\n            <h1 class=\"h2\">Who we are<\/h1>\n\n        <\/div>\n        <div class=\"col-lg-6 alt-col\">\n            \n        <\/div>\n            <\/div>\n<\/div>\n\n<div class=\"container\">\n    <div class=\"row alt-row\">\n                <div class=\"col-lg-6 alt-col\">\n            <p>Farminform provides high-quality market and user information about the Dutch pharmaceutical market. This lets healthcare professionals and pharmaceutical companies make effective policy decisions based on the latest developments.<\/p>\n<p>Farminform has built up experience since 1971 in the automated collection, processing, enrichment and publication of information. Many companies and other organisations in the broader pharmaceutical sector are affiliated with Farminform (see <a href=\"https:\/\/www.farminform.nl\/wie-zijn-wij\/farminform-deelnemers\/\">overview of participants<\/a> and <a href=\"https:\/\/www.farminform.nl\/wie-zijn-wij\/deelnemende-groothandelaren\/\">overview of participating wholesalers<\/a>).<\/p>\n\n        <\/div>\n        <div class=\"col-lg-6 alt-col\">\n            <p>Farminform, in its role as a data trust with extensive databases, offers utility functions to facilitate secure information exchange within the pharmaceutical sector. As well as the basic information, Farminform also provides advice about implementing that data. Farminform invests in long-term cooperation with organisations that help healthcare professionals use medicines as efficiently as possible for individual patients.<\/p>\n<p>With fifty years of experience under its belt, Farminform realises that cooperation and trust are the key concepts for optimising the appropriate use of medicines. That is why Farminform invests systematically in cooperating with market parties in the Dutch care sector. Farminform knows that this is often an endurance race, one small step at a time, with broad backing needed.<\/p>\n\n        <\/div>\n            <\/div>\n<\/div>\n<\/div>\n    \n    <\/section>\n\n<section class=\"section aos-init  \" data-aos=\"fade-up\">\n            <div class=\"section-content\">\n<div class=\"container\">\n    <div class=\"row alt-row align-items-center justify-content-between\">\n        <div class=\"col-lg-5 alt-col \">\n                            <div class=\"image-container-effect bottom-right\">\n                                            <div class=\"image-container type-square\">\n                                                        <img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"720\" src=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Gertjan-Robert-rechts-1-720x720.jpg\" class=\"attachment-medium size-medium\" alt=\"\" srcset=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Gertjan-Robert-rechts-1-720x720.jpg 720w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Gertjan-Robert-rechts-1-150x150.jpg 150w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Gertjan-Robert-rechts-1-768x768.jpg 768w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Gertjan-Robert-rechts-1.jpg 800w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/>\n                                                    <\/div>\n                                    <\/div>\n                                    <\/div>\n        <div class=\"col-lg-6 alt-col\">\n            <div class=\"acf-innerblocks-container\">\n\n<h2 class=\"wp-block-heading\">Farminform\u2019s organisation<\/h2>\n\n\n\n<p>Farminform consists of professionals and data specialists who have strong social commitment and an entrepreneurial, solution-oriented approach. Farminform is based in Gouda and has three business units: data analysis, sales and account management, and operations: In addition, Brabers Corporate Counsel in The Hague monitors all competition law and privacy law aspects of Farminform\u2019s services. Farminform is aware of its responsibility to comply with the rules of competition law; its activities and communications expressly draw attention to strict compliance.<\/p>\n\n<\/div>\n        <\/div>\n    <\/div>\n<\/div>\n<\/div>\n    \n    <\/section>\n\n<section class=\"section aos-init section-background section-secondary section-boxed section-background-alt \" data-aos=\"fade-up\">\n        <div class=\"image-container align-top\">\n        <img loading=\"lazy\" decoding=\"async\" width=\"1440\" height=\"635\" src=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/03\/main-header-02-1440x635.jpg\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/03\/main-header-02-1440x635.jpg 1440w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/03\/main-header-02-720x317.jpg 720w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/03\/main-header-02-768x338.jpg 768w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/03\/main-header-02-1536x677.jpg 1536w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/03\/main-header-02.jpg 1920w\" sizes=\"auto, (max-width: 1440px) 100vw, 1440px\" \/>\n    <\/div>\n    <div class=\"section-content\">\n        <div class=\"container\">\n            <div class=\"row align-items-end\">\n                <div class=\"col-12 col-xl-11\"><\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n    <\/section>\n\n<section class=\"section aos-init  \" data-aos=\"fade-up\">\n            <div class=\"section-content\">\n<div class=\"container\">\n    <div class=\"row alt-row\">\n                <div class=\"col-lg-4 alt-col mb-4\">\n            <h2 class=\"mb-0\">Farminform\u2019s management<\/h2>\n        <\/div>\n        <div class=\"col-lg-8 alt-col\">\n            \n        <\/div>\n            <\/div>\n<\/div>\n\n<div class=\"container\">\n    <div class=\"row alt-row\">\n                        <div class=\"col-lg-4 alt-col\">\n            <div class=\"image-container type-portrait margin\">\n\n                <img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"901\" src=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Luuk-Renfurm-720x901.jpg\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Luuk-Renfurm-720x901.jpg 720w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Luuk-Renfurm.jpg 733w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/>\n            <\/div>\n            <h4 class=\"mb-0\">Luuk Renfurm<\/h4>\n            <p><!-- wp:paragraph -->\n<p>Managing Director<\/p>\n<!-- \/wp:paragraph --><\/p>\n        <\/div>\n                        <div class=\"col-lg-4 alt-col\">\n            <div class=\"image-container type-portrait margin\">\n\n                <img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"901\" src=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Leon-Walenbergh-720x901.jpg\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Leon-Walenbergh-720x901.jpg 720w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Leon-Walenbergh.jpg 733w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/>\n            <\/div>\n            <h4 class=\"mb-0\">L\u00e9on Walenbergh<\/h4>\n            <p><!-- wp:paragraph -->\n<p>Operations Director<\/p>\n<!-- \/wp:paragraph --><\/p>\n        <\/div>\n            <\/div>\n<\/div>\n\n\n<div class=\"container\">\n    <div class=\"row alt-row\">\n                <div class=\"col-lg-4 alt-col mb-4\">\n            <h2 class=\"mb-0\">Secretary<\/h2>\n        <\/div>\n        <div class=\"col-lg-8 alt-col\">\n            \n        <\/div>\n            <\/div>\n<\/div>\n\n<div class=\"container\">\n    <div class=\"row alt-row\">\n                        <div class=\"col-lg-4 alt-col\">\n            <div class=\"image-container type-portrait margin\">\n\n                <img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"901\" src=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Christa-Pals-1-720x901.jpg\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Christa-Pals-1-720x901.jpg 720w, https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/Christa-Pals-1.jpg 733w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/>\n            <\/div>\n            <h4 class=\"mb-0\">Christa Pals<\/h4>\n            <p><!-- wp:paragraph -->\n<p>Executive Assistant<br>christa.pals@farminform.nl<\/p>\n<!-- \/wp:paragraph --><\/p>\n        <\/div>\n            <\/div>\n<\/div>\n\n<\/div>\n    \n    <\/section>\n\n<section class=\"section aos-init  \" data-aos=\"fade-up\">\n            <div class=\"section-content\">\n<div class=\"container\">\n    <div class=\"row alt-row\">\n                <div class=\"col-lg-4 alt-col mb-4\">\n            <h2 class=\"mb-0\">Governance Model<\/h2>\n        <\/div>\n        <div class=\"col-lg-8 alt-col\">\n            \n        <\/div>\n            <\/div>\n<\/div>\n\n<div class=\"container\">\n    <div class=\"row alt-row\">\n                <div class=\"col-lg-6 alt-col\">\n            <h3>Supervisory Board<\/h3>\n<p>On behalf of shareholders and stakeholders, the Supervisory Board supervises Farminform&#8217;s policy and its implementation. This board consists of five members, namely:<\/p>\n<ul>\n<li>Mr. J.L. Tinke, BENU (chairman)<\/li>\n<li>Mr. G.L. Bruinsma, Elmara B.V.<\/li>\n<li>Mr. S. Groenemeijer, Novo Nordisk Nederland B.V.<\/li>\n<li>Mr. A.M.G. Overkamp, Takeda Nederland B.V.<\/li>\n<li>Ms. P.H.G. Willems, Board member<\/li>\n<\/ul>\n\n        <\/div>\n        <div class=\"col-lg-6 alt-col\">\n            <h3>Advisory Board<\/h3>\n<div id=\"cib-chat-main\" class=\"main\">\n<div class=\"message\">\n<div class=\"content user-select-text\" tabindex=\"0\" role=\"heading\" aria-level=\"6\" aria-description=\"\" aria-label=\"Sent by Copilot: The English translation of the Dutch text is: **Strategic Committee** A Strategic Committee, consisting of representatives from the affiliated organizations at a tactical and operational level, advises the Farminform management on a periodic basis.\">\n<div class=\"ac-container ac-adaptiveCard\">\n<div class=\"ac-textBlock\">\n<p>An Advisory Board, consisting of representatives of the member organisations on tactical and operational level, advises the Farminform Board on a regular basis.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n        <\/div>\n            <\/div>\n<\/div>\n<\/div>\n    \n    <\/section>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-geen-header.blade.php","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-728","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Who we are - Farminform B.V.<\/title>\n<meta name=\"description\" content=\"Farminform provides high-quality market and user information about the Dutch pharmaceutical market.\" \/>\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.farminform.nl\/en\/who-we-are\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Who we are - Farminform B.V.\" \/>\n<meta property=\"og:description\" content=\"Farminform provides high-quality market and user information about the Dutch pharmaceutical market.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.farminform.nl\/en\/who-we-are\/\" \/>\n<meta property=\"og:site_name\" content=\"Farminform B.V.\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-20T20:11:47+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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/who-we-are\\\/\",\"url\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/who-we-are\\\/\",\"name\":\"Who we are - Farminform B.V.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/#website\"},\"datePublished\":\"2024-02-29T14:33:59+00:00\",\"dateModified\":\"2025-07-20T20:11:47+00:00\",\"description\":\"Farminform provides high-quality market and user information about the Dutch pharmaceutical market.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/who-we-are\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.farminform.nl\\\/en\\\/who-we-are\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/who-we-are\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Who we are\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/\",\"name\":\"Farminform B.V.\",\"description\":\"De centrale datatrust voor geneesmiddelen en farmaceutische zorg\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/#organization\",\"name\":\"Farminform B.V.\",\"url\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.farminform.nl\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/farminform-logo-small.png\",\"contentUrl\":\"https:\\\/\\\/www.farminform.nl\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/farminform-logo-small.png\",\"width\":177,\"height\":113,\"caption\":\"Farminform B.V.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.farminform.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/farminform\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Who we are - Farminform B.V.","description":"Farminform provides high-quality market and user information about the Dutch pharmaceutical market.","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.farminform.nl\/en\/who-we-are\/","og_locale":"en_US","og_type":"article","og_title":"Who we are - Farminform B.V.","og_description":"Farminform provides high-quality market and user information about the Dutch pharmaceutical market.","og_url":"https:\/\/www.farminform.nl\/en\/who-we-are\/","og_site_name":"Farminform B.V.","article_modified_time":"2025-07-20T20:11:47+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.farminform.nl\/en\/who-we-are\/","url":"https:\/\/www.farminform.nl\/en\/who-we-are\/","name":"Who we are - Farminform B.V.","isPartOf":{"@id":"https:\/\/www.farminform.nl\/en\/#website"},"datePublished":"2024-02-29T14:33:59+00:00","dateModified":"2025-07-20T20:11:47+00:00","description":"Farminform provides high-quality market and user information about the Dutch pharmaceutical market.","breadcrumb":{"@id":"https:\/\/www.farminform.nl\/en\/who-we-are\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.farminform.nl\/en\/who-we-are\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.farminform.nl\/en\/who-we-are\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.farminform.nl\/en\/"},{"@type":"ListItem","position":2,"name":"Who we are"}]},{"@type":"WebSite","@id":"https:\/\/www.farminform.nl\/en\/#website","url":"https:\/\/www.farminform.nl\/en\/","name":"Farminform B.V.","description":"De centrale datatrust voor geneesmiddelen en farmaceutische zorg","publisher":{"@id":"https:\/\/www.farminform.nl\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.farminform.nl\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.farminform.nl\/en\/#organization","name":"Farminform B.V.","url":"https:\/\/www.farminform.nl\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.farminform.nl\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/farminform-logo-small.png","contentUrl":"https:\/\/www.farminform.nl\/wp-content\/uploads\/2024\/05\/farminform-logo-small.png","width":177,"height":113,"caption":"Farminform B.V."},"image":{"@id":"https:\/\/www.farminform.nl\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/farminform\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.farminform.nl\/en\/wp-json\/wp\/v2\/pages\/728","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.farminform.nl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.farminform.nl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.farminform.nl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.farminform.nl\/en\/wp-json\/wp\/v2\/comments?post=728"}],"version-history":[{"count":16,"href":"https:\/\/www.farminform.nl\/en\/wp-json\/wp\/v2\/pages\/728\/revisions"}],"predecessor-version":[{"id":2815,"href":"https:\/\/www.farminform.nl\/en\/wp-json\/wp\/v2\/pages\/728\/revisions\/2815"}],"wp:attachment":[{"href":"https:\/\/www.farminform.nl\/en\/wp-json\/wp\/v2\/media?parent=728"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}