{"id":1138,"date":"2012-06-26T15:23:13","date_gmt":"2012-06-26T19:23:13","guid":{"rendered":"http:\/\/www.iri.com\/blog\/?p=1138"},"modified":"2017-11-06T15:07:07","modified_gmt":"2017-11-06T20:07:07","slug":"support-for-star-schema","status":"publish","type":"post","link":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/","title":{"rendered":"Support for Star Schema"},"content":{"rendered":"<p><a href=\"http:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-medium wp-image-1527\" title=\"starschema\" src=\"http:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema-300x181.png\" alt=\"\" width=\"300\" height=\"181\" srcset=\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema-300x181.png 300w, https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png 452w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><a title=\"Star Schema Definition Wiki\" href=\"http:\/\/en.wikipedia.org\/wiki\/Star_schema\" target=\"_blank\" rel=\"noopener\">Star schema<\/a> is the simplest and most common database modelling structure used in traditional\u00a0data warehouse\u00a0<a href=\"http:\/\/www.iri.com\/solutions\/data-integration#paradigms\">paradigms<\/a>. The schema resembles a constellation of stars &#8212; generally several bright stars (facts) surrounded by dimmer ones (dimensions) where one or more fact tables reference different dimension tables.<\/p>\n<p>Star schemas are designed to improve ease-of-understanding, and retrieval performance, by minimizing the number of tables to join when materializing a transaction.<\/p>\n<p>&nbsp;<\/p>\n<p><b>Star Schema Characteristics <\/b><\/p>\n<ol>\n<li>The schema consists of a Fact table (in this case, <b><i>Sale_Fact<\/i><\/b>) whose foreign keys are inherited from the Dimension tables<\/li>\n<li>Each foreign key values is a concatenation of the corresponding foreign key value in the Dimension tables, and uniquely identifies individual records in the Fact table<\/li>\n<li>Many different Dimension tables may reference the same Fact, and do not usually reference any other tables.<\/li>\n<\/ol>\n<p><b><i>Star Schema Benefits<\/i><\/b><\/p>\n\n<table id=\"tablepress-5\" class=\"tablepress tablepress-id-5\">\n<tbody class=\"row-hover\">\n<tr class=\"row-1 odd\">\n\t<td class=\"column-1\">Simple Structure<\/td><td class=\"column-2\">The schema is easy to understand.<\/td>\n<\/tr>\n<tr class=\"row-2 even\">\n\t<td class=\"column-1\">Query Performance<\/td><td class=\"column-2\">Queries run faster against a Star Schema (than an OLTP) because it has fewer tables and a clear join path. This design feature gives consistent query results.<\/td>\n<\/tr>\n<tr class=\"row-3 odd\">\n\t<td class=\"column-1\">Load Performance<\/td><td class=\"column-2\">This schema reduces the time required to load large batches of data into the database. The impact of load operation is reduced by defining facts and dimensions, and separating them into different tables.<\/td>\n<\/tr>\n<tr class=\"row-4 even\">\n\t<td class=\"column-1\">Built-in Referential Integrity<\/td><td class=\"column-2\">A Star Schema is forced to maintain the referential integrity of the data by using primary andforeign keys. Primary keys in the dimension table become foreign keys in the Fact table to link each record across dimension and Fact tables.<\/td>\n<\/tr>\n<tr class=\"row-5 odd\">\n\t<td class=\"column-1\">Efficient Navigation through Data<\/td><td class=\"column-2\">A navigation through data is efficient in Star Schema because dimensions are joined through Fact tables. To construct an efficient query, you can browse a single-dimension table in order to select attribute values.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<!-- #tablepress-5 from cache -->\n<p>To understand why the star schema is so popular, consider an example database from a store chain where sales-related data in a central fact table is linked by a primary key &#8220;Id&#8221; column in data, store, and product dimension tables:<\/p>\n<p><a href=\"http:\/\/upload.wikimedia.org\/wikipedia\/en\/thumb\/f\/fe\/Star-schema-example.png\/300px-Star-schema-example.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignright\" title=\"Star Schema Example\" src=\"http:\/\/upload.wikimedia.org\/wikipedia\/en\/thumb\/f\/fe\/Star-schema-example.png\/300px-Star-schema-example.png\" alt=\"Star Schema Example\" width=\"300\" height=\"182\" \/><\/a><\/p>\n<p>The Fact_Sales table has a three-column (compound) primary key (Date_Id, Store_Id, Product_Id) and a non-primary Units_Sold column attribute that can be used in calculations. This structure allows queries on the Fact_Sales table (joined to the dimensional table) to retrieve specific information, such as the number of TVs sold by brand and country in a given year.<\/p>\n<p>So what does this have to do with IRI Software?<\/p>\n<ul>\n<li>The Sort Control Language (<a title=\"SortCL Product Tool Page\" href=\"http:\/\/www.iri.com\/products\/cosort\/sortcl\" target=\"_blank\" rel=\"noopener\">SortCL<\/a>) program in <a href=\"http:\/\/www.iri.com\/products\/cosort\" target=\"_blank\" rel=\"noopener\">IRI CoSort<\/a> can create and populate output file and table targets that match the layout and structure of the schema. Populating the tables can be achieved through <a title=\"What is ODBC?\" href=\"http:\/\/www.iri.com\/blog\/miscellaneous\/what-is-odbc\/\">ODBC<\/a> inserts or via pre-sorted flat files fed into a database bulk load utility; e.g. a direct path load into Oracle. CoSort is a powerful data integration and staging engine for big data warehouse ETL and ELT operations.<\/li>\n<li><a title=\"FACT Product Page\" href=\"http:\/\/www.iri.com\/products\/fact\" target=\"_blank\" rel=\"noopener\">IRI FACT<\/a>\u00a0(Fast Extract) can rapidly unload very large fact (transaction) and dimension tables into flat files for archiving, migration, replication, transformation, and\/or reporting purposes. SortCL can then perform SQL-equivalent queries (faster, outside the database) using sort, join, aggregation, selection, and custom layout commands to produce detail and summary reports.<\/li>\n<li><a title=\"FieldShield Product Page\" href=\"http:\/\/www.iri.com\/products\/fieldshield\" target=\"_blank\" rel=\"noopener\">IRI FieldShield<\/a> can apply common encryption functions across linked fields in one or more tables in the schema &#8230; preserving data formats, recoverability, and referential integrity at the same time.<\/li>\n<li><a title=\"RowGen Product Page\" href=\"http:\/\/www.iri.com\/products\/rowgen\" target=\"_blank\" rel=\"noopener\">IRI RowGen<\/a>\u00a0can produce and load structurally and referentially correct test data in both star schema fact and dimension tables, pre-sorted over the primary key value. Any number of rows can be generated for the tables individually, with column values reflecting the appearance and frequency distributions of (but without coming from unsafe or inadequate) production data.<\/li>\n<li><a href=\"http:\/\/www.iri.com\/products\/voracity\" target=\"_blank\" rel=\"noopener\">The IRI Voracity<\/a>\u00a0ETL platform, which supports all of the above, also creates\u00a0star schema E-R diagrams, <a href=\"http:\/\/www.iri.com\/blog\/data-transformation2\/schema-migration-relational-to-star\/\" target=\"_blank\" rel=\"noopener\">converts to<\/a> and from star schema, and uses it in data integration (<a href=\"http:\/\/www.iri.com\/solutions\/data-integration\/etl\" target=\"_blank\" rel=\"noopener\">ETL<\/a>), <a href=\"https:\/\/www.iri.com\/solutions\/metadata-mdm\/metadata-management\">lineage<\/a>,\u00a0<a href=\"http:\/\/www.iri.com\/solutions\/data-integration\/data-quality\" target=\"_blank\" rel=\"noopener\">quality<\/a>, and\u00a0<a href=\"http:\/\/www.iri.com\/solutions\/data-and-database-migration\/replication\" target=\"_blank\" rel=\"noopener\">replication<\/a>\u00a0jobs, tpo.<\/li>\n<\/ul>\n<p>Contact <a href=\"mailto:voracity@iri.com\">voracity@iri.com<\/a> if you have any questions.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Star schema is the simplest and most common database modelling structure used in traditional\u00a0data warehouse\u00a0paradigms. The schema resembles a constellation of stars &#8212; generally several bright stars (facts) surrounded by dimmer ones (dimensions) where one or more fact tables reference different dimension tables. Star schemas are designed to improve ease-of-understanding, and retrieval performance, by minimizing<\/p>\n<div><a class=\"btn-filled btn\" href=\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/\" title=\"Support for Star Schema\">Read More<\/a><\/div>\n","protected":false},"author":3,"featured_media":1527,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"categories":[31,1,776,91,233,29],"tags":[77,5,28,1285,1284,1283,75,50,83,1216],"class_list":["post-1138","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-data-migration","category-data-transformation2","category-etl","category-iri-workbench","category-metadata-management","category-test-data","tag-data-migration-2","tag-data-transformation","tag-data-warehousing","tag-db-schema","tag-etl-schema","tag-etl-test-data","tag-odbc","tag-oracle","tag-star-schema","tag-voracity"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.4 (Yoast SEO v23.4) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Support for Star Schema - IRI<\/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:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Support for Star Schema\" \/>\n<meta property=\"og:description\" content=\"Star schema is the simplest and most common database modelling structure used in traditional\u00a0data warehouse\u00a0paradigms. The schema resembles a constellation of stars &#8212; generally several bright stars (facts) surrounded by dimmer ones (dimensions) where one or more fact tables reference different dimension tables. Star schemas are designed to improve ease-of-understanding, and retrieval performance, by minimizingRead More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/\" \/>\n<meta property=\"og:site_name\" content=\"IRI\" \/>\n<meta property=\"article:published_time\" content=\"2012-06-26T19:23:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-11-06T20:07:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png\" \/>\n\t<meta property=\"og:image:width\" content=\"452\" \/>\n\t<meta property=\"og:image:height\" content=\"273\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"David Friedland\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"David Friedland\" \/>\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:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/\"},\"author\":{\"name\":\"David Friedland\",\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/person\/cdb89f0c0a9c88810b8516d4b140734a\"},\"headline\":\"Support for Star Schema\",\"datePublished\":\"2012-06-26T19:23:13+00:00\",\"dateModified\":\"2017-11-06T20:07:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/\"},\"wordCount\":512,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.iri.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png\",\"keywords\":[\"data migration\",\"data transformation\",\"Data Warehousing\",\"DB schema\",\"ETL schema\",\"ETL test data\",\"ODBC\",\"Oracle\",\"Star Schema\",\"Voracity\"],\"articleSection\":[\"Data Migration\",\"Data Transformation\",\"ETL\",\"IRI Workbench\",\"Metadata Management\",\"Test Data\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/\",\"url\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/\",\"name\":\"Support for Star Schema - IRI\",\"isPartOf\":{\"@id\":\"https:\/\/www.iri.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png\",\"datePublished\":\"2012-06-26T19:23:13+00:00\",\"dateModified\":\"2017-11-06T20:07:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#primaryimage\",\"url\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png\",\"contentUrl\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png\",\"width\":\"452\",\"height\":\"273\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.iri.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Support for Star Schema\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.iri.com\/blog\/#website\",\"url\":\"https:\/\/www.iri.com\/blog\/\",\"name\":\"IRI\",\"description\":\"Total Data Management Blog\",\"publisher\":{\"@id\":\"https:\/\/www.iri.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.iri.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.iri.com\/blog\/#organization\",\"name\":\"IRI\",\"url\":\"https:\/\/www.iri.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2019\/02\/iri-logo-total-data-management-small-1.png\",\"contentUrl\":\"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2019\/02\/iri-logo-total-data-management-small-1.png\",\"width\":750,\"height\":206,\"caption\":\"IRI\"},\"image\":{\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/person\/cdb89f0c0a9c88810b8516d4b140734a\",\"name\":\"David Friedland\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.iri.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/995ea08bc7d036da625671cb48a636eb?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/995ea08bc7d036da625671cb48a636eb?s=96&d=blank&r=g\",\"caption\":\"David Friedland\"},\"url\":\"https:\/\/www.iri.com\/blog\/author\/davidf\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Support for Star Schema - IRI","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.iri.com\/blog\/data-transformation2\/support-for-star-schema\/","og_locale":"en_US","og_type":"article","og_title":"Support for Star Schema","og_description":"Star schema is the simplest and most common database modelling structure used in traditional\u00a0data warehouse\u00a0paradigms. The schema resembles a constellation of stars &#8212; generally several bright stars (facts) surrounded by dimmer ones (dimensions) where one or more fact tables reference different dimension tables. Star schemas are designed to improve ease-of-understanding, and retrieval performance, by minimizingRead More","og_url":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/","og_site_name":"IRI","article_published_time":"2012-06-26T19:23:13+00:00","article_modified_time":"2017-11-06T20:07:07+00:00","og_image":[{"width":452,"height":273,"url":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png","type":"image\/png"}],"author":"David Friedland","twitter_card":"summary_large_image","twitter_misc":{"Written by":"David Friedland","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#article","isPartOf":{"@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/"},"author":{"name":"David Friedland","@id":"https:\/\/www.iri.com\/blog\/#\/schema\/person\/cdb89f0c0a9c88810b8516d4b140734a"},"headline":"Support for Star Schema","datePublished":"2012-06-26T19:23:13+00:00","dateModified":"2017-11-06T20:07:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/"},"wordCount":512,"commentCount":0,"publisher":{"@id":"https:\/\/www.iri.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#primaryimage"},"thumbnailUrl":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png","keywords":["data migration","data transformation","Data Warehousing","DB schema","ETL schema","ETL test data","ODBC","Oracle","Star Schema","Voracity"],"articleSection":["Data Migration","Data Transformation","ETL","IRI Workbench","Metadata Management","Test Data"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/","url":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/","name":"Support for Star Schema - IRI","isPartOf":{"@id":"https:\/\/www.iri.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#primaryimage"},"image":{"@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#primaryimage"},"thumbnailUrl":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png","datePublished":"2012-06-26T19:23:13+00:00","dateModified":"2017-11-06T20:07:07+00:00","breadcrumb":{"@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#primaryimage","url":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png","contentUrl":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png","width":"452","height":"273"},{"@type":"BreadcrumbList","@id":"https:\/\/www.iri.com\/blog\/data-transformation2\/support-for-star-schema\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.iri.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Support for Star Schema"}]},{"@type":"WebSite","@id":"https:\/\/www.iri.com\/blog\/#website","url":"https:\/\/www.iri.com\/blog\/","name":"IRI","description":"Total Data Management Blog","publisher":{"@id":"https:\/\/www.iri.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.iri.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.iri.com\/blog\/#organization","name":"IRI","url":"https:\/\/www.iri.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.iri.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2019\/02\/iri-logo-total-data-management-small-1.png","contentUrl":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2019\/02\/iri-logo-total-data-management-small-1.png","width":750,"height":206,"caption":"IRI"},"image":{"@id":"https:\/\/www.iri.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.iri.com\/blog\/#\/schema\/person\/cdb89f0c0a9c88810b8516d4b140734a","name":"David Friedland","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.iri.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/995ea08bc7d036da625671cb48a636eb?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/995ea08bc7d036da625671cb48a636eb?s=96&d=blank&r=g","caption":"David Friedland"},"url":"https:\/\/www.iri.com\/blog\/author\/davidf\/"}]}},"jetpack_featured_media_url":"https:\/\/www.iri.com\/blog\/wp-content\/uploads\/2012\/06\/starschema.png","_links":{"self":[{"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/posts\/1138"}],"collection":[{"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/comments?post=1138"}],"version-history":[{"count":81,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/posts\/1138\/revisions"}],"predecessor-version":[{"id":11284,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/posts\/1138\/revisions\/11284"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/media\/1527"}],"wp:attachment":[{"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/media?parent=1138"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/categories?post=1138"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.iri.com\/blog\/wp-json\/wp\/v2\/tags?post=1138"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}