{"id":14447,"date":"2026-05-22T09:00:14","date_gmt":"2026-05-22T07:00:14","guid":{"rendered":"https:\/\/chapmanbright.com\/?post_type=resources&#038;p=14447"},"modified":"2026-05-22T09:00:14","modified_gmt":"2026-05-22T07:00:14","slug":"resources-using-data-store-in-make","status":"publish","type":"resources","link":"https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/","title":"Using the Data Store in Make.com","content":{"rendered":"","protected":false},"parent":0,"template":"","cb_resources_category":[],"class_list":["post-14447","resources","type-resources","status-publish","hentry"],"acf":{"banner":13391,"title":"Using the Data Store in Make.com","text_overview":"How to set up a Data Store, design a solid structure, and use common modules to write, retrieve, search, and maintain records.","image":14449,"button":"Read","components":[{"acf_fc_layout":"layout_textblock_full","background":"none","title":"","text":"Make Data Stores provide a lightweight, built-in way to persist data inside Make. This allows you to keep state between scenario runs, share structured reference data across scenarios, and reduce unnecessary calls to external systems when you only need a simple lookup table.\r\n\r\nThis page shows you how to set up a Data Store, design a solid structure, and use common modules to write, retrieve, search, and maintain records. It also covers the governance fundamentals that prevent small automations from turning into fragile, hard-to-own processes.\r\n\r\nIf you are building B2B automations across Marketing Ops, RevOps, IT, and integration teams, Data Stores can quietly improve reliability, reduce API pressure, and create better cross-system coordination. Further below, you will see practical use cases in marketing and sales environments where this approach delivers measurable value.\r\n\r\nCurious how Make.com, data stores, and automation could improve your workflows? Explore our <a href=\"https:\/\/chapmanbright.com\/make\/\">Make.com services and use cases<\/a>","button":null},{"acf_fc_layout":"layout_textblock_full","background":"grey-light","title":"Why use a Data Store in Make?","text":"A Data Store is useful when you need simple persistence and fast lookups without introducing a separate database.\r\n\r\nTypical use cases include:\r\n<ul>\r\n \t<li>Stateful automation. Track what has been processed, what is pending, and what requires retry.<\/li>\r\n \t<li>Shared reference data. Store mappings such as territory rules, owner assignments, campaign codes, or product metadata.<\/li>\r\n \t<li>Reduced API pressure. Cache enrichment or configuration data to avoid refetching values on every run.<\/li>\r\n \t<li>Better control. Keep automation logic data in one governed location instead of scattering it across filters and hardcoded fields.<\/li>\r\n \t<li>Faster change management. Update a single mapping record instead of editing and redeploying multiple scenarios.<\/li>\r\n<\/ul>\r\nMake positions Data Stores as a simple database to store and manage data across scenarios and runs. In practice, the real value comes from how you design and operate them.","button":null},{"acf_fc_layout":"layout_textblock_full","background":"none","title":"How Data Stores work","text":"<strong>Data structures\r\n<\/strong>Before storing records, you define a data structure. This acts as your schema, including fields, types, and required attributes.\r\nStrong structures are:\r\n<ul>\r\n \t<li>Stable. Fields rarely change.<\/li>\r\n \t<li>Explicit. Clear naming and consistent formats.<\/li>\r\n \t<li>Versionable. You can evolve the structure without breaking downstream scenarios.<\/li>\r\n<\/ul>\r\nMake separates Data Stores from Data Structures, and the structure defines how stored data is processed and validated.\r\n\r\n<strong>Records and keys<\/strong>\r\nA Data Store holds records. Each record has a key plus your structured fields.\r\nPlan keys carefully:\r\n<ul>\r\n \t<li>Use deterministic identifiers such as crmLeadId, email, orderId, or externalId.<\/li>\r\n \t<li>Prefer a single source-of-truth identifier.<\/li>\r\n \t<li>Avoid keys that change, such as names or free-text values.<\/li>\r\n<\/ul>\r\nPoor key design is one of the most common causes of fragile automation.\r\n\r\n<strong>Storage allowance and scale considerations<\/strong>\r\nData Stores are not a replacement for a full database. They are designed for simple persistence and controlled lookups, with storage tied to your Make plan allowance.\r\n\r\nMake documents that total storage is based on your plan and is linked to your operational allowance. If you expect high volume or long retention, validate your plan limits early.","button":null},{"acf_fc_layout":"layout_textblock_2col","background":"secondary","title_left":"","text_left":"<h1>Creating and using a Data Store<\/h1>","video_left":null,"button_left":null,"title_right":"","text_right":"","video_right":null,"button_right":null},{"acf_fc_layout":"layout_textblock_2col","background":"secondary","title_left":"Step 1: Create the Data Store","text_left":"In Make:\r\n<ol>\r\n \t<li>Go to Data stores in your organisation or team settings.<\/li>\r\n \t<li>Click Add data store.<\/li>\r\n \t<li>Name it clearly, for example: lead-routing-rules, enrichment-cache, processed-events<\/li>\r\n<\/ol>\r\nTreat the name as an internal contract. If the Data Store becomes business-critical, ownership and scope should be immediately clear.","video_left":null,"button_left":null,"title_right":"Step 2: Define your data structure","text_right":"<ul>\r\n \t<li>Create or select a data structure aligned with your use case.<\/li>\r\n \t<li>Keep it tight. Every extra field increases complexity and governance overhead.<\/li>\r\n \t<li>Design for what must be true, not what might be useful someday.<\/li>\r\n<\/ul>","video_right":null,"button_right":null},{"acf_fc_layout":"layout_textblock_2col","background":"secondary","title_left":"Step 3: Write data (create or update records)","text_left":"Use Data Store modules to insert or update records inside your scenario.\r\n\r\nPractical guidance:\r\n<ul>\r\n \t<li>Create on first sight. If the record is new, store it immediately with a timestamp.<\/li>\r\n \t<li>Update on state change. Modify status fields when downstream steps succeed.<\/li>\r\n \t<li>Avoid duplicates. Choose keys that enforce uniqueness for the entity you model.<\/li>\r\n<\/ul>\r\nCommon implementation approaches:\r\n<ul>\r\n \t<li>Upsert approach. Attempt a get, create if missing, otherwise update.<\/li>\r\n \t<li>Replace approach. Overwrite when only the latest state matters.<\/li>\r\n<\/ul>\r\nConsistency here improves reliability across scenario retries.","video_left":null,"button_left":null,"title_right":"Step 4: Read data (get, search, count)","text_right":"Use reads for lookups, rule evaluation, and guardrails.\r\n\r\nCommon use cases:\r\n<ul>\r\n \t<li>Get by key. Fastest and most reliable when you have a deterministic identifier.<\/li>\r\n \t<li>Search records. Useful for rule matching or controlled subsets.<\/li>\r\n \t<li>Count records. Helpful for monitoring, sanity checks, or lightweight rate control.<\/li>\r\n<\/ul>\r\nSearch is powerful but can become slow if you rely on broad scans. Design your keys and fields so queries remain narrow and predictable.","video_right":null,"button_right":null},{"acf_fc_layout":"layout_textblock_2col","background":"secondary","title_left":"Step 5: Delete or expire data safely","text_left":"Avoid turning your Data Store into a junk drawer.\r\n\r\nEffective approaches:\r\n<ul>\r\n \t<li>Soft delete. Mark active = false and retain for audit.<\/li>\r\n \t<li>Retention window. Store expiresAt and schedule cleanup scenarios.<\/li>\r\n \t<li>Scoped stores. Separate cache-type data from audit-type data.<\/li>\r\n<\/ul>\r\nLifecycle thinking is part of responsible automation design.","video_left":null,"button_left":null,"title_right":"","text_right":"","video_right":null,"button_right":null},{"acf_fc_layout":"layout_textblock_full","background":"grey-light","title":"Practical use cases that hold up in production","text":"Below are use cases we see work well in B2B marketing, sales, and integration environments.\r\n<ul>\r\n \t<li>Idempotency ledger. Store processed event IDs so webhooks and polling do not create duplicates across CRM and marketing automation.<\/li>\r\n \t<li>Lead routing rules. Maintain assignment logic outside individual platforms when you need cross-system coordination between CRM, MAP, and territory logic.<\/li>\r\n \t<li>Enrichment cache. Store enrichment results such as firmographics or domains to reduce third-party API calls and cost.<\/li>\r\n \t<li>Consent and preference checkpoints. Track last-seen consent state to prevent accidental regressions across systems.<\/li>\r\n \t<li>Scenario configuration. Store environment flags, rate limits, batch sizes, or feature toggles for safer releases across regions.<\/li>\r\n<\/ul>\r\nMake Data Stores are intended for storing data from scenarios and transferring data between scenario runs. When designed intentionally, they become a stable coordination layer across marketing and sales processes.","button":null},{"acf_fc_layout":"layout_form","image":null,"title":"More great resources like this? Subscribe!","form":"<script src=\"\/\/app-nld101.marketo.com\/js\/forms2\/js\/forms2.min.js\"><\/script>\r\n<form id=\"mktoForm_1012\"><\/form>\r\n<script>MktoForms2.loadForm(\"\/\/app-nld101.marketo.com\", \"709-IWW-550\", 1012);<\/script>"},{"acf_fc_layout":"layout_textblock_full","background":"grey-light","title":"Common questions","text":"<strong>When should I use a Data Store versus an external database?<\/strong>\r\nUse a Data Store when you need simple persistence, small reference datasets, caching, or state tracking inside Make. Use an external database when you require complex queries, large volumes, strict reporting, or multi-application transactional control.\r\n\r\n<strong>Are Data Stores good for lead routing rules?<\/strong>\r\nYes, especially when rules change often and multiple scenarios depend on the same logic. Store the routing table once and reference it consistently across scenarios.\r\n\r\n<strong>How do I prevent duplicate processing?<\/strong>\r\nUse an idempotency approach. Store an eventId or source record ID as the key. Write it as soon as processing starts and check it at the beginning of retries.\r\nCan I share a Data Store across multiple scenarios?\r\nYes. Sharing data across scenarios and runs is one of the primary benefits.\r\n\r\n<strong>What are common failure modes?<\/strong>\r\n<ul>\r\n \t<li>Missing or inconsistent keys<\/li>\r\n \t<li>Schema drift when fields change without updating scenarios<\/li>\r\n \t<li>Broad searches that degrade over time<\/li>\r\n \t<li>Lack of cleanup in caches<\/li>\r\n \t<li>No error handling, causing noisy failures<\/li>\r\n<\/ul>\r\n<strong>How do I make this enterprise-ready?<\/strong>\r\nDefine ownership, document the schema, monitor usage, and treat structural edits as controlled releases. The enterprise quality comes from governance and operating model, not technical complexity.\r\n\r\n<strong>Do Data Stores have storage limits?<\/strong>\r\nYes. Storage allowance depends on your Make plan and operational capacity. Validate limits before designing high-volume or long-retention use cases.","button":null},{"acf_fc_layout":"layout_cta","title":"Curious how this can help you ","subtitle":"scale smarter with Make?","button":{"title":"Schedule a Discovery Call","url":"https:\/\/chapmanbright.com\/schedule-a-discovery-call\/?topic=using-make-data-store","target":""}}]},"acfml_non_translatable_locations":null,"_yoast_wpseo_primary_cb_chaploop_category":null,"_yoast_wpseo_primary_category":null,"_yoast_wpseo_primary_cb_resources_category":"","_oembed_93c4ee9e07cccdbab2160d89f51e0593":null,"_oembed_time_93c4ee9e07cccdbab2160d89f51e0593":null,"_oembed_895c57a59179d1bdcc0438a6aef65717":null,"_oembed_time_895c57a59179d1bdcc0438a6aef65717":null,"_oembed_a76e0da45bf1cb4c09bc985b193bb36b":null,"_oembed_time_a76e0da45bf1cb4c09bc985b193bb36b":null,"_oembed_d471c06fe0867c32a7c3cd67b5476e72":null,"_oembed_time_d471c06fe0867c32a7c3cd67b5476e72":null,"_oembed_3e251453af4bbbd696536d0acadba70c":null,"_oembed_time_3e251453af4bbbd696536d0acadba70c":null,"_oembed_609a8aa9fc83eb054ff7bc4d33a77773":null,"_oembed_time_609a8aa9fc83eb054ff7bc4d33a77773":null,"_oembed_69e7431aa03b88885898bf8bb28fb3a2":null,"_oembed_time_69e7431aa03b88885898bf8bb28fb3a2":null,"_oembed_1a7070c378b395415af4a19fb20df21e":null,"_oembed_time_1a7070c378b395415af4a19fb20df21e":null,"_oembed_55d4298c0fe3b359fd893e8424afe5ff":null,"_oembed_time_55d4298c0fe3b359fd893e8424afe5ff":null,"_oembed_f9c03bd9872da4d01788e5fab78083b5":null,"_oembed_time_f9c03bd9872da4d01788e5fab78083b5":null,"_oembed_ed31fabb7dfe0fd87fcb196f605adf8a":null,"_oembed_time_ed31fabb7dfe0fd87fcb196f605adf8a":null,"_oembed_f06b7516090267ff536179713f17601d":null,"_oembed_time_f06b7516090267ff536179713f17601d":null,"_oembed_e410f7495d0eaf4554919b3e5f478077":null,"_oembed_72a013d9dd3f2322671bc171fe3158ee":null,"_oembed_940f9a7b80afb0cbcc3ba55ead955b1e":null,"_oembed_06caf10aa2f40e07a7dc241ec9381e32":null,"_oembed_time_06caf10aa2f40e07a7dc241ec9381e32":null,"_oembed_3b19edfaec2ee2d35e9b030ef998c63e":null,"_oembed_time_3b19edfaec2ee2d35e9b030ef998c63e":null,"_oembed_4dbf01cda5d7c2b1d4e613889ea0ea41":null,"_oembed_790b310b2853f889f44a51704e8e43db":null,"_oembed_de0c2f3a9e579d82d9ba59d46c7d6f13":null,"_oembed_time_de0c2f3a9e579d82d9ba59d46c7d6f13":null,"_oembed_f6e83cecc2e9acb7d1ef17990035200a":null,"_oembed_time_f6e83cecc2e9acb7d1ef17990035200a":null,"_oembed_37f9de01864257564c01942ac642dd0a":null,"_oembed_time_37f9de01864257564c01942ac642dd0a":null,"_oembed_bb413565e8d54f815c41cfcbf8544000":null,"_oembed_time_bb413565e8d54f815c41cfcbf8544000":null,"_oembed_01c508667543a073acaa932efa5f40c3":null,"_oembed_time_01c508667543a073acaa932efa5f40c3":null,"_oembed_04cd44f1f3f9be9b6faab34a598e255f":null,"_oembed_time_04cd44f1f3f9be9b6faab34a598e255f":null,"_oembed_df22d986c96061734fee19868cf88af0":null,"_oembed_time_df22d986c96061734fee19868cf88af0":null,"_oembed_e10bab5640f3efd1a065332325fa1451":null,"banner":"13392","_banner":"field_5c7651d015c5c","_title":"field_5c7651d015e12","components":["layout_textblock_full","layout_textblock_full","layout_textblock_full","layout_textblock_2col","layout_textblock_2col","layout_textblock_2col","layout_textblock_2col","layout_textblock_full","layout_form","layout_textblock_full","layout_cta"],"_components":"field_5c61508b6fb90","_yoast_wpseo_focuskw":"Using Data Stores in Make.com","_yoast_wpseo_title":"How to use the Data Store in Make.com","_yoast_wpseo_metadesc":"Make.com data store modules, Make data structures, Make data store search records, Make data storage allowance","text_overview":"How to set up a Data Store, design a solid structure, and use common modules to write, retrieve, search, and maintain records.","_text_overview":"field_5c7651d015fe3","subtitle":null,"_subtitle":null,"logo":null,"_logo":null,"image":"14448","_image":"field_5c7651f47d2e1","button":"Read","_button":"field_5cc848e646b9e","components_4_categories":null,"_components_4_categories":null,"text_intro":null,"_text_intro":null,"frontpage_image":null,"_frontpage_image":null,"event_date_day":null,"_event_date_day":null,"image_link":null,"_image_link":null,"_yoast_wpseo_opengraph-image":null,"_yoast_wpseo_opengraph-image-id":null,"_yoast_wpseo_twitter-image":null,"_yoast_wpseo_twitter-image-id":null,"_yoast_wpseo_opengraph-title":null,"_yoast_wpseo_opengraph-description":null,"_yoast_wpseo_twitter-title":null,"_yoast_wpseo_twitter-description":null,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to use the Data Store in Make.com<\/title>\n<meta name=\"description\" content=\"Make.com data store modules, Make data structures, Make data store search records, Make data storage allowance\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to use the Data Store in Make.com\" \/>\n<meta property=\"og:description\" content=\"Make.com data store modules, Make data structures, Make data store search records, Make data storage allowance\" \/>\n<meta property=\"og:url\" content=\"https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/\" \/>\n<meta property=\"og:site_name\" content=\"Chapman Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@chapmanbright\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/resources\\\/%resource%\\\/resources-using-data-store-in-make\\\/\",\"url\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/resources\\\/%resource%\\\/resources-using-data-store-in-make\\\/\",\"name\":\"How to use the Data Store in Make.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/#website\"},\"datePublished\":\"2026-05-22T07:00:14+00:00\",\"description\":\"Make.com data store modules, Make data structures, Make data store search records, Make data storage allowance\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/resources\\\/%resource%\\\/resources-using-data-store-in-make\\\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/resources\\\/%resource%\\\/resources-using-data-store-in-make\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/resources\\\/%resource%\\\/resources-using-data-store-in-make\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources\",\"item\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/resources\\\/%resource%\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Using the Data Store in Make.com\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/#website\",\"url\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/\",\"name\":\"Chapman Bright\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"nl-NL\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/#organization\",\"name\":\"Chapman Bright\",\"url\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/chapmanbright.com\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/logo_chapmanbright_colour_RGB.png\",\"contentUrl\":\"https:\\\/\\\/chapmanbright.com\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/logo_chapmanbright_colour_RGB.png\",\"width\":2000,\"height\":338,\"caption\":\"Chapman Bright\"},\"image\":{\"@id\":\"https:\\\/\\\/chapmanbright.com\\\/nl\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/chapmanbright\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/chapman-bright\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use the Data Store in Make.com","description":"Make.com data store modules, Make data structures, Make data store search records, Make data storage allowance","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:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/","og_locale":"nl_NL","og_type":"article","og_title":"How to use the Data Store in Make.com","og_description":"Make.com data store modules, Make data structures, Make data store search records, Make data storage allowance","og_url":"https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/","og_site_name":"Chapman Bright","twitter_card":"summary_large_image","twitter_site":"@chapmanbright","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/","url":"https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/","name":"How to use the Data Store in Make.com","isPartOf":{"@id":"https:\/\/chapmanbright.com\/nl\/#website"},"datePublished":"2026-05-22T07:00:14+00:00","description":"Make.com data store modules, Make data structures, Make data store search records, Make data storage allowance","breadcrumb":{"@id":"https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/resources-using-data-store-in-make\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/chapmanbright.com\/nl\/"},{"@type":"ListItem","position":2,"name":"Resources","item":"https:\/\/chapmanbright.com\/nl\/resources\/%resource%\/"},{"@type":"ListItem","position":3,"name":"Using the Data Store in Make.com"}]},{"@type":"WebSite","@id":"https:\/\/chapmanbright.com\/nl\/#website","url":"https:\/\/chapmanbright.com\/nl\/","name":"Chapman Bright","description":"","publisher":{"@id":"https:\/\/chapmanbright.com\/nl\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chapmanbright.com\/nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"nl-NL"},{"@type":"Organization","@id":"https:\/\/chapmanbright.com\/nl\/#organization","name":"Chapman Bright","url":"https:\/\/chapmanbright.com\/nl\/","logo":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/chapmanbright.com\/nl\/#\/schema\/logo\/image\/","url":"https:\/\/chapmanbright.com\/wp-content\/uploads\/2019\/03\/logo_chapmanbright_colour_RGB.png","contentUrl":"https:\/\/chapmanbright.com\/wp-content\/uploads\/2019\/03\/logo_chapmanbright_colour_RGB.png","width":2000,"height":338,"caption":"Chapman Bright"},"image":{"@id":"https:\/\/chapmanbright.com\/nl\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/chapmanbright","https:\/\/www.linkedin.com\/company\/chapman-bright\/"]}]}},"_links":{"self":[{"href":"https:\/\/chapmanbright.com\/nl\/wp-json\/wp\/v2\/resources\/14447","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chapmanbright.com\/nl\/wp-json\/wp\/v2\/resources"}],"about":[{"href":"https:\/\/chapmanbright.com\/nl\/wp-json\/wp\/v2\/types\/resources"}],"wp:attachment":[{"href":"https:\/\/chapmanbright.com\/nl\/wp-json\/wp\/v2\/media?parent=14447"}],"wp:term":[{"taxonomy":"cb_resources_category","embeddable":true,"href":"https:\/\/chapmanbright.com\/nl\/wp-json\/wp\/v2\/cb_resources_category?post=14447"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}