{"info":{"_postman_id":"e4f42b33-8753-4a90-bd7c-cfb1360c4142","name":"Postman swagger test with model tables","description":"<html><head></head><body><h1 id=\"introduction\">Introduction</h1>\n<p>Rich Data Services (RDS) is a suite of REST APIs designed by Metadata Technology North America (MTNA) to meet various needs for data engineers, managers, custodians, and consumers. RDS provides a range of services including data profiling, mapping, transformation, validation, ingestion, and dissemination. For more information about each of these APIs and how you can incorporate or consume them as part of your work flow please visit the <a href=\"https://mtna.us/\">MTNA website</a>.</p>\n<h1 id=\"overview\">Overview</h1>\n<p>The APIs documented here provide data managers a way to expose and disseminate their data in useful, robust, and flexible ways to end users. Data managers can use RDS to not only set up connections to their data, but document it in ways that enlighten users as to the original purpose of the data and its intended use, making data discovery for the end user much more convenient. </p>\n<h2 id=\"exposing-data\">Exposing Data</h2>\n<p>Managers begin by building their RDS catalog, a two level hierarchy of catalogs and data products. Each catalog could be a clients data, a series of data products, or even data products about similar topics. The catalogs help managers group data products in a logical fashion. After a catalog is created, data products can be added to them, which set up the specifics of the data source that is being used. Once the data product is added to the catalog, the manager can choose to be done. The basic metadata from the data source will be used to fill out information about the variables in the data product (ID, name, data type) and the data can be queried by end users immediately. If a manager does not wish to expose their catalog or data products to anyone other than administrators, these can be set to \"private\".</p>\n<h2 id=\"enhancing-data-with-metadata\">Enhancing Data With Metadata</h2>\n<p>While data can be queried immediately after setting up a data product, managers can continue to enhance the data product through the process of documenting the data (creating metadata). This could be updating variable names to be more meaningful, adding labels, descriptions, classifications, or one of many other properties on the variables in the data product. The addition of metadata helps bring meaning and intention to the data. This is vital for robust user interfaces, processing, and even the generated data packages that RDS performs. In addition, metadata allows users to discover the data they are looking for easily.</p>\n<h2 id=\"rich-querying\">Rich Querying</h2>\n<p>Very rarely will users actually want to view an entire data set, most of the time it is expected for users to subset their data based on variables or topics of interest. This brings up a couple interesting issues for users trying to access the data. If users are unfamiliar with the data source or variable names, how are they supposed to select the variables they are interested in? This may not be a big deal for small data sources, but do we really expect users to search through hundreds or thousands of variables on big data sources in order to find the variable they are interested in? To solve this problem, RDS leverages the documentation that administrators have added to provide enhanced selection capability. </p>\n<h3 id=\"query-by-variable-names--regular-expression\">Query by Variable Names / Regular Expression</h3>\n<p>The first way RDS allows users to select variables is through the well known and traditional way of specifying variable names. If we know the variables we want to work with this is a great way to quickly subset our data. This is done through the use of the cols parameter, which takes a comma separated list of values. The names used are all treated as regular expressions, so feel free to treat them as such. </p>\n<p><code>http://{host}/rds/api/catalog/{catalogId}/{dataProductId}/select?cols=col1,col2,col3,col[0-9]+,... </code></p>\n<h3 id=\"query-by-keyword\">Query by Keyword</h3>\n<p>Key words are another way to search for variables. When selecting variables by keywords it is important to have good metadata backing the variables. A variables name, label, description, and question text will be searched for the keyword and any and all matches will be returned. To search on keywords we will have to put a $ before the keyword we would like to search on in the cols parameter.</p>\n<p><code>http://{host}/rds/api/catalog/{catalogId}/{dataProductId}/select?cols=$keyword</code></p>\n<h2 id=\"interactive-dictionaries\">Interactive Dictionaries</h2>\n<p>While RDS is designed to deliver both data and metadata, the metadata can be queried by itself in order to provide clients with a wealth of knowledge about what is in the data. A dynamic data dictionary could be created to provide users with an in depth look at a data product before they even begin to query the data. </p>\n<h3 id=\"getting-the-variables\">Getting the Variables</h3>\n<p>The logical place to start when displaying a data products contents would be the products variables (columns). This will provide end users with high level information about the variables which they can then drill down into if desired. RDS provides variable summaries as a quick way to set this up. The in addition to variable information, the summary also may contain a classification URI, which could be used to direct a user to a particular classification without the need to dig any further into the variable metadata.</p>\n<p><code>http://{host}/rds/api/catalog/{catalogId}/{dataProductId}/variables</code></p>\n<h3 id=\"getting-more-information-about-a-variable\">Getting More Information About a Variable</h3>\n<p>The variable summaries are a good place to start when presenting the metadata to users, but to save querying time they are not used to store all of the variable information (summary statistics and frequencies for instance). If a user selects a variable, it would make sense to get a full variable with all the information available.</p>\n<p><code>http://{host}/rds/api/catalog/{catalogId}/{dataProductId}/variable/{variableId}</code></p>\n<h3 id=\"getting-a-classification\">Getting a Classification</h3>\n<p>Classifications are essentially a set of codes and their values, and are often vital to understanding the data stored in any given data product. If a variable has a classification associated with it it will have the 'classification URI' property filled out. This can be used to retrieve high level information about the classification. Beware though, due to the fact that some classifications can be extremely large (100ks of codes) no codes will be returned on the classification, they need to be queried by themselves. </p>\n<p><code>http://{host}/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationUri}</code></p>\n<h3 id=\"building-a-classification\">Building a Classification</h3>\n<p>Due to the fact that classifications can be very large, separate calls must be made to get a subset of codes in batches. These can be used to build out a classification as a user browsers / paginates through the codelist. </p>\n<p><code>http://{host}/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationUri}/codes</code></p>\n<h2 id=\"customized-data-packaging\">Customized Data Packaging</h2>\n<p>In many instances, data available on the web is provided in an open format (CSV or tab delimited) along with documentation typically provided in text, Word, or PDF formats. This presents a huge challenge for users as these formats are not machine actionable, meaning that the user has the burden of transcribing the metadata into the format they want. </p>\n<p>RDS solves this by providing a variety of formats that include the metadata in actionable ways. In addition to the text or Excel data formats that are so common, SQL scripts can be generated to recreate the extract (and variables look up tables) in the users preferred SQL database. For users that prefer to load their data in statistical software, SAS, SPSS, and Stata syntax can be generated to accompany the data.</p>\n<h3 id=\"discovering-packaging-formats\">Discovering Packaging Formats</h3>\n<p>Curious as to what formats RDS provides? Just make the following call to discover what is available, the formats will be organized into sections for data, documentation, metadata, and scripts.</p>\n<p><code>http://{host}/rds/api/package/options</code></p>\n<p>The returned formats should have a name, ID, and description, giving a basic description of what the formats are and their intended purpose. </p>\n<h3 id=\"configure-packaging-options\">Configure Packaging Options</h3>\n<p>When users find a package that fits their need, they can get a configuration object using the ID as follows:</p>\n<p><code>http://{host}/rds/api/package/options/{formatId}</code></p>\n<p>This will return an object containing all the options available for the format. These options can filled out and added to an array of packaging options that can be used to create a data package. </p>\n<h3 id=\"packaging-data\">Packaging Data</h3>\n<p>Once all the formats are picked and their options filled out, these can be posted to the following endpoints (with the appropriate queries in the query parameters as normal) to start a packaging process.</p>\n<p><code>http://{host}/rds/api/package/{catalogId}/{dataProductId}/select</code>\n<code>http://{host}/rds/api/package/{catalogId}/{dataProductId}/tabulate</code></p>\n<p>These will return a process ID, which can be used to check the process status at </p>\n<p><code>http://{host}/rds/api/package/processdetails/{processId}</code></p>\n<p>and to download the package upon completion at</p>\n<p><code>http://{host}/rds/api/package/{processId}</code></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Introduction","slug":"introduction"},{"content":"Overview","slug":"overview"}],"owner":"2220438","collectionId":"e4f42b33-8753-4a90-bd7c-cfb1360c4142","publishedId":"SzS4QmXD","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"106FA5","highlight":"89BC44"},"publishDate":"2020-03-16T13:10:06.000Z"},"item":[{"name":"InformationController","item":[{"name":"Get changelog.\n","id":"b7e0698a-f676-4774-9623-1cf995e430cd","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/changelog","description":"<p>\nShows the change log of RDS providing version information about\nadditions, changes, deprecations, fixed bugs, removals, and security\nenhancements.</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","changelog"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"a9b67e75-d5e3-4f27-92af-f7f26896662a","name":"Successful request","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/changelog","description":"\n<p>\nShows the change log of RDS providing version information about\nadditions, changes, deprecations, fixed bugs, removals, and security\nenhancements.</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"version\" : \"...\",\n  \"released\" : \"...\",\n  \"added\" : [ \"...\", \"...\" ],\n  \"changed\" : [ \"...\", \"...\" ],\n  \"deprecated\" : [ \"...\", \"...\" ],\n  \"removed\" : [ \"...\", \"...\" ],\n  \"fixed\" : [ \"...\", \"...\" ],\n  \"security\" : [ \"...\", \"...\" ]\n}"}],"_postman_id":"b7e0698a-f676-4774-9623-1cf995e430cd"},{"name":"Get server information.\n","id":"4de6c89a-a552-4289-a07d-ca1ac9befb05","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/info","description":"<p>\nProvides the server information for RDS.</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","info"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"d4f27892-658e-4531-a049-bbead38ee195","name":"Successful request","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/info","description":"\n<p>\nProvides the server information for RDS.</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"name\" : \"...\",\n  \"version\" : \"...\",\n  \"released\" : \"...\"\n}"}],"_postman_id":"4de6c89a-a552-4289-a07d-ca1ac9befb05"}],"id":"fa7a1f96-39ae-425d-a650-789b2fffccb2","_postman_id":"fa7a1f96-39ae-425d-a650-789b2fffccb2","description":""},{"name":"StatisticsController","item":[{"name":"Get catalog statistics.\n","id":"4a0ef5ec-5e18-4e99-a1f2-eca808dadfd6","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/statistics/catalog?format=<format enum>","description":"<p>\nGets the statistics for all the catalogs in RDS.\nThis will query the RDS statistics and return an array of\nRdsCatalogStatistics objects containing statistics and data sets\ndescribing the total number of queries and data about queries over time\nfor each catalog. <strong>This is meant as a catalog overview and will\nnot include the statistics for the catalogs data products.</strong> To\nget data product statistics api/statistics/catalog/{catalogId} should be\nused. This method can be used in conjunction with that to provide a high\nlevel view and allow clients to drill down into the catalog that\ninterests them.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","statistics","catalog"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: <code>MTNA Dataset</code> <code>MTNA Simple Dataset</code> <code>AM Charts</code> <code>Google Charts</code>. Default value is <code>MTNA Simple Dataset</code>.</p>\n","type":"text/plain"},"key":"format","value":"<format enum>"}],"variable":[]}},"response":[{"id":"f19a0263-9fa8-4307-80cb-1408e10e8d34","name":"Catalog statistics retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/statistics/catalog?format=<format enum>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","statistics","catalog"],"query":[{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts`. Default value is `MTNA Simple Dataset`."}]},"description":"\n<p>\nGets the statistics for all the catalogs in RDS.\nThis will query the RDS statistics and return an array of\nRdsCatalogStatistics objects containing statistics and data sets\ndescribing the total number of queries and data about queries over time\nfor each catalog. <strong>This is meant as a catalog overview and will\nnot include the statistics for the catalogs data products.</strong> To\nget data product statistics api/statistics/catalog/{catalogId} should be\nused. This method can be used in conjunction with that to provide a high\nlevel view and allow clients to drill down into the catalog that\ninterests them.\n</p>"},"status":"Catalog statistics retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"totalQueries\" : 12345,\n  \"popularColumns\" : { },\n  \"name\" : \"...\",\n  \"id\" : \"...\",\n  \"queriesOverTime\" : { },\n  \"description\" : \"...\",\n  \"productStatistics\" : [ {\n    \"popularColumns\" : {\n      \"property1\" : {\n        \"data\" : {\n          \"property1\" : { },\n          \"property2\" : { }\n        }\n      },\n      \"property2\" : {\n        \"data\" : {\n          \"property1\" : { },\n          \"property2\" : { }\n        }\n      }\n    },\n    \"queryOverview\" : { },\n    \"name\" : \"...\",\n    \"description\" : \"...\",\n    \"columnOverview\" : { },\n    \"totalQueries\" : 12345,\n    \"id\" : \"...\",\n    \"queriesOverTime\" : {\n      \"data\" : {\n        \"property1\" : { },\n        \"property2\" : { }\n      }\n    }\n  }, {\n    \"popularColumns\" : {\n      \"property1\" : {\n        \"data\" : {\n          \"property1\" : { },\n          \"property2\" : { }\n        }\n      },\n      \"property2\" : {\n        \"data\" : {\n          \"property1\" : { },\n          \"property2\" : { }\n        }\n      }\n    },\n    \"queryOverview\" : { },\n    \"name\" : \"...\",\n    \"description\" : \"...\",\n    \"columnOverview\" : { },\n    \"totalQueries\" : 12345,\n    \"id\" : \"...\",\n    \"queriesOverTime\" : {\n      \"data\" : {\n        \"property1\" : { },\n        \"property2\" : { }\n      }\n    }\n  } ]\n}"}],"_postman_id":"4a0ef5ec-5e18-4e99-a1f2-eca808dadfd6"},{"name":"Get data product statistics.\n","id":"3ef446a6-4bee-44fb-8ef0-f1217bd6c583","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/statistics/catalog/{catalogId}?format=<format enum>","description":"<p>\nGets an array of data product statistics for\nthe specified catalog. These data product statistics will be summary\nlevel and only the total queries, query and column overview properties\nwill be populated. To get the full details of a data product the\n/catalog/{catalogId/{dataProductId}} method should be used.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","statistics","catalog","{catalogId}"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: <code>MTNA Dataset</code> <code>MTNA Simple Dataset</code> <code>AM Charts</code> <code>Google Charts</code>. Default value is <code>MTNA Simple Dataset</code>.</p>\n","type":"text/plain"},"key":"format","value":"<format enum>"}],"variable":[{"id":"9e11e813-4f63-45ca-8b0c-0b45f20c8274","description":{"content":"<p>Required - the ID of the catalog whose statistics (and data product\nstatistics) are desired.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"}]}},"response":[{"id":"3a629054-b69b-47a0-bc55-006adaae9522","name":"Catalog statistics retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/statistics/catalog/{catalogId}?format=<format enum>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","statistics","catalog","{catalogId}"],"query":[{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts`. Default value is `MTNA Simple Dataset`."}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - the ID of the catalog whose statistics (and data product\nstatistics) are desired."}]},"description":"\n<p>\nGets an array of data product statistics for\nthe specified catalog. These data product statistics will be summary\nlevel and only the total queries, query and column overview properties\nwill be populated. To get the full details of a data product the\n/catalog/{catalogId/{dataProductId}} method should be used.\n</p>"},"status":"Catalog statistics retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"popularColumns\" : {\n    \"property1\" : {\n      \"data\" : {\n        \"property1\" : { },\n        \"property2\" : { }\n      }\n    },\n    \"property2\" : {\n      \"data\" : {\n        \"property1\" : { },\n        \"property2\" : { }\n      }\n    }\n  },\n  \"queryOverview\" : { },\n  \"name\" : \"...\",\n  \"description\" : \"...\",\n  \"columnOverview\" : { },\n  \"totalQueries\" : 12345,\n  \"id\" : \"...\",\n  \"queriesOverTime\" : {\n    \"data\" : {\n      \"property1\" : { },\n      \"property2\" : { }\n    }\n  }\n}"}],"_postman_id":"3ef446a6-4bee-44fb-8ef0-f1217bd6c583"},{"name":"Get data product statistics.\n","id":"b0cf2590-bef2-45e3-b014-74d7bb1e8c15","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/statistics/catalog/{catalogId}/{dataProductId}?format=<format enum>","description":"<p>\nGets a single set of data product statistics\nfor the specified data product. This will be a completely populated\nobject with in depth statistics about\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","statistics","catalog","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: <code>MTNA Dataset</code> <code>MTNA Simple Dataset</code> <code>AM Charts</code> <code>Google Charts</code>. Default value is <code>MTNA Simple Dataset</code>.</p>\n","type":"text/plain"},"key":"format","value":"<format enum>"}],"variable":[{"id":"e5325c20-a2fb-4db5-a217-862e30cef398","description":{"content":"<p>Required - the ID of the catalog whose statistics (and data product\nstatistics) are desired.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"c4fe6500-32ca-46dd-975d-b1303edb5260","description":{"content":"<p>Required</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"43544c17-1558-4444-abbb-f63ec4b692ed","name":"Catalog statistics retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/statistics/catalog/{catalogId}/{dataProductId}?format=<format enum>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","statistics","catalog","{catalogId}","{dataProductId}"],"query":[{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts`. Default value is `MTNA Simple Dataset`."}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - the ID of the catalog whose statistics (and data product\nstatistics) are desired."},{"key":"dataProductId","value":"<string>","description":"Required"}]},"description":"\n<p>\nGets a single set of data product statistics\nfor the specified data product. This will be a completely populated\nobject with in depth statistics about\n</p>"},"status":"Catalog statistics retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"popularColumns\" : {\n    \"property1\" : {\n      \"data\" : {\n        \"property1\" : { },\n        \"property2\" : { }\n      }\n    },\n    \"property2\" : {\n      \"data\" : {\n        \"property1\" : { },\n        \"property2\" : { }\n      }\n    }\n  },\n  \"queryOverview\" : { },\n  \"name\" : \"...\",\n  \"description\" : \"...\",\n  \"columnOverview\" : { },\n  \"totalQueries\" : 12345,\n  \"id\" : \"...\",\n  \"queriesOverTime\" : {\n    \"data\" : {\n      \"property1\" : { },\n      \"property2\" : { }\n    }\n  }\n}"}],"_postman_id":"b0cf2590-bef2-45e3-b014-74d7bb1e8c15"},{"name":"Get popular queries.\n","id":"b38c2b6c-c56d-4c40-905c-73afbbeddbd4","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/statistics/popular?count=<integer>","description":"<p>\nGets all of the queries that are considered popular\nregardless of data product, which are either manually set by a manager or\nthe most common queries made.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","statistics","popular"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Required - The number of popular queries to return. For example, the top\n10 most popular queries.</p>\n","type":"text/plain"},"key":"count","value":"<integer>"}],"variable":[]}},"response":[{"id":"f0462d4a-efc7-4712-96e5-133fc934ba3d","name":"Popular queries returned successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/statistics/popular?count=<integer>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","statistics","popular"],"query":[{"key":"count","value":"<integer>","description":"Required - The number of popular queries to return. For example, the top\n10 most popular queries."}]},"description":"\n<p>\nGets all of the queries that are considered popular\nregardless of data product, which are either manually set by a manager or\nthe most common queries made.\n</p>"},"status":"Popular queries returned successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"name\" : \"...\",\n  \"apiCall\" : \"...\",\n  \"description\" : \"...\"\n}"}],"_postman_id":"b38c2b6c-c56d-4c40-905c-73afbbeddbd4"},{"name":"Get popular queries.\n","id":"2e8cea02-1d1c-4142-9b01-1473ffe46fbc","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/statistics/popular/{catalogId}/{dataProductId}?count=<integer>","description":"<p>\nGets the queries that are considered popular for the\nspecified data product, which are either manually set by a manager or the\nmost common queries made.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","statistics","popular","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Required - The number of popular queries to return. For example, the top\n10 most popular queries.</p>\n","type":"text/plain"},"key":"count","value":"<integer>"}],"variable":[{"id":"832e68b4-02dc-46b6-9897-a9aa3db21d39","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"e9ba1505-0be6-48b4-89c5-e77711ea32ca","description":{"content":"<p>Required - The ID of the data product whose popular queries are desired.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"5c9327ef-eff1-4c98-87db-8013e3136a0d","name":"Popular queries returned successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/statistics/popular/{catalogId}/{dataProductId}?count=<integer>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","statistics","popular","{catalogId}","{dataProductId}"],"query":[{"key":"count","value":"<integer>","description":"Required - The number of popular queries to return. For example, the top\n10 most popular queries."}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product whose popular queries are desired."}]},"description":"\n<p>\nGets the queries that are considered popular for the\nspecified data product, which are either manually set by a manager or the\nmost common queries made.\n</p>"},"status":"Popular queries returned successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"name\" : \"...\",\n  \"apiCall\" : \"...\",\n  \"description\" : \"...\"\n}"}],"_postman_id":"2e8cea02-1d1c-4142-9b01-1473ffe46fbc"},{"name":"Set popular select query.\n","id":"a2eccaff-d208-4243-a280-e07bb9aa3e26","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/statistics/{catalogId}/{dataProductId}/popularity/select?popular=<boolean>","description":"<p>\nAn administrative end point that allows a\nspecific query to be manually set as being popular. This would be used\nwhen a data manager wants to provide users with a starting point that he\nthinks they might be interested in.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","statistics","{catalogId}","{dataProductId}","popularity","select"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Required - True / false if the query should be considered popular or not.</p>\n","type":"text/plain"},"key":"popular","value":"<boolean>"}],"variable":[{"id":"6d7faeda-bca2-4ab6-8ba7-870cdaa87be9","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"2d2a4d08-54f3-4c2c-a9bb-f30427358622","description":{"content":"<p>Required - The ID of the data product to that the query relates to.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[],"_postman_id":"a2eccaff-d208-4243-a280-e07bb9aa3e26"},{"name":"Set popular tabulate query.\n","id":"e44e9ad6-d549-4883-9751-12e7d76612a2","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/statistics/{catalogId}/{dataProductId}/popularity/tabulate?popular=<boolean>","description":"<p>\nAn administrative end point that allows a\nspecific query to be manually set as being popular. This would be used\nwhen a data manager wants to provide users with a starting point that he\nthinks they might be interested in.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","statistics","{catalogId}","{dataProductId}","popularity","tabulate"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Required - True / false if the query should be considered popular or not.</p>\n","type":"text/plain"},"key":"popular","value":"<boolean>"}],"variable":[{"id":"8ced0cc0-d89f-4bb0-96d4-14911b93811d","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"3cc7e17b-c32d-49de-b19f-d5f7d3deeb6b","description":{"content":"<p>Required - The ID of the data product to that the query relates to.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[],"_postman_id":"e44e9ad6-d549-4883-9751-12e7d76612a2"}],"id":"2ff9eae3-9141-4140-ba2b-5d851f0e8aba","_postman_id":"2ff9eae3-9141-4140-ba2b-5d851f0e8aba","description":""},{"name":"DataAgentController","item":[{"name":"Gets all registered Agents' summaries that are not a group.","id":"a0ba1193-1b21-4b8d-9759-accfaede945d","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/agent/agents","description":"<p>Not all\nagents will be available to RDS, only those that are applicable to\nQueryableDataSources. This method will return those agents that are\navailable in RDS in a summarized form. This includes any third party agents.\nThe summarized form includes the agent's display ID, its name, and its\ndescription.</p>\n","urlObject":{"protocol":"http","port":"8080","path":["rds","api","agent","agents"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"2aa87cba-b55a-45f7-8beb-1a59c37588d7","name":"Agents successfully retrieved","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/agent/agents","description":"Not all\nagents will be available to RDS, only those that are applicable to\nQueryableDataSources. This method will return those agents that are\navailable in RDS in a summarized form. This includes any third party agents.\nThe summarized form includes the agent's display ID, its name, and its\ndescription."},"status":"Agents successfully retrieved","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"id\" : \"...\",\n  \"name\" : \"...\",\n  \"description\" : \"...\"\n}"}],"_postman_id":"a0ba1193-1b21-4b8d-9759-accfaede945d"},{"name":"Gets the QueryConfiguration.","id":"eeaddab1-25c4-45b1-b213-22f3a5658371","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/agent/configuration/{id}","description":"<p>Each Agent has a configuration\nspecific to it. This method takes in the display ID for an agent (which can\nbe found by the getAvailableAgents() methods) and returns that agent's\nconfiguration. The configuration at this point is to serve as a template for\nfilling out to use in the run() method.</p>\n","urlObject":{"protocol":"http","port":"8080","path":["rds","api","agent","configuration","{id}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"452c8fc9-0d0b-4d54-8d42-e750284d4ed2","description":{"content":"<p>Required - The agent ID of the configuration we want</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"f988732c-0f26-4667-a2aa-a71f62e40c1f","name":"Agent for ID successfully retrieved","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/agent/configuration/{id}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","agent","configuration","{id}"],"variable":[{"key":"id","value":"<string>","description":"Required - The agent ID of the configuration we want"}]},"description":"Each Agent has a configuration\nspecific to it. This method takes in the display ID for an agent (which can\nbe found by the getAvailableAgents() methods) and returns that agent's\nconfiguration. The configuration at this point is to serve as a template for\nfilling out to use in the run() method."},"status":"Agent for ID successfully retrieved","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"displayName\" : \"...\",\n  \"displayId\" : \"...\",\n  \"description\" : \"...\",\n  \"name\" : \"...\",\n  \"instanceId\" : \"...\"\n}"}],"_postman_id":"eeaddab1-25c4-45b1-b213-22f3a5658371"},{"name":"Gets all registered GroupAgents' summaries.","id":"67e23ca5-3ee7-4b45-8f47-163519751e6f","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/agent/groups","description":"<p>Not all agent groups will\nbe available to RDS, only those that are applicable to\nQueryableDataSources. This method will return those agent groups that\nare available in RDS in a summarized form. This includes any third party\nagent groups. The summarized form includes the agent group's display ID, its\nname, and its description.</p>\n","urlObject":{"protocol":"http","port":"8080","path":["rds","api","agent","groups"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"1565a9e0-2c79-405b-822c-3cca62c83dbd","name":"Agent groups successfully retrieved","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/agent/groups","description":"Not all agent groups will\nbe available to RDS, only those that are applicable to\nQueryableDataSources. This method will return those agent groups that\nare available in RDS in a summarized form. This includes any third party\nagent groups. The summarized form includes the agent group's display ID, its\nname, and its description."},"status":"Agent groups successfully retrieved","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"id\" : \"...\",\n  \"name\" : \"...\",\n  \"description\" : \"...\"\n}"}],"_postman_id":"67e23ca5-3ee7-4b45-8f47-163519751e6f"},{"name":"Looks up the process of an Agent.","id":"21a068d6-7b52-4cca-b710-44a845782fc4","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/agent/process/{processId}","description":"<p>This will return the\nAgentProcessStatusDetail for the agent that are specified with the\nprocess ID. These completion details will contain details about the process\nitself such as completion status</p>\n","urlObject":{"protocol":"http","port":"8080","path":["rds","api","agent","process","{processId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"2432a582-c1c1-4083-8d3c-12d789253db6","description":{"content":"<p>Required - ID of the agents process we want information about</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"processId"}]}},"response":[{"id":"e66df7f6-4309-47fb-8467-eac27f41647c","name":"Agent details retrieved successfully","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/agent/process/{processId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","agent","process","{processId}"],"variable":[{"key":"processId","value":"<string>","description":"Required - ID of the agents process we want information about"}]},"description":"This will return the\nAgentProcessStatusDetail for the agent that are specified with the\nprocess ID. These completion details will contain details about the process\nitself such as completion status"},"status":"Agent details retrieved successfully","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"subProcessDetails\" : \"array[json_AgentProcessStatusDetail]\",\n  \"failure\" : \"Throwable\",\n  \"completionDetails\" : \"completionDetails\",\n  \"completed\" : \"integer\",\n  \"id\" : \"string\",\n  \"statusMessage\" : \"string\",\n  \"status\" : \"string\"\n}"}],"_postman_id":"21a068d6-7b52-4cca-b710-44a845782fc4"},{"name":"Looks up the report of an Agent process.","id":"9719baea-98e1-4561-9293-f2fe6ae1e0fd","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/agent/report/{processId}","description":"<p>This will return the\nAgentCompletionReport for the agent that are specified with the\nprocess ID. This completion report will include the FactImpls\nproduced by agent process as well as other information.</p>\n","urlObject":{"protocol":"http","port":"8080","path":["rds","api","agent","report","{processId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"116cfcdc-b808-4239-a8bc-4ee83ca329e0","description":{"content":"<p>Required - ID of the agents process we want information about</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"processId"}]}},"response":[{"id":"300f6590-de58-4bf3-a607-1cdd8fa2a6b4","name":"Agent details retrieved successfully","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/agent/report/{processId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","agent","report","{processId}"],"variable":[{"key":"processId","value":"<string>","description":"Required - ID of the agents process we want information about"}]},"description":"This will return the\nAgentCompletionReport for the agent that are specified with the\nprocess ID. This completion report will include the FactImpls\nproduced by agent process as well as other information."},"status":"Agent details retrieved successfully","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"facts\" : [ {\n    \"resourceUris\" : [ \"...\", \"...\" ],\n    \"displayId\" : \"...\",\n    \"properties\" : [ {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    }, {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    } ],\n    \"value\" : { },\n    \"confidence\" : 12345.0\n  }, {\n    \"resourceUris\" : [ \"...\", \"...\" ],\n    \"displayId\" : \"...\",\n    \"properties\" : [ {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    }, {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    } ],\n    \"value\" : { },\n    \"confidence\" : 12345.0\n  } ]\n}"}],"_postman_id":"9719baea-98e1-4561-9293-f2fe6ae1e0fd"},{"name":"getCompletionReports","id":"e28fde3d-06c5-4c50-91d4-84d1759793e4","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/agent/reports/{catalogId}","description":"<p>ets all AgentCompletionReports that were ran on Catalog\nspecified through the request path</p>\n","urlObject":{"protocol":"http","port":"8080","path":["rds","api","agent","reports","{catalogId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"ec1724f6-a372-49ef-9aff-5f8d8e44175c","description":{"content":"<p>Required - ID of the catalog</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"}]}},"response":[{"id":"92dcbd2d-c5c9-4b0d-9212-23fa43f776b4","name":"a list of agent completion reports","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/agent/reports/{catalogId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","agent","reports","{catalogId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - ID of the catalog"}]},"description":"ets all AgentCompletionReports that were ran on Catalog\nspecified through the request path"},"status":"a list of agent completion reports","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"facts\" : [ {\n    \"resourceUris\" : [ \"...\", \"...\" ],\n    \"displayId\" : \"...\",\n    \"properties\" : [ {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    }, {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    } ],\n    \"value\" : { },\n    \"confidence\" : 12345.0\n  }, {\n    \"resourceUris\" : [ \"...\", \"...\" ],\n    \"displayId\" : \"...\",\n    \"properties\" : [ {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    }, {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    } ],\n    \"value\" : { },\n    \"confidence\" : 12345.0\n  } ]\n}"}],"_postman_id":"e28fde3d-06c5-4c50-91d4-84d1759793e4"},{"name":"getCompletionReports","id":"8a2ec6fb-8739-44f8-bae7-fcd50e71d6a5","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/agent/reports/{catalogId}/{dataProductId}","description":"<p>ets all AgentCompletionReports that were ran on DataProduct\nspecified through the request path</p>\n","urlObject":{"protocol":"http","port":"8080","path":["rds","api","agent","reports","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"df60172e-9549-4c70-8c99-80000b84e568","description":{"content":"<p>Required - ID of the Catalog that contains the dataProduct we are\ninterested in</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"d1cc5c89-2d6b-4174-b6ba-d7c6e7bf261d","description":{"content":"<p>Required - ID of the dataProduct</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"b1abe53b-0eb8-431e-9300-615fa8183aa3","name":"a list of agent completion reports","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/agent/reports/{catalogId}/{dataProductId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","agent","reports","{catalogId}","{dataProductId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - ID of the Catalog that contains the dataProduct we are\ninterested in"},{"key":"dataProductId","value":"<string>","description":"Required - ID of the dataProduct"}]},"description":"ets all AgentCompletionReports that were ran on DataProduct\nspecified through the request path"},"status":"a list of agent completion reports","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"facts\" : [ {\n    \"resourceUris\" : [ \"...\", \"...\" ],\n    \"displayId\" : \"...\",\n    \"properties\" : [ {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    }, {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    } ],\n    \"value\" : { },\n    \"confidence\" : 12345.0\n  }, {\n    \"resourceUris\" : [ \"...\", \"...\" ],\n    \"displayId\" : \"...\",\n    \"properties\" : [ {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    }, {\n      \"transient\" : true,\n      \"overridable\" : true,\n      \"facetReferences\" : [ \"...\", \"...\" ],\n      \"reference\" : true,\n      \"repeatable\" : true,\n      \"facetedBaseProperty\" : { },\n      \"inheritable\" : true,\n      \"representationReference\" : \"...\",\n      \"facetedBasePropertyReference\" : \"...\",\n      \"representation\" : { },\n      \"faceted\" : true,\n      \"facets\" : [ { }, { } ],\n      \"facetTypes\" : [ { }, { } ]\n    } ],\n    \"value\" : { },\n    \"confidence\" : 12345.0\n  } ]\n}"}],"_postman_id":"8a2ec6fb-8739-44f8-bae7-fcd50e71d6a5"},{"name":"Configures and runs an Agent.","id":"557c7049-7505-4057-8a18-b8155b699807","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"displayName\" : \"...\",\n  \"displayId\" : \"...\",\n  \"description\" : \"...\",\n  \"name\" : \"...\",\n  \"instanceId\" : \"...\"\n}"},"url":"http://192.168.1.3:8080/rds/api/agent/{catalogId}/{dataProductId}/run","description":"<p>This method will create the appropriate\nagent or GroupAgent for the QueryConfiguration, configure it\nusing said configuration, and then run it as a process on the\nQueryableDataSource specified through the API. The process ID\nreturned can be used to check the progress of the agent and get the report\nfor its results.</p>\n","urlObject":{"protocol":"http","port":"8080","path":["rds","api","agent","{catalogId}","{dataProductId}","run"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"95aecadb-1f6c-4c2c-9c3d-450f7b94d8a5","description":{"content":"<p>Required - ID of the Catalog containing the dataProduct</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"f14d76c6-16b8-4053-ab46-54a885b4e011","description":{"content":"<p>Required - ID of the dataProduct that contains the datasource the agents will\nprocess</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"e2b23093-fd99-4025-a433-77b3b6af84a4","name":"Configuration retrieved successfully","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"displayName\" : \"...\",\n  \"displayId\" : \"...\",\n  \"description\" : \"...\",\n  \"name\" : \"...\",\n  \"instanceId\" : \"...\"\n}"},"url":{"raw":"http://192.168.1.3:8080/rds/api/agent/{catalogId}/{dataProductId}/run","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","agent","{catalogId}","{dataProductId}","run"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - ID of the Catalog containing the dataProduct"},{"key":"dataProductId","value":"<string>","description":"Required - ID of the dataProduct that contains the datasource the agents will\nprocess"}]},"description":"This method will create the appropriate\nagent or GroupAgent for the QueryConfiguration, configure it\nusing said configuration, and then run it as a process on the\nQueryableDataSource specified through the API. The process ID\nreturned can be used to check the progress of the agent and get the report\nfor its results."},"status":"Configuration retrieved successfully","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Configuration retrieved successfully\""}],"_postman_id":"557c7049-7505-4057-8a18-b8155b699807"}],"id":"425a0501-0c28-446b-88db-e49ea49f7bc1","_postman_id":"425a0501-0c28-446b-88db-e49ea49f7bc1","description":""},{"name":"FileController","item":[{"name":"Delete File","id":"8609e131-8fdf-4abd-836f-47d6594c2daf","request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/_files/delete?contentType=<string>&fileName=<string>&key=<string>","urlObject":{"protocol":"http","port":"8080","path":["rds","_files","delete"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"contentType","value":"<string>"},{"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"fileName","value":"<string>"},{"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"key","value":"<string>"}],"variable":[]}},"response":[{"id":"4a1ee2dc-9d84-45e8-975b-798b8e195811","name":"No content","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/_files/delete?contentType=<string>&fileName=<string>&key=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","_files","delete"],"query":[{"key":"contentType","value":"<string>","description":"Optional"},{"key":"fileName","value":"<string>","description":"Optional"},{"key":"key","value":"<string>","description":"Optional"}]}},"status":"No content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"string\""}],"_postman_id":"8609e131-8fdf-4abd-836f-47d6594c2daf"},{"name":"Download File","id":"6ab63fce-fce2-4e16-94ce-98882d7cddef","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"fileName\" : \"...\",\n  \"key\" : \"...\",\n  \"fileSize\" : 12345,\n  \"managerSize\" : 12345,\n  \"contentType\" : \"...\"\n}"},"url":"http://192.168.1.3:8080/rds/_files/download","urlObject":{"protocol":"http","port":"8080","path":["rds","_files","download"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"9335c008-0061-4373-859a-b60d21afefc9","name":"Resource created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"fileName\" : \"...\",\n  \"key\" : \"...\",\n  \"fileSize\" : 12345,\n  \"managerSize\" : 12345,\n  \"contentType\" : \"...\"\n}"},"url":"http://192.168.1.3:8080/rds/_files/download"},"status":"Resource created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"string\""}],"_postman_id":"6ab63fce-fce2-4e16-94ce-98882d7cddef"},{"name":"Download File","id":"c889ebfb-3bda-416f-9b43-8c3ebedde62f","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/_files/download?contentType=<string>&fileName=<string>&key=<string>","urlObject":{"protocol":"http","port":"8080","path":["rds","_files","download"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"contentType","value":"<string>"},{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"fileName","value":"<string>"},{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"key","value":"<string>"}],"variable":[]}},"response":[{"id":"f0fd7a54-f83d-4768-8137-1c6054366610","name":"Successful request","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/_files/download?contentType=<string>&fileName=<string>&key=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","_files","download"],"query":[{"key":"contentType","value":"<string>","description":"Required"},{"key":"fileName","value":"<string>","description":"Required"},{"key":"key","value":"<string>","description":"Required"}]}},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"string\""}],"_postman_id":"c889ebfb-3bda-416f-9b43-8c3ebedde62f"},{"name":"Upload File","id":"60399883-46d6-440a-a7c6-2e13cb703402","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/_files/upload?file=<string>","urlObject":{"protocol":"http","port":"8080","path":["rds","_files","upload"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"file","value":"<string>"}],"variable":[]}},"response":[{"id":"65dcbb9f-4926-4f48-bfdf-028db1d0778c","name":"Resource created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/_files/upload?file=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","_files","upload"],"query":[{"key":"file","value":"<string>","description":"Required"}]}},"status":"Resource created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"fileName\" : \"...\",\n  \"key\" : \"...\",\n  \"fileSize\" : 12345,\n  \"managerSize\" : 12345,\n  \"contentType\" : \"...\"\n}"}],"_postman_id":"60399883-46d6-440a-a7c6-2e13cb703402"}],"id":"746758ac-7f70-44ed-a4ab-8cc15a6cb092","_postman_id":"746758ac-7f70-44ed-a4ab-8cc15a6cb092","description":""},{"name":"CacheController","item":[{"name":"Expire data product cache.\n","id":"3010a45e-7835-4a9b-9369-faaedac7ede5","request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/cache/{catalogId}/{dataProductId}","description":"<p>\nAdministrative end point to manually force an\nexpiration of all the cached files of specific data product.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","cache","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"c88a865c-f72f-4c7c-81be-ed796aa670f9","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"3c50a314-cc88-422d-9d98-28982e038f14","description":{"content":"<p>Required - The ID of the data product whose cache should be expired.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[],"_postman_id":"3010a45e-7835-4a9b-9369-faaedac7ede5"},{"name":"Disable data product cache.\n","id":"faf55778-750d-4f66-bd12-dc9134d69c83","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/cache/{catalogId}/{dataProductId}/disable","description":"<p>\nAdministrative end point to expire the cache\nof a particular data product and flag it as not needing to be cached.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","cache","{catalogId}","{dataProductId}","disable"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"637baceb-52e7-4526-ae02-27bbc2186a4d","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"ee7fea6e-f31a-4d68-9f54-2a6314701d7b","description":{"content":"<p>Required - The ID of the data product whose cache should be disabled.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[],"_postman_id":"faf55778-750d-4f66-bd12-dc9134d69c83"},{"name":"Enable data product cache.\n","id":"2c3e886f-6eaf-46f2-9fd8-0faf9c4076e9","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/cache/{catalogId}/{dataProductId}/enable","description":"<p>\nAdministrative end point to expire the cache\nof a particular data product and flag it as needing to be cached. By\ndefault data products will be cached, so this is only necessary to\nre-enable data products that have previously had their caching disabled.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","cache","{catalogId}","{dataProductId}","enable"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"877567a6-5d38-4ee6-a942-293e238e03e2","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"fbe37a52-d620-4946-99f3-4ed89e4c171e","description":{"content":"<p>Required - The ID of the data product whose cache should be enabled.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[],"_postman_id":"2c3e886f-6eaf-46f2-9fd8-0faf9c4076e9"}],"id":"82d046a8-34c4-4971-a649-0c56e7e69f32","_postman_id":"82d046a8-34c4-4971-a649-0c56e7e69f32","description":""},{"name":"MetadataController","item":[{"name":"Get the root catalog of the system.\n","id":"cb130f65-9911-4a0d-ac7c-0768f423b574","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog","description":"<p>\nThis will hold a list of all the catalogs and data products that are\navailable on this server. This would ideally be used to power an entry\npoint into an application. The catalog provides a starting point for\nusers to view what is available to them and drill down into a catalog or\ndata product of their interest. The catalogs and products may have\ndescriptive metadata on them that is useful to display.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"d883e69c-b382-4cdf-bdb2-a94fa17464c4","name":"Catalog retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog","description":"\n<p>\nThis will hold a list of all the catalogs and data products that are\navailable on this server. This would ideally be used to power an entry\npoint into an application. The catalog provides a starting point for\nusers to view what is available to them and drill down into a catalog or\ndata product of their interest. The catalogs and products may have\ndescriptive metadata on them that is useful to display.\n</p>"},"status":"Catalog retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"isPrivate\" : true,\n  \"uri\" : \"...\",\n  \"catalogCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"exclusion\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"urlCount\" : 12345,\n  \"description\" : \"...\",\n  \"id\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"keywordCount\" : 12345,\n  \"label\" : \"...\",\n  \"catalog\" : {\n    \"urlCount\" : 12345,\n    \"catalogCount\" : 12345,\n    \"dataProductCount\" : 12345,\n    \"catalogs\" : [ { }, { } ],\n    \"urls\" : [ \"...\", \"...\" ],\n    \"dataProducts\" : [ {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    }, {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    } ]\n  },\n  \"urls\" : [ \"...\", \"...\" ],\n  \"catalogs\" : [ {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  }, {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  } ],\n  \"dataProducts\" : [ {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  }, {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  } ],\n  \"name\" : \"...\",\n  \"dataProductCount\" : 12345\n}"}],"_postman_id":"cb130f65-9911-4a0d-ac7c-0768f423b574"},{"name":"Import metadata.\n","id":"559b9d29-d4f3-46f6-8c58-7365d24aee45","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/import/{catalogId}/{dataProductId}","description":"<p>\nImports metadata from a DDI codebook file into the data\nproduct, an administrative endpoint to perform a bulk update of a data\nproducts metadata.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","import","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"673a6019-07b3-41e0-b9ba-2f6efa4b8ced","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"823e3792-8c56-4fdc-be27-2dc90ed37845","description":{"content":"<p>Required - The ID of the data product to update with the file contents.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"eed35e6f-cead-48e2-a015-9d1f64c6ced7","name":"Process started.","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/import/{catalogId}/{dataProductId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","import","{catalogId}","{dataProductId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to update with the file contents."}]},"description":"\n<p>\nImports metadata from a DDI codebook file into the data\nproduct, an administrative endpoint to perform a bulk update of a data\nproducts metadata.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"559b9d29-d4f3-46f6-8c58-7365d24aee45"},{"name":"Import metadata.\n","id":"2f185c5e-c948-42a1-bcba-549ac08a3381","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"recordLayout\" : {\n    \"hash\" : \"...\",\n    \"primaryKey\" : {\n      \"purpose\" : \"...\",\n      \"variables\" : [ { }, { } ],\n      \"variableCount\" : 12345,\n      \"cardinality\" : \"MANY\"\n    },\n    \"layoutVariableCount\" : 12345,\n    \"templateId\" : \"...\",\n    \"id\" : \"...\",\n    \"variables\" : [ {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    }, {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    } ]\n  },\n  \"classifications\" : [ {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  }, {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"NUMERIC_ALPHA\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  } ]\n}"},"url":"http://192.168.1.3:8080/rds/api/catalog/import/{catalogId}/{dataProductId}/metadata","description":"<p>\nImports DataSetMetadata into the specified\nDataProduct.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","import","{catalogId}","{dataProductId}","metadata"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"1dd29746-7335-495d-a9ed-369b40e0eb8d","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"ab3e71e5-1c10-4848-bf5e-ebd13c019231","description":{"content":"<p>Required - The ID of the data product to update with the file contents.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"773d8d33-7e06-4709-bc77-3bc4f43b8eea","name":"Process started.","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"recordLayout\" : {\n    \"hash\" : \"...\",\n    \"primaryKey\" : {\n      \"purpose\" : \"...\",\n      \"variables\" : [ { }, { } ],\n      \"variableCount\" : 12345,\n      \"cardinality\" : \"MANY\"\n    },\n    \"layoutVariableCount\" : 12345,\n    \"templateId\" : \"...\",\n    \"id\" : \"...\",\n    \"variables\" : [ {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    }, {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    } ]\n  },\n  \"classifications\" : [ {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  }, {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"NUMERIC_ALPHA\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  } ]\n}"},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/import/{catalogId}/{dataProductId}/metadata","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","import","{catalogId}","{dataProductId}","metadata"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to update with the file contents."}]},"description":"\n<p>\nImports DataSetMetadata into the specified\nDataProduct.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"2f185c5e-c948-42a1-bcba-549ac08a3381"},{"name":"Check process status.\n","id":"65aa5807-708d-4d10-95fb-c0775c648402","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/processdetails/{processId}","description":"<p>\nThis is an administrative end point to view the\nstatus of a particular process that has been, or is currently running.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","processdetails","{processId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"fd769569-6cdf-4d11-90a8-3128c894a595","description":{"content":"<p>Required - The ID of the process whose status is desired.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"processId"}]}},"response":[{"id":"38318110-798a-4ce8-a42a-d1fd3954160d","name":"Variable retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/processdetails/{processId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","processdetails","{processId}"],"variable":[{"key":"processId","value":"<string>","description":"Required - The ID of the process whose status is desired."}]},"description":"\n<p>\nThis is an administrative end point to view the\nstatus of a particular process that has been, or is currently running.\n</p>"},"status":"Variable retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"completed\" : 12345,\n  \"statusMessage\" : \"...\",\n  \"completionDetails\" : {\n    \"started\" : 12345,\n    \"duration\" : 12345,\n    \"ended\" : 12345\n  },\n  \"failure\" : {\n    \"message\" : \"...\",\n    \"suppressed\" : [ { }, { } ],\n    \"localizedMessage\" : \"...\",\n    \"cause\" : { },\n    \"stackTrace\" : [ {\n      \"className\" : \"...\",\n      \"lineNumber\" : 12345,\n      \"nativeMethod\" : true,\n      \"fileName\" : \"...\",\n      \"methodName\" : \"...\"\n    }, {\n      \"className\" : \"...\",\n      \"lineNumber\" : 12345,\n      \"nativeMethod\" : true,\n      \"fileName\" : \"...\",\n      \"methodName\" : \"...\"\n    } ]\n  },\n  \"status\" : \"PROCESSING\",\n  \"id\" : \"...\"\n}"}],"_postman_id":"65aa5807-708d-4d10-95fb-c0775c648402"},{"name":"Get configuration parameters. ","id":"a8bca085-c086-4215-9dc5-94eda87dd114","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","description":"<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","product","type","{key}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"9d709c5d-7102-4c83-aba3-834c46e17940","description":{"content":"<p>Required - The key of the type of data product to configure.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"key"}]}},"response":[{"id":"0502bb11-a506-4607-bdb2-2a44dc2a8257","name":"STATA","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"STATA\",\n  \"value\" : {\n    \"$type\" : \"STATA\",\n    \"fileInformation\" : null\n  }\n}"},{"id":"26d10c60-79fc-45a9-84fc-4d5b0d0251d3","name":"XPT","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"XPT\",\n  \"value\" : {\n    \"$type\" : \"XPT\",\n    \"availableDataSets\" : null,\n    \"fileInformation\" : null,\n    \"selectedDataSet\" : null\n  }\n}"},{"id":"409acbf2-2eb9-4fdd-8fe9-37ddf204ce20","name":"Open Excel","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Open Excel\",\n  \"value\" : {\n    \"$type\" : \"OPEN\",\n    \"availableDataSets\" : null,\n    \"emptyRowCutoff\" : null,\n    \"fileInformation\" : null,\n    \"header\" : false,\n    \"selectedDataSet\" : null\n  }\n}"},{"id":"5c45e02d-84fd-476e-bb3a-06fcd832fa23","name":"SQL","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"SQL\",\n  \"value\" : {\n    \"$type\" : \"SQL\",\n    \"connectionString\" : null,\n    \"password\" : null,\n    \"tableName\" : null,\n    \"user\" : null\n  }\n}"},{"id":"5c463de9-72c7-49d3-8b18-1131aec21a93","name":"Legacy","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Legacy\",\n  \"value\" : {\n    \"$type\" : \"LEGACY\",\n    \"availableDataSets\" : null,\n    \"emptyRowCutoff\" : null,\n    \"fileInformation\" : null,\n    \"header\" : false,\n    \"selectedDataSet\" : null\n  }\n}"},{"id":"612213d6-5410-40bb-942f-e7ad569ddad6","name":"SPSS","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"SPSS\",\n  \"value\" : {\n    \"$type\" : \"SPSS\",\n    \"fileInformation\" : null\n  }\n}"},{"id":"870a96e2-59d5-4503-8e7b-36266a226f86","name":"Socrata","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Socrata\",\n  \"value\" : {\n    \"$type\" : \"SOCRATA\",\n    \"clientDomainUrl\" : null,\n    \"dataSetId\" : null\n  }\n}"},{"id":"cdd0b53d-6b21-4cfa-8625-ab5f830b9dd1","name":"CodeBook","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"CodeBook\",\n  \"value\" : {\n    \"$type\" : \"CODEBOOK\",\n    \"availableDataSets\" : null,\n    \"selectedDataSet\" : null\n  }\n}"},{"id":"cfeaec91-bd0a-4212-a719-9bb2991f5244","name":"SAS","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"SAS\",\n  \"value\" : {\n    \"$type\" : \"SAS\",\n    \"fileInformation\" : null\n  }\n}"},{"id":"fdb46802-6420-4fa3-84d6-03f269b4a5b0","name":"Big Query","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/product/type/{key}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","product","type","{key}"],"variable":[{"key":"key","value":"<string>","description":"Required - The key of the type of data product to configure."}]},"description":"\n<p>\nThis returns the parameters that need to be filled out for the specified\ntype of data product.\n</p>"},"status":"Configuration parameters retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Big Query\",\n  \"value\" : {\n    \"$type\" : \"BIGQUERY\",\n    \"authProviderX509CertUrl\" : null,\n    \"authUri\" : null,\n    \"clientEmail\" : null,\n    \"clientId\" : null,\n    \"clientX509CertUrl\" : null,\n    \"privateKey\" : null,\n    \"privateKeyId\" : null,\n    \"projectId\" : null,\n    \"tableId\" : null,\n    \"tokenUri\" : null,\n    \"type\" : null\n  }\n}"}],"_postman_id":"a8bca085-c086-4215-9dc5-94eda87dd114"},{"name":"Get supported data product types.","id":"b3a842f2-6b96-42a0-85b7-efbd5784bbca","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/product/types","description":"<p>\nAn administrative endpoint to display all the suppport types of files or\ndatabases that RDS can use to create a data product. This will return a\nlist of all the supported types. If any of the file types are used, they\nwill be stored in a database (specified by the client or embedded in the\napplication) in order to support queries. Any metadata included in the\nfile will be stored as well.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","product","types"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"6c0f6ee6-5aa5-49cb-835c-6cf00908ce9a","name":"Successful request","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/product/types","description":"\n<p>\nAn administrative endpoint to display all the suppport types of files or\ndatabases that RDS can use to create a data product. This will return a\nlist of all the supported types. If any of the file types are used, they\nwill be stored in a database (specified by the client or embedded in the\napplication) in order to support queries. Any metadata included in the\nfile will be stored as well.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"display\" : \"...\",\n  \"key\" : \"XPT\"\n}"}],"_postman_id":"b3a842f2-6b96-42a0-85b7-efbd5784bbca"},{"name":"Profile variables.\n","id":"1aa7558d-bfae-4d1d-9cc9-4a3a680100a5","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/profile/{catalogId}?forceUpdate=<boolean>","description":"<p>\nThis is a temporary end point and will be deprecated\nin the future once the metadata agents are available. It is designed to\nprofile all the variables in the data products of the specified catalog.\nWhen the profiles are completed their summary statistics and frequencies\nwill be added to the variable metadata and persisted.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","profile","{catalogId}"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"forceUpdate","value":"<boolean>"}],"variable":[{"id":"637fc7bc-6b6b-4a07-86e2-e4cdc5fecbd4","description":{"content":"<p>Required - the ID of the catalog whose variables should be profiled.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"}]}},"response":[{"id":"709580c5-d315-4479-b2a7-07976ee9aa37","name":"Profiling started successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/profile/{catalogId}?forceUpdate=<boolean>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","profile","{catalogId}"],"query":[{"key":"forceUpdate","value":"<boolean>","description":"Required"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - the ID of the catalog whose variables should be profiled."}]},"description":"\n<p>\nThis is a temporary end point and will be deprecated\nin the future once the metadata agents are available. It is designed to\nprofile all the variables in the data products of the specified catalog.\nWhen the profiles are completed their summary statistics and frequencies\nwill be added to the variable metadata and persisted.\n</p>"},"status":"Profiling started successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Profiling started successfully.\""}],"_postman_id":"1aa7558d-bfae-4d1d-9cc9-4a3a680100a5"},{"name":"Profile variables.\n","id":"1a61767b-cf17-48ba-bb1e-61808c912754","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/profile/{catalogId}/{dataProductId}?forceUpdate=<boolean>","description":"<p>\nThis is a temporary end point and will be deprecated\nin the future once the metadata agents are available. It is designed to\nprofile all the variables in the data products of the specified catalog.\nWhen the profiles are completed their summary statistics and frequencies\nwill be added to the variable metadata and persisted.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","profile","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"forceUpdate","value":"<boolean>"}],"variable":[{"id":"b60c4721-2ea0-4fca-a2a2-9c7229a24f6b","description":{"content":"<p>Required - the ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"bd580cba-ede4-478c-9ff8-0c16f34906d9","description":{"content":"<p>Required - the ID of the data product whose variables should be profiled.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"bb3f3caa-54fb-42c7-a2d5-a28889d38b5a","name":"Profiling started successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/profile/{catalogId}/{dataProductId}?forceUpdate=<boolean>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","profile","{catalogId}","{dataProductId}"],"query":[{"key":"forceUpdate","value":"<boolean>","description":"Required"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - the ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - the ID of the data product whose variables should be profiled."}]},"description":"\n<p>\nThis is a temporary end point and will be deprecated\nin the future once the metadata agents are available. It is designed to\nprofile all the variables in the data products of the specified catalog.\nWhen the profiles are completed their summary statistics and frequencies\nwill be added to the variable metadata and persisted.\n</p>"},"status":"Profiling started successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Profiling started successfully.\""}],"_postman_id":"1a61767b-cf17-48ba-bb1e-61808c912754"},{"name":"Re-index metadata.\n","id":"213ebe22-8c8d-4590-87f8-a6b638286ca1","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/reindex?catalogId=<string>","description":"<p>\nAdministrative end point that re-indexes the specified\ncatalog (or the root catalog if none is specified).\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","reindex"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - the ID of the catalog to reindex, if NULL the root catalog\nwill be reindexed.</p>\n","type":"text/plain"},"key":"catalogId","value":"<string>"}],"variable":[]}},"response":[{"id":"32a2ef7e-b179-42a1-af75-0fd66cea65c6","name":"The process ID","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/reindex?catalogId=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","reindex"],"query":[{"key":"catalogId","value":"<string>","description":"Optional - the ID of the catalog to reindex, if NULL the root catalog\nwill be reindexed."}]},"description":"\n<p>\nAdministrative end point that re-indexes the specified\ncatalog (or the root catalog if none is specified).\n</p>"},"status":"The process ID","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"The process ID\""}],"_postman_id":"213ebe22-8c8d-4590-87f8-a6b638286ca1"},{"name":"Delete catalog.\n","id":"b27a19e9-e81f-482a-b8d4-6fd232e55ff7","request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}","description":"<p>\nDeletes the specified catalog and any data products it\ncontains.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"8b2492ef-4081-45f5-9f5c-e54f11fc76d7","description":{"content":"<p>Required - The ID of the catalog to delete.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"}]}},"response":[{"id":"03cb746d-de3a-4de1-9f1c-73941dcae4b1","name":"Process started.","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog to delete."}]},"description":"\n<p>\nDeletes the specified catalog and any data products it\ncontains.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"b27a19e9-e81f-482a-b8d4-6fd232e55ff7"},{"name":"Update existing catalog.\n","id":"41813404-1488-4e92-a1a1-5df8232e809d","request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"isPrivate\" : true,\n  \"uri\" : \"...\",\n  \"catalogCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"exclusion\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"urlCount\" : 12345,\n  \"description\" : \"...\",\n  \"id\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"keywordCount\" : 12345,\n  \"label\" : \"...\",\n  \"catalog\" : {\n    \"urlCount\" : 12345,\n    \"catalogCount\" : 12345,\n    \"dataProductCount\" : 12345,\n    \"catalogs\" : [ { }, { } ],\n    \"urls\" : [ \"...\", \"...\" ],\n    \"dataProducts\" : [ {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    }, {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    } ]\n  },\n  \"urls\" : [ \"...\", \"...\" ],\n  \"catalogs\" : [ {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  }, {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  } ],\n  \"dataProducts\" : [ {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  }, {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  } ],\n  \"name\" : \"...\",\n  \"dataProductCount\" : 12345\n}"},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}","description":"<p>\nThis is an administrative end point meant to\nupdate the a specified catalog with values from the provided catalog\nobject.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"0c5f7249-598b-4371-b79d-c92a52f5b219","description":{"content":"<p>Required - The ID of the catalog to update.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"}]}},"response":[{"id":"e8dde6b0-bdb0-49b9-bc7a-05789f3e0878","name":"Process started.","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"isPrivate\" : true,\n  \"uri\" : \"...\",\n  \"catalogCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"exclusion\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"urlCount\" : 12345,\n  \"description\" : \"...\",\n  \"id\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"keywordCount\" : 12345,\n  \"label\" : \"...\",\n  \"catalog\" : {\n    \"urlCount\" : 12345,\n    \"catalogCount\" : 12345,\n    \"dataProductCount\" : 12345,\n    \"catalogs\" : [ { }, { } ],\n    \"urls\" : [ \"...\", \"...\" ],\n    \"dataProducts\" : [ {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    }, {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    } ]\n  },\n  \"urls\" : [ \"...\", \"...\" ],\n  \"catalogs\" : [ {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  }, {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  } ],\n  \"dataProducts\" : [ {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  }, {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  } ],\n  \"name\" : \"...\",\n  \"dataProductCount\" : 12345\n}"},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog to update."}]},"description":"\n<p>\nThis is an administrative end point meant to\nupdate the a specified catalog with values from the provided catalog\nobject.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"41813404-1488-4e92-a1a1-5df8232e809d"},{"name":"Get catalog.\n","id":"1a6d5d90-f769-4c5a-8ca9-fd83a3e43e88","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}","description":"<p>\nReturns the specified catalog. This allows a more specific view of a\ncatalog and its data products, it is a subset of the root catalog and\nholds no additional information to what can be found in the broader get\ncatalog endpoint.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"88e7056a-8f49-4093-99ec-dc8bd5e07a9c","description":{"content":"<p>Required - The ID of the catalog to retrieve.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"}]}},"response":[{"id":"599bbd5a-5c92-42be-a055-c06df6ed2ee5","name":"Catalog retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog to retrieve."}]},"description":"\n<p>\nReturns the specified catalog. This allows a more specific view of a\ncatalog and its data products, it is a subset of the root catalog and\nholds no additional information to what can be found in the broader get\ncatalog endpoint.\n</p>"},"status":"Catalog retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"isPrivate\" : true,\n  \"uri\" : \"...\",\n  \"catalogCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"exclusion\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"urlCount\" : 12345,\n  \"description\" : \"...\",\n  \"id\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"keywordCount\" : 12345,\n  \"label\" : \"...\",\n  \"catalog\" : {\n    \"urlCount\" : 12345,\n    \"catalogCount\" : 12345,\n    \"dataProductCount\" : 12345,\n    \"catalogs\" : [ { }, { } ],\n    \"urls\" : [ \"...\", \"...\" ],\n    \"dataProducts\" : [ {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    }, {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    } ]\n  },\n  \"urls\" : [ \"...\", \"...\" ],\n  \"catalogs\" : [ {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  }, {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  } ],\n  \"dataProducts\" : [ {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  }, {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  } ],\n  \"name\" : \"...\",\n  \"dataProductCount\" : 12345\n}"}],"_postman_id":"1a6d5d90-f769-4c5a-8ca9-fd83a3e43e88"},{"name":"Create catalog.\n","id":"7e529c4e-689c-49ca-a2f4-ad769a7139c1","request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"isPrivate\" : true,\n  \"uri\" : \"...\",\n  \"catalogCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"exclusion\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"urlCount\" : 12345,\n  \"description\" : \"...\",\n  \"id\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"keywordCount\" : 12345,\n  \"label\" : \"...\",\n  \"catalog\" : {\n    \"urlCount\" : 12345,\n    \"catalogCount\" : 12345,\n    \"dataProductCount\" : 12345,\n    \"catalogs\" : [ { }, { } ],\n    \"urls\" : [ \"...\", \"...\" ],\n    \"dataProducts\" : [ {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    }, {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    } ]\n  },\n  \"urls\" : [ \"...\", \"...\" ],\n  \"catalogs\" : [ {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  }, {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  } ],\n  \"dataProducts\" : [ {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  }, {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  } ],\n  \"name\" : \"...\",\n  \"dataProductCount\" : 12345\n}"},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}","description":"<p>\nCreates a new catalog with the specified ID.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"67391abd-c2f6-4346-b8da-1e378c483593","description":{"content":"<p>Required - The ID of the catalog to create.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"}]}},"response":[{"id":"c195f0f9-1ec6-4502-bc4a-855b299a155d","name":"Process started.","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"isPrivate\" : true,\n  \"uri\" : \"...\",\n  \"catalogCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"exclusion\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"urlCount\" : 12345,\n  \"description\" : \"...\",\n  \"id\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"keywordCount\" : 12345,\n  \"label\" : \"...\",\n  \"catalog\" : {\n    \"urlCount\" : 12345,\n    \"catalogCount\" : 12345,\n    \"dataProductCount\" : 12345,\n    \"catalogs\" : [ { }, { } ],\n    \"urls\" : [ \"...\", \"...\" ],\n    \"dataProducts\" : [ {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    }, {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    } ]\n  },\n  \"urls\" : [ \"...\", \"...\" ],\n  \"catalogs\" : [ {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  }, {\n    \"isPrivate\" : true,\n    \"uri\" : \"...\",\n    \"catalogCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"exclusion\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"urlCount\" : 12345,\n    \"description\" : \"...\",\n    \"id\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"keywordCount\" : 12345,\n    \"label\" : \"...\",\n    \"catalog\" : {\n      \"urlCount\" : 12345,\n      \"catalogCount\" : 12345,\n      \"dataProductCount\" : 12345,\n      \"catalogs\" : [ { }, { } ],\n      \"urls\" : [ \"...\", \"...\" ],\n      \"dataProducts\" : [ { }, { } ]\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"catalogs\" : [ { }, { } ],\n    \"dataProducts\" : [ {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    }, {\n      \"exclusion\" : \"...\",\n      \"lastUpdate\" : 12345,\n      \"label\" : \"...\",\n      \"keywords\" : [ \"...\", \"...\" ],\n      \"isPrivate\" : true,\n      \"variableCount\" : 12345,\n      \"dataSource\" : { },\n      \"id\" : \"...\",\n      \"urls\" : [ \"...\", \"...\" ],\n      \"description\" : \"...\",\n      \"uri\" : \"...\",\n      \"name\" : \"...\",\n      \"dataProduct\" : { },\n      \"urlCount\" : 12345,\n      \"documentation\" : \"...\",\n      \"keywordCount\" : 12345\n    } ],\n    \"name\" : \"...\",\n    \"dataProductCount\" : 12345\n  } ],\n  \"dataProducts\" : [ {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  }, {\n    \"exclusion\" : \"...\",\n    \"lastUpdate\" : 12345,\n    \"label\" : \"...\",\n    \"keywords\" : [ \"...\", \"...\" ],\n    \"isPrivate\" : true,\n    \"variableCount\" : 12345,\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"name\" : \"...\",\n      \"dataSource\" : { },\n      \"description\" : \"...\",\n      \"target\" : { },\n      \"id\" : \"...\",\n      \"configuration\" : { }\n    },\n    \"id\" : \"...\",\n    \"urls\" : [ \"...\", \"...\" ],\n    \"description\" : \"...\",\n    \"uri\" : \"...\",\n    \"name\" : \"...\",\n    \"dataProduct\" : {\n      \"dataSet\" : { },\n      \"urls\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"urlCount\" : 12345\n    },\n    \"urlCount\" : 12345,\n    \"documentation\" : \"...\",\n    \"keywordCount\" : 12345\n  } ],\n  \"name\" : \"...\",\n  \"dataProductCount\" : 12345\n}"},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog to create."}]},"description":"\n<p>\nCreates a new catalog with the specified ID.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"7e529c4e-689c-49ca-a2f4-ad769a7139c1"},{"name":"Get catalog metadata.  ","id":"a175ab04-333b-4bc8-8287-fb7fc67d4089","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/metadata","description":"<p>\nThis will retrieve the metadata for all of the data\nproducts that are in the specified catalog. For each data product there\nwill be a record layout with its variables along with any classifications\nthat are referenced by the variables.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","metadata"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"159c7cb7-be52-4920-b2a0-3c02df2dcf92","description":{"content":"<p>Required - the ID of the catalog whose metadata is desired.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"}]}},"response":[{"id":"92b3f8d0-11ca-4caf-b958-b565b8d32cb3","name":"a list of metadata wrappers","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/metadata","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","metadata"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - the ID of the catalog whose metadata is desired."}]},"description":"\n<p>\nThis will retrieve the metadata for all of the data\nproducts that are in the specified catalog. For each data product there\nwill be a record layout with its variables along with any classifications\nthat are referenced by the variables.\n</p>"},"status":"a list of metadata wrappers","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"recordLayout\" : {\n    \"hash\" : \"...\",\n    \"primaryKey\" : {\n      \"purpose\" : \"...\",\n      \"variables\" : [ { }, { } ],\n      \"variableCount\" : 12345,\n      \"cardinality\" : \"MANY\"\n    },\n    \"layoutVariableCount\" : 12345,\n    \"templateId\" : \"...\",\n    \"id\" : \"...\",\n    \"variables\" : [ {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    }, {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    } ]\n  },\n  \"classifications\" : [ {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  }, {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"NUMERIC_ALPHA\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  } ]\n}"}],"_postman_id":"a175ab04-333b-4bc8-8287-fb7fc67d4089"},{"name":"Delete data product.\n","id":"582aa070-eab8-4f6a-aaa7-dc3bba2ad085","request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}","description":"<p>\nDeletes the specified data product.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"939a37e9-cd59-486b-a8a1-fbd0585b2821","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"b4d05e19-5bd8-4e2d-acfd-1d1a1ffb4e32","description":{"content":"<p>Required - The ID of the data product to delete.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"1ad56baf-7584-4e26-b6cc-6dcc2fe2a4e9","name":"Process started.","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to delete."}]},"description":"\n<p>\nDeletes the specified data product.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"582aa070-eab8-4f6a-aaa7-dc3bba2ad085"},{"name":"Update data product.\n","id":"1400973e-0454-493b-9b5c-e46a896e0442","request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"exclusion\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"label\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"isPrivate\" : true,\n  \"variableCount\" : 12345,\n  \"dataSource\" : {\n    \"purpose\" : [ \"...\", \"...\" ],\n    \"name\" : \"...\",\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"dataReaderConfiguration\" : { },\n      \"derivedFiles\" : [ { }, { } ],\n      \"derivedFileCount\" : 12345,\n      \"dataReaderProfile\" : { },\n      \"targetJavaClass\" : \"...\",\n      \"key\" : \"...\",\n      \"recordLayout\" : { },\n      \"source\" : \"...\"\n    },\n    \"description\" : \"...\",\n    \"target\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"MYSQL\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    },\n    \"id\" : \"...\",\n    \"configuration\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"VIRTUOSO\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    }\n  },\n  \"id\" : \"...\",\n  \"urls\" : [ \"...\", \"...\" ],\n  \"description\" : \"...\",\n  \"uri\" : \"...\",\n  \"name\" : \"...\",\n  \"dataProduct\" : {\n    \"dataSet\" : {\n      \"dataMappingDefinitionCount\" : 12345,\n      \"variableGroupCount\" : 12345,\n      \"recordLayout\" : { },\n      \"dataMappingDefinitions\" : [ { }, { } ],\n      \"dataSource\" : { },\n      \"variableGroups\" : [ { }, { } ],\n      \"primaryDataMappingDefinition\" : { }\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"variableCount\" : 12345,\n    \"urlCount\" : 12345\n  },\n  \"urlCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"keywordCount\" : 12345\n}"},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}","description":"<p>\nAdministrative endpoint for updating a data product.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"8ca4f366-0909-4cb6-923b-f10aa5975a18","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"8fed61ad-bf33-4950-90ea-7aaa9469ea32","description":{"content":"<p>Required - The ID of the data product being updated.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"7a616870-b60b-4803-8d31-d0ed3d12a93b","name":"Process started.","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"exclusion\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"label\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"isPrivate\" : true,\n  \"variableCount\" : 12345,\n  \"dataSource\" : {\n    \"purpose\" : [ \"...\", \"...\" ],\n    \"name\" : \"...\",\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"dataReaderConfiguration\" : { },\n      \"derivedFiles\" : [ { }, { } ],\n      \"derivedFileCount\" : 12345,\n      \"dataReaderProfile\" : { },\n      \"targetJavaClass\" : \"...\",\n      \"key\" : \"...\",\n      \"recordLayout\" : { },\n      \"source\" : \"...\"\n    },\n    \"description\" : \"...\",\n    \"target\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"MYSQL\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    },\n    \"id\" : \"...\",\n    \"configuration\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"VIRTUOSO\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    }\n  },\n  \"id\" : \"...\",\n  \"urls\" : [ \"...\", \"...\" ],\n  \"description\" : \"...\",\n  \"uri\" : \"...\",\n  \"name\" : \"...\",\n  \"dataProduct\" : {\n    \"dataSet\" : {\n      \"dataMappingDefinitionCount\" : 12345,\n      \"variableGroupCount\" : 12345,\n      \"recordLayout\" : { },\n      \"dataMappingDefinitions\" : [ { }, { } ],\n      \"dataSource\" : { },\n      \"variableGroups\" : [ { }, { } ],\n      \"primaryDataMappingDefinition\" : { }\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"variableCount\" : 12345,\n    \"urlCount\" : 12345\n  },\n  \"urlCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"keywordCount\" : 12345\n}"},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product being updated."}]},"description":"\n<p>\nAdministrative endpoint for updating a data product.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"1400973e-0454-493b-9b5c-e46a896e0442"},{"name":"Get data product.\n","id":"8ba98a31-8976-464d-9c13-b0c2378cf5f6","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}","description":"<p>\nReturns the specified data product. This shows just a single data product\nin a catalog, there is no additional information in this call, it simply\nlimits the scope of what is returned.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"d606f4e7-4a9e-4775-9821-a70ac8a40362","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"4aee5082-da5a-4ca8-900f-2074c53a1c3f","description":{"content":"<p>Required - The ID of the data product to retrieve.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"1feb8574-d373-4a26-a570-1ab31a6a7a77","name":"Data product retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to retrieve."}]},"description":"\n<p>\nReturns the specified data product. This shows just a single data product\nin a catalog, there is no additional information in this call, it simply\nlimits the scope of what is returned.\n</p>"},"status":"Data product retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"exclusion\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"label\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"isPrivate\" : true,\n  \"variableCount\" : 12345,\n  \"dataSource\" : {\n    \"purpose\" : [ \"...\", \"...\" ],\n    \"name\" : \"...\",\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"dataReaderConfiguration\" : { },\n      \"derivedFiles\" : [ { }, { } ],\n      \"derivedFileCount\" : 12345,\n      \"dataReaderProfile\" : { },\n      \"targetJavaClass\" : \"...\",\n      \"key\" : \"...\",\n      \"recordLayout\" : { },\n      \"source\" : \"...\"\n    },\n    \"description\" : \"...\",\n    \"target\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"MYSQL\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    },\n    \"id\" : \"...\",\n    \"configuration\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"VIRTUOSO\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    }\n  },\n  \"id\" : \"...\",\n  \"urls\" : [ \"...\", \"...\" ],\n  \"description\" : \"...\",\n  \"uri\" : \"...\",\n  \"name\" : \"...\",\n  \"dataProduct\" : {\n    \"dataSet\" : {\n      \"dataMappingDefinitionCount\" : 12345,\n      \"variableGroupCount\" : 12345,\n      \"recordLayout\" : { },\n      \"dataMappingDefinitions\" : [ { }, { } ],\n      \"dataSource\" : { },\n      \"variableGroups\" : [ { }, { } ],\n      \"primaryDataMappingDefinition\" : { }\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"variableCount\" : 12345,\n    \"urlCount\" : 12345\n  },\n  \"urlCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"keywordCount\" : 12345\n}"}],"_postman_id":"8ba98a31-8976-464d-9c13-b0c2378cf5f6"},{"name":"Create data product.\n","id":"9be9f2e3-f7b0-454b-8be5-fd0b5ba7d318","request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"exclusion\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"label\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"isPrivate\" : true,\n  \"variableCount\" : 12345,\n  \"dataSource\" : {\n    \"purpose\" : [ \"...\", \"...\" ],\n    \"name\" : \"...\",\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"dataReaderConfiguration\" : { },\n      \"derivedFiles\" : [ { }, { } ],\n      \"derivedFileCount\" : 12345,\n      \"dataReaderProfile\" : { },\n      \"targetJavaClass\" : \"...\",\n      \"key\" : \"...\",\n      \"recordLayout\" : { },\n      \"source\" : \"...\"\n    },\n    \"description\" : \"...\",\n    \"target\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"MYSQL\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    },\n    \"id\" : \"...\",\n    \"configuration\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"VIRTUOSO\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    }\n  },\n  \"id\" : \"...\",\n  \"urls\" : [ \"...\", \"...\" ],\n  \"description\" : \"...\",\n  \"uri\" : \"...\",\n  \"name\" : \"...\",\n  \"dataProduct\" : {\n    \"dataSet\" : {\n      \"dataMappingDefinitionCount\" : 12345,\n      \"variableGroupCount\" : 12345,\n      \"recordLayout\" : { },\n      \"dataMappingDefinitions\" : [ { }, { } ],\n      \"dataSource\" : { },\n      \"variableGroups\" : [ { }, { } ],\n      \"primaryDataMappingDefinition\" : { }\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"variableCount\" : 12345,\n    \"urlCount\" : 12345\n  },\n  \"urlCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"keywordCount\" : 12345\n}"},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}","description":"<p>\nCreates a new data product with the specified ID in\nthe specified catalog.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"93da71df-20e5-4e07-9379-0b7cf19d1bb2","description":{"content":"<p>Required - The ID of the catalog to create the product in.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"4749734f-999f-4558-a607-8daaccf5c049","description":{"content":"<p>Required - The ID of the data product being created.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"b4b909e2-6b3c-4418-bdba-0f82b2ef27cc","name":"Process started.","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"exclusion\" : \"...\",\n  \"lastUpdate\" : 12345,\n  \"label\" : \"...\",\n  \"keywords\" : [ \"...\", \"...\" ],\n  \"isPrivate\" : true,\n  \"variableCount\" : 12345,\n  \"dataSource\" : {\n    \"purpose\" : [ \"...\", \"...\" ],\n    \"name\" : \"...\",\n    \"dataSource\" : {\n      \"purpose\" : [ \"...\", \"...\" ],\n      \"dataReaderConfiguration\" : { },\n      \"derivedFiles\" : [ { }, { } ],\n      \"derivedFileCount\" : 12345,\n      \"dataReaderProfile\" : { },\n      \"targetJavaClass\" : \"...\",\n      \"key\" : \"...\",\n      \"recordLayout\" : { },\n      \"source\" : \"...\"\n    },\n    \"description\" : \"...\",\n    \"target\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"MYSQL\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    },\n    \"id\" : \"...\",\n    \"configuration\" : {\n      \"recordLayout\" : { },\n      \"tableName\" : \"...\",\n      \"dataSourceType\" : \"VIRTUOSO\",\n      \"user\" : \"...\",\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"readerConfiguration\" : { }\n    }\n  },\n  \"id\" : \"...\",\n  \"urls\" : [ \"...\", \"...\" ],\n  \"description\" : \"...\",\n  \"uri\" : \"...\",\n  \"name\" : \"...\",\n  \"dataProduct\" : {\n    \"dataSet\" : {\n      \"dataMappingDefinitionCount\" : 12345,\n      \"variableGroupCount\" : 12345,\n      \"recordLayout\" : { },\n      \"dataMappingDefinitions\" : [ { }, { } ],\n      \"dataSource\" : { },\n      \"variableGroups\" : [ { }, { } ],\n      \"primaryDataMappingDefinition\" : { }\n    },\n    \"urls\" : [ \"...\", \"...\" ],\n    \"variableCount\" : 12345,\n    \"urlCount\" : 12345\n  },\n  \"urlCount\" : 12345,\n  \"documentation\" : \"...\",\n  \"keywordCount\" : 12345\n}"},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog to create the product in."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product being created."}]},"description":"\n<p>\nCreates a new data product with the specified ID in\nthe specified catalog.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"9be9f2e3-f7b0-454b-8be5-fd0b5ba7d318"},{"name":"Delete catalog.\n","id":"3ef1d4d6-da74-433a-b154-8cfaa4ba7c19","request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/cache","description":"<p>\nDeletes the specified catalog and any data products it\ncontains.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","cache"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"2368bc0a-7df2-4f8a-b73e-68005f40757d","description":{"content":"<p>Required - The ID of the catalog to delete.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"279a08b0-23e9-4ae5-9c1d-fad140bdb7e3","description":{"content":"<p>Required</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[],"_postman_id":"3ef1d4d6-da74-433a-b154-8cfaa4ba7c19"},{"name":"Get classification.","id":"7c03c0ff-171f-445e-8e84-06e54a445ca5","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}?ids=<string array>&limit=<integer>&offset=<integer>&sortOrder=<string>","description":"<p>\nReturns the specified classification with more detail than the summary.\nCodes will be excluded from this object, the idea being that this\nclassification could have a large amount of codes and clients can build\nthese codes up through the used of the codes endpoints.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - The ID or URI of the resources desired.</p>\n","type":"text/plain"},"key":"ids","value":"<string array>"},{"description":{"content":"<p>Optional - The number of resources to return.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"},{"description":{"content":"<p>Optional - The offset to start at.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"description":{"content":"<p>Optional - The sort order or the returned resources.</p>\n","type":"text/plain"},"key":"sortOrder","value":"<string>"}],"variable":[{"id":"8192cfe9-f917-4f75-8d6c-0617080975c2","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"e4280bca-9d81-4cbb-961b-b41ce0c5329b","description":{"content":"<p>Required - The ID or URI the classification to return.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"classificationId"},{"id":"62607db3-8aa7-466d-a586-49e3ee0b718c","description":{"content":"<p>Required - The ID of the data product that contains the classification.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"7b9615a5-2bb8-40ed-a8d4-40d676a4d69a","name":"Classification retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}?ids=<string array>&limit=<integer>&offset=<integer>&sortOrder=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}"],"query":[{"key":"ids","value":"<string array>","description":"Optional - The ID or URI of the resources desired."},{"key":"limit","value":"<integer>","description":"Optional - The number of resources to return."},{"key":"offset","value":"<integer>","description":"Optional - The offset to start at."},{"key":"sortOrder","value":"<string>","description":"Optional - The sort order or the returned resources."}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"classificationId","value":"<string>","description":"Required - The ID or URI the classification to return."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the classification."}]},"description":"\n<p>\nReturns the specified classification with more detail than the summary.\nCodes will be excluded from this object, the idea being that this\nclassification could have a large amount of codes and clients can build\nthese codes up through the used of the codes endpoints.\n</p>"},"status":"Classification retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"codes\" : [ {\n    \"translationAidCount\" : 12345,\n    \"residual\" : true,\n    \"synonyms\" : [ \"...\", \"...\" ],\n    \"sinceVersion\" : {\n      \"versionDate\" : 12345,\n      \"versionNumber\" : { }\n    },\n    \"reverseTranslationAidCount\" : 12345,\n    \"childUris\" : [ \"...\", \"...\" ],\n    \"childCount\" : 12345,\n    \"category\" : {\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"residual\" : true,\n      \"concept\" : { },\n      \"synonymCount\" : 12345\n    },\n    \"reverseTranslationAids\" : [ {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    }, {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    } ],\n    \"codeValue\" : \"...\",\n    \"parent\" : \"...\",\n    \"synonymCount\" : 12345,\n    \"translationAids\" : [ {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    }, {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    } ]\n  }, {\n    \"translationAidCount\" : 12345,\n    \"residual\" : true,\n    \"synonyms\" : [ \"...\", \"...\" ],\n    \"sinceVersion\" : {\n      \"versionDate\" : 12345,\n      \"versionNumber\" : { }\n    },\n    \"reverseTranslationAidCount\" : 12345,\n    \"childUris\" : [ \"...\", \"...\" ],\n    \"childCount\" : 12345,\n    \"category\" : {\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"residual\" : true,\n      \"concept\" : { },\n      \"synonymCount\" : 12345\n    },\n    \"reverseTranslationAids\" : [ {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    }, {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    } ],\n    \"codeValue\" : \"...\",\n    \"parent\" : \"...\",\n    \"synonymCount\" : 12345,\n    \"translationAids\" : [ {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    }, {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    } ]\n  } ],\n  \"levels\" : [ {\n    \"categorySetUriUri\" : \"...\",\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"conceptUri\" : {\n      \"synonymCount\" : 12345,\n      \"relatedConceptCount\" : 12345,\n      \"broaderConceptCount\" : 12345,\n      \"broaderConcepts\" : [ { }, { } ],\n      \"narrowerConceptCount\" : 12345,\n      \"definitionSource\" : \"...\",\n      \"narrowerConcepts\" : [ { }, { } ],\n      \"customProperties\" : [ { }, { } ],\n      \"customPropertyCount\" : 12345,\n      \"relatedConcepts\" : [ { }, { } ],\n      \"synonyms\" : [ \"...\", \"...\" ]\n    },\n    \"conceptUriUri\" : \"...\",\n    \"codeCount\" : 12345,\n    \"depth\" : 12345,\n    \"codeDataType\" : \"NUMERIC_ALPHA\",\n    \"codePattern\" : \"...\",\n    \"categorySetUri\" : {\n      \"categorys\" : [ { }, { } ],\n      \"topConcept\" : { },\n      \"customPropertyCount\" : 12345,\n      \"categoryCount\" : 12345,\n      \"customProperties\" : [ { }, { } ]\n    }\n  }, {\n    \"categorySetUriUri\" : \"...\",\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"conceptUri\" : {\n      \"synonymCount\" : 12345,\n      \"relatedConceptCount\" : 12345,\n      \"broaderConceptCount\" : 12345,\n      \"broaderConcepts\" : [ { }, { } ],\n      \"narrowerConceptCount\" : 12345,\n      \"definitionSource\" : \"...\",\n      \"narrowerConcepts\" : [ { }, { } ],\n      \"customProperties\" : [ { }, { } ],\n      \"customPropertyCount\" : 12345,\n      \"relatedConcepts\" : [ { }, { } ],\n      \"synonyms\" : [ \"...\", \"...\" ]\n    },\n    \"conceptUriUri\" : \"...\",\n    \"codeCount\" : 12345,\n    \"depth\" : 12345,\n    \"codeDataType\" : \"ALPHA\",\n    \"codePattern\" : \"...\",\n    \"categorySetUri\" : {\n      \"categorys\" : [ { }, { } ],\n      \"topConcept\" : { },\n      \"customPropertyCount\" : 12345,\n      \"categoryCount\" : 12345,\n      \"customProperties\" : [ { }, { } ]\n    }\n  } ],\n  \"rootCodeCount\" : 12345,\n  \"levelCount\" : 12345\n}"}],"_postman_id":"7c03c0ff-171f-445e-8e84-06e54a445ca5"},{"name":"Get codes.","id":"adef6efa-610c-4a44-ad8a-428156a19b9f","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}/codes?ids=<string array>&includeChildren=<boolean>&includeParents=<boolean>&limit=<integer>&offset=<integer>&sortOrder=<string>","description":"<p>\nThis allows the client to page through or build up the codes of the\nclassification as desired.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}","codes"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - The ID or URI of the resources desired.</p>\n","type":"text/plain"},"key":"ids","value":"<string array>"},{"description":{"content":"<p>Required - Flag indicating if child codes should be included on the code\n(if they are available).</p>\n","type":"text/plain"},"key":"includeChildren","value":"<boolean>"},{"description":{"content":"<p>Required - Flag indicating if parent URI should be included on the code\n(if they are available).</p>\n","type":"text/plain"},"key":"includeParents","value":"<boolean>"},{"description":{"content":"<p>Optional - The number of resources to return.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"},{"description":{"content":"<p>Optional - The offset to start at.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"description":{"content":"<p>Optional - The sort order or the returned resources.</p>\n","type":"text/plain"},"key":"sortOrder","value":"<string>"}],"variable":[{"id":"f640716d-b66f-4cda-aed0-2e85e791938b","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"d1531913-c77e-4e74-90e5-89e18c075d2d","description":{"content":"<p>Required - The ID or URI of the classification that contains the codes.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"classificationId"},{"id":"1207d9c9-7b50-451e-8d55-1becaa8c1ef9","description":{"content":"<p>Required - The ID of the data product that contains the classification.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"8db2d044-653a-46a8-9471-fe82c62c0848","name":"Codes retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}/codes?ids=<string array>&includeChildren=<boolean>&includeParents=<boolean>&limit=<integer>&offset=<integer>&sortOrder=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}","codes"],"query":[{"key":"ids","value":"<string array>","description":"Optional - The ID or URI of the resources desired."},{"key":"includeChildren","value":"<boolean>","description":"Required - Flag indicating if child codes should be included on the code\n(if they are available)."},{"key":"includeParents","value":"<boolean>","description":"Required - Flag indicating if parent URI should be included on the code\n(if they are available)."},{"key":"limit","value":"<integer>","description":"Optional - The number of resources to return."},{"key":"offset","value":"<integer>","description":"Optional - The offset to start at."},{"key":"sortOrder","value":"<string>","description":"Optional - The sort order or the returned resources."}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"classificationId","value":"<string>","description":"Required - The ID or URI of the classification that contains the codes."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the classification."}]},"description":"\n<p>\nThis allows the client to page through or build up the codes of the\nclassification as desired.\n</p>"},"status":"Codes retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{ }"}],"_postman_id":"adef6efa-610c-4a44-ad8a-428156a19b9f"},{"name":"Get level.","id":"208acad2-4bc6-48e2-8139-4c4b0a15db76","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}/level/{levelId}","description":"<p>\nReturns the specified level. Similar to the classification endpoints,\nthis will not return the codes on the level as the client can do this\nthrough the use of the appropriate codes endpoint.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}","level","{levelId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"75ddec61-79a7-4dcb-8737-41ddc74390ca","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"62c0d88a-aed2-4288-a457-8f93c47cc331","description":{"content":"<p>Required - The ID or URI of the classification that contains the level.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"classificationId"},{"id":"6b084953-265d-4e65-9b06-d443dad20f52","description":{"content":"<p>Required - The ID of the data product that contains the classification.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"},{"id":"16a0bbf4-4f30-4ea9-ac48-c5d8274b693c","description":{"content":"<p>Required - The ID or URI of the desired level.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"levelId"}]}},"response":[{"id":"4c45e77d-17fe-4533-b9c4-399273925e29","name":"Level retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}/level/{levelId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}","level","{levelId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"classificationId","value":"<string>","description":"Required - The ID or URI of the classification that contains the level."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the classification."},{"key":"levelId","value":"<string>","description":"Required - The ID or URI of the desired level."}]},"description":"\n<p>\nReturns the specified level. Similar to the classification endpoints,\nthis will not return the codes on the level as the client can do this\nthrough the use of the appropriate codes endpoint.\n</p>"},"status":"Level retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"categorySetUriUri\" : \"...\",\n  \"codes\" : [ {\n    \"translationAidCount\" : 12345,\n    \"residual\" : true,\n    \"synonyms\" : [ \"...\", \"...\" ],\n    \"sinceVersion\" : {\n      \"versionDate\" : 12345,\n      \"versionNumber\" : { }\n    },\n    \"reverseTranslationAidCount\" : 12345,\n    \"childUris\" : [ \"...\", \"...\" ],\n    \"childCount\" : 12345,\n    \"category\" : {\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"residual\" : true,\n      \"concept\" : { },\n      \"synonymCount\" : 12345\n    },\n    \"reverseTranslationAids\" : [ {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    }, {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    } ],\n    \"codeValue\" : \"...\",\n    \"parent\" : \"...\",\n    \"synonymCount\" : 12345,\n    \"translationAids\" : [ {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    }, {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    } ]\n  }, {\n    \"translationAidCount\" : 12345,\n    \"residual\" : true,\n    \"synonyms\" : [ \"...\", \"...\" ],\n    \"sinceVersion\" : {\n      \"versionDate\" : 12345,\n      \"versionNumber\" : { }\n    },\n    \"reverseTranslationAidCount\" : 12345,\n    \"childUris\" : [ \"...\", \"...\" ],\n    \"childCount\" : 12345,\n    \"category\" : {\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"residual\" : true,\n      \"concept\" : { },\n      \"synonymCount\" : 12345\n    },\n    \"reverseTranslationAids\" : [ {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    }, {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    } ],\n    \"codeValue\" : \"...\",\n    \"parent\" : \"...\",\n    \"synonymCount\" : 12345,\n    \"translationAids\" : [ {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    }, {\n      \"reference\" : \"...\",\n      \"value\" : \"...\"\n    } ]\n  } ],\n  \"conceptUri\" : {\n    \"synonymCount\" : 12345,\n    \"relatedConceptCount\" : 12345,\n    \"broaderConceptCount\" : 12345,\n    \"broaderConcepts\" : [ { }, { } ],\n    \"narrowerConceptCount\" : 12345,\n    \"definitionSource\" : \"...\",\n    \"narrowerConcepts\" : [ { }, { } ],\n    \"customProperties\" : [ {\n      \"defining\" : true,\n      \"maxOccurs\" : 12345,\n      \"propertyRepresentation\" : { },\n      \"repeatable\" : true,\n      \"minOccurs\" : 12345\n    }, {\n      \"defining\" : true,\n      \"maxOccurs\" : 12345,\n      \"propertyRepresentation\" : { },\n      \"repeatable\" : true,\n      \"minOccurs\" : 12345\n    } ],\n    \"customPropertyCount\" : 12345,\n    \"relatedConcepts\" : [ { }, { } ],\n    \"synonyms\" : [ \"...\", \"...\" ]\n  },\n  \"conceptUriUri\" : \"...\",\n  \"codeCount\" : 12345,\n  \"depth\" : 12345,\n  \"codeDataType\" : \"ALPHA_NUMERIC\",\n  \"codePattern\" : \"...\",\n  \"categorySetUri\" : {\n    \"categorys\" : [ {\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"residual\" : true,\n      \"concept\" : { },\n      \"synonymCount\" : 12345\n    }, {\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"residual\" : true,\n      \"concept\" : { },\n      \"synonymCount\" : 12345\n    } ],\n    \"topConcept\" : {\n      \"synonymCount\" : 12345,\n      \"relatedConceptCount\" : 12345,\n      \"broaderConceptCount\" : 12345,\n      \"broaderConcepts\" : [ { }, { } ],\n      \"narrowerConceptCount\" : 12345,\n      \"definitionSource\" : \"...\",\n      \"narrowerConcepts\" : [ { }, { } ],\n      \"customProperties\" : [ { }, { } ],\n      \"customPropertyCount\" : 12345,\n      \"relatedConcepts\" : [ { }, { } ],\n      \"synonyms\" : [ \"...\", \"...\" ]\n    },\n    \"customPropertyCount\" : 12345,\n    \"categoryCount\" : 12345,\n    \"customProperties\" : [ {\n      \"defining\" : true,\n      \"maxOccurs\" : 12345,\n      \"propertyRepresentation\" : { },\n      \"repeatable\" : true,\n      \"minOccurs\" : 12345\n    }, {\n      \"defining\" : true,\n      \"maxOccurs\" : 12345,\n      \"propertyRepresentation\" : { },\n      \"repeatable\" : true,\n      \"minOccurs\" : 12345\n    } ]\n  }\n}"}],"_postman_id":"208acad2-4bc6-48e2-8139-4c4b0a15db76"},{"name":"Get level codes. ","id":"5515a54c-9820-4c82-b97c-b0869dfdd4cb","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}/level/{levelId}/codes?ids=<string array>&limit=<integer>&offset=<integer>&sortOrder=<string>","description":"<p>\nGets the codes of a specific level of a classification. This allows the\nclient to page through or build up a levels codes as desired.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}","level","{levelId}","codes"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - The ID or URI of the resources desired.</p>\n","type":"text/plain"},"key":"ids","value":"<string array>"},{"description":{"content":"<p>Optional - The number of resources to return.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"},{"description":{"content":"<p>Optional - The offset to start at.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"description":{"content":"<p>Optional - The sort order or the returned resources.</p>\n","type":"text/plain"},"key":"sortOrder","value":"<string>"}],"variable":[{"id":"b36d6a8e-2e55-409f-a995-c5788305a1c7","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"d9c9caa4-8b90-4247-989d-cd4c49fb03fe","description":{"content":"<p>Required - The ID or URI of the classification that contains the level.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"classificationId"},{"id":"eab7432c-1d5e-40ef-becc-6f061505634b","description":{"content":"<p>Required - The ID of the data product that contains the classification.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"},{"id":"85a8acbf-fa2c-49d8-a552-0e3a8da44b83","description":{"content":"<p>Required - The ID or URI of the level that contains the codes.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"levelId"}]}},"response":[{"id":"e872b7bd-8a6c-4174-bf2a-c17fdef7a3fa","name":"Codes retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}/level/{levelId}/codes?ids=<string array>&limit=<integer>&offset=<integer>&sortOrder=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}","level","{levelId}","codes"],"query":[{"key":"ids","value":"<string array>","description":"Optional - The ID or URI of the resources desired."},{"key":"limit","value":"<integer>","description":"Optional - The number of resources to return."},{"key":"offset","value":"<integer>","description":"Optional - The offset to start at."},{"key":"sortOrder","value":"<string>","description":"Optional - The sort order or the returned resources."}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"classificationId","value":"<string>","description":"Required - The ID or URI of the classification that contains the level."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the classification."},{"key":"levelId","value":"<string>","description":"Required - The ID or URI of the level that contains the codes."}]},"description":"\n<p>\nGets the codes of a specific level of a classification. This allows the\nclient to page through or build up a levels codes as desired.\n</p>"},"status":"Codes retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{ }"}],"_postman_id":"5515a54c-9820-4c82-b97c-b0869dfdd4cb"},{"name":"Update code.","id":"c8991e5d-08d7-49e7-9345-81fe0d358063","request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{ }"},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}/{codeId}","description":"<p>\nAdministrative endpoint for editing a code.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}","{codeId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"3b53e422-f799-479f-823d-de3d06b755b2","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"4ae0020e-68a1-4b9d-914d-85303978ac51","description":{"content":"<p>Required - The ID or URI of the classification that contains the code.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"classificationId"},{"id":"a47c34f5-8b5c-43e6-a652-26225045ab02","description":{"content":"<p>Required - The ID or URI of the code being updated.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"codeId"},{"id":"82f4df50-9489-4722-9e9e-24aeecfba56e","description":{"content":"<p>Required - The ID of the data product that contains the classification.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"2844715f-fd9a-4ea1-8476-d948aa8212da","name":"Process started.","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{ }"},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classification/{classificationId}/{codeId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classification","{classificationId}","{codeId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"classificationId","value":"<string>","description":"Required - The ID or URI of the classification that contains the code."},{"key":"codeId","value":"<string>","description":"Required - The ID or URI of the code being updated."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the classification."}]},"description":"\n<p>\nAdministrative endpoint for editing a code.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"c8991e5d-08d7-49e7-9345-81fe0d358063"},{"name":"Get classifications.","id":"57b4d6ba-0da0-4e86-8e79-21261a25779d","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classifications?ids=<string array>&limit=<integer>&offset=<integer>&sortOrder=<string>","description":"<p>\nGet the classifications of a specific data product. Returns a list of\nsummary objects about any classifications that are used in the specified\ndata product.These summary objects hold the classification uri and\n\n</p><p>id (among other things) either of which can be used to get more information\nabout the classification.</p>\n<p></p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classifications"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - The ID or URI of the resources desired.</p>\n","type":"text/plain"},"key":"ids","value":"<string array>"},{"description":{"content":"<p>Optional - The number of resources to return.</p>\n","type":"text/plain"},"key":"limit","value":"<integer>"},{"description":{"content":"<p>Optional - The offset to start at.</p>\n","type":"text/plain"},"key":"offset","value":"<integer>"},{"description":{"content":"<p>Optional - The sort order or the returned resources.</p>\n","type":"text/plain"},"key":"sortOrder","value":"<string>"}],"variable":[{"id":"2ed67cb4-1648-4838-ba29-3f7863827c01","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"fcd30595-ec75-4cd1-a8bd-6ace6e95d3d5","description":{"content":"<p>Required - The ID of the data product whose classifications are desired.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"23f40a9d-4c34-4ab9-b51f-246885afbb65","name":"Classifications retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/classifications?ids=<string array>&limit=<integer>&offset=<integer>&sortOrder=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","classifications"],"query":[{"key":"ids","value":"<string array>","description":"Optional - The ID or URI of the resources desired."},{"key":"limit","value":"<integer>","description":"Optional - The number of resources to return."},{"key":"offset","value":"<integer>","description":"Optional - The offset to start at."},{"key":"sortOrder","value":"<string>","description":"Optional - The sort order or the returned resources."}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product whose classifications are desired."}]},"description":"\n<p>\nGet the classifications of a specific data product. Returns a list of\nsummary objects about any classifications that are used in the specified\ndata product.These summary objects hold the classification uri and\n\nid (among other things) either of which can be used to get more information\nabout the classification.\n</p>"},"status":"Classifications retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"version\" : {\n    \"versionDate\" : 12345,\n    \"versionNumber\" : {\n      \"release\" : 12345,\n      \"minor\" : 12345,\n      \"major\" : 12345\n    }\n  },\n  \"id\" : \"...\",\n  \"name\" : \"...\",\n  \"description\" : \"...\"\n}"}],"_postman_id":"57b4d6ba-0da0-4e86-8e79-21261a25779d"},{"name":"Update data source.\n","id":"556f7b46-eb61-48a7-b26e-131ae5399182","request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"purpose\" : [ \"...\", \"...\" ],\n  \"name\" : \"...\",\n  \"dataSource\" : {\n    \"purpose\" : [ \"...\", \"...\" ],\n    \"dataReaderConfiguration\" : { },\n    \"derivedFiles\" : [ { }, { } ],\n    \"derivedFileCount\" : 12345,\n    \"dataReaderProfile\" : {\n      \"recordLayoutUri\" : \"...\"\n    },\n    \"targetJavaClass\" : \"...\",\n    \"key\" : \"...\",\n    \"recordLayout\" : {\n      \"hash\" : \"...\",\n      \"primaryKey\" : { },\n      \"layoutVariableCount\" : 12345,\n      \"templateId\" : \"...\",\n      \"id\" : \"...\",\n      \"variables\" : [ { }, { } ]\n    },\n    \"source\" : \"...\"\n  },\n  \"description\" : \"...\",\n  \"target\" : {\n    \"recordLayout\" : {\n      \"hash\" : \"...\",\n      \"primaryKey\" : { },\n      \"layoutVariableCount\" : 12345,\n      \"templateId\" : \"...\",\n      \"id\" : \"...\",\n      \"variables\" : [ { }, { } ]\n    },\n    \"tableName\" : \"...\",\n    \"dataSourceType\" : \"MONET\",\n    \"user\" : \"...\",\n    \"password\" : \"...\",\n    \"connectionString\" : \"...\",\n    \"readerConfiguration\" : {\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"tableName\" : \"...\",\n      \"type\" : \"...\",\n      \"description\" : \"...\",\n      \"user\" : \"...\",\n      \"name\" : \"...\",\n      \"id\" : \"...\",\n      \"queryResolver\" : { },\n      \"queryInput\" : { },\n      \"columnResolver\" : { },\n      \"query\" : { },\n      \"dataTypeProviderClass\" : { },\n      \"dateConfiguration\" : { },\n      \"recordLayout\" : { }\n    }\n  },\n  \"id\" : \"...\",\n  \"configuration\" : {\n    \"recordLayout\" : {\n      \"hash\" : \"...\",\n      \"primaryKey\" : { },\n      \"layoutVariableCount\" : 12345,\n      \"templateId\" : \"...\",\n      \"id\" : \"...\",\n      \"variables\" : [ { }, { } ]\n    },\n    \"tableName\" : \"...\",\n    \"dataSourceType\" : \"MYSQL\",\n    \"user\" : \"...\",\n    \"password\" : \"...\",\n    \"connectionString\" : \"...\",\n    \"readerConfiguration\" : {\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"tableName\" : \"...\",\n      \"type\" : \"...\",\n      \"description\" : \"...\",\n      \"user\" : \"...\",\n      \"name\" : \"...\",\n      \"id\" : \"...\",\n      \"queryResolver\" : { },\n      \"queryInput\" : { },\n      \"columnResolver\" : { },\n      \"query\" : { },\n      \"dataTypeProviderClass\" : { },\n      \"dateConfiguration\" : { },\n      \"recordLayout\" : { }\n    }\n  }\n}"},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/dataSource/{dataSourceId}","description":"<p>\nAdministrative endpoint for updating data source\nconnection information.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","dataSource","{dataSourceId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"f845aa62-c86f-446d-be1a-82a9ce93e275","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"076776e9-b8f7-4707-b402-6c10363bc694","description":{"content":"<p>Required - The ID of the data product that contains the data source.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"},{"id":"925df343-b418-465a-904e-3aa42c27ab61","description":{"content":"<p>Required - The ID of the data source being updated.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataSourceId"}]}},"response":[{"id":"938a46e9-a0a9-495f-bf65-4a8d76179c7f","name":"Process started.","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"purpose\" : [ \"...\", \"...\" ],\n  \"name\" : \"...\",\n  \"dataSource\" : {\n    \"purpose\" : [ \"...\", \"...\" ],\n    \"dataReaderConfiguration\" : { },\n    \"derivedFiles\" : [ { }, { } ],\n    \"derivedFileCount\" : 12345,\n    \"dataReaderProfile\" : {\n      \"recordLayoutUri\" : \"...\"\n    },\n    \"targetJavaClass\" : \"...\",\n    \"key\" : \"...\",\n    \"recordLayout\" : {\n      \"hash\" : \"...\",\n      \"primaryKey\" : { },\n      \"layoutVariableCount\" : 12345,\n      \"templateId\" : \"...\",\n      \"id\" : \"...\",\n      \"variables\" : [ { }, { } ]\n    },\n    \"source\" : \"...\"\n  },\n  \"description\" : \"...\",\n  \"target\" : {\n    \"recordLayout\" : {\n      \"hash\" : \"...\",\n      \"primaryKey\" : { },\n      \"layoutVariableCount\" : 12345,\n      \"templateId\" : \"...\",\n      \"id\" : \"...\",\n      \"variables\" : [ { }, { } ]\n    },\n    \"tableName\" : \"...\",\n    \"dataSourceType\" : \"MONET\",\n    \"user\" : \"...\",\n    \"password\" : \"...\",\n    \"connectionString\" : \"...\",\n    \"readerConfiguration\" : {\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"tableName\" : \"...\",\n      \"type\" : \"...\",\n      \"description\" : \"...\",\n      \"user\" : \"...\",\n      \"name\" : \"...\",\n      \"id\" : \"...\",\n      \"queryResolver\" : { },\n      \"queryInput\" : { },\n      \"columnResolver\" : { },\n      \"query\" : { },\n      \"dataTypeProviderClass\" : { },\n      \"dateConfiguration\" : { },\n      \"recordLayout\" : { }\n    }\n  },\n  \"id\" : \"...\",\n  \"configuration\" : {\n    \"recordLayout\" : {\n      \"hash\" : \"...\",\n      \"primaryKey\" : { },\n      \"layoutVariableCount\" : 12345,\n      \"templateId\" : \"...\",\n      \"id\" : \"...\",\n      \"variables\" : [ { }, { } ]\n    },\n    \"tableName\" : \"...\",\n    \"dataSourceType\" : \"MYSQL\",\n    \"user\" : \"...\",\n    \"password\" : \"...\",\n    \"connectionString\" : \"...\",\n    \"readerConfiguration\" : {\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"tableName\" : \"...\",\n      \"type\" : \"...\",\n      \"description\" : \"...\",\n      \"user\" : \"...\",\n      \"name\" : \"...\",\n      \"id\" : \"...\",\n      \"queryResolver\" : { },\n      \"queryInput\" : { },\n      \"columnResolver\" : { },\n      \"query\" : { },\n      \"dataTypeProviderClass\" : { },\n      \"dateConfiguration\" : { },\n      \"recordLayout\" : { }\n    }\n  }\n}"},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/dataSource/{dataSourceId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","dataSource","{dataSourceId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the data source."},{"key":"dataSourceId","value":"<string>","description":"Required - The ID of the data source being updated."}]},"description":"\n<p>\nAdministrative endpoint for updating data source\nconnection information.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"556f7b46-eb61-48a7-b26e-131ae5399182"},{"name":"Get data sources.","id":"a6d47984-aa86-4a79-a971-c90527e2b93f","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/dataSources","description":"<p>\nGets the specified data products data sources. This is an administrative\nend point for viewing data source connection information. This\ninformation is typically hidden from the general user,however,for the\nadministrator it allows them to see connection information that they may\nneed to edit if there are changes to their database.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","dataSources"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"43a15325-a42d-4dd3-bb3e-365f5150c634","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"0c397c3d-3a37-4aa0-9a32-5c9973de83dc","description":{"content":"<p>Required - The ID of the data product to whose data sources are to be\nretrieved.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"a301a83c-006a-48a7-a4a9-2faf3e5f7f07","name":"Data sources retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/dataSources","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","dataSources"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to whose data sources are to be\nretrieved."}]},"description":"\n<p>\nGets the specified data products data sources. This is an administrative\nend point for viewing data source connection information. This\ninformation is typically hidden from the general user,however,for the\nadministrator it allows them to see connection information that they may\nneed to edit if there are changes to their database.\n</p>"},"status":"Data sources retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"purpose\" : [ \"...\", \"...\" ],\n  \"name\" : \"...\",\n  \"dataSource\" : {\n    \"purpose\" : [ \"...\", \"...\" ],\n    \"dataReaderConfiguration\" : { },\n    \"derivedFiles\" : [ { }, { } ],\n    \"derivedFileCount\" : 12345,\n    \"dataReaderProfile\" : {\n      \"recordLayoutUri\" : \"...\"\n    },\n    \"targetJavaClass\" : \"...\",\n    \"key\" : \"...\",\n    \"recordLayout\" : {\n      \"hash\" : \"...\",\n      \"primaryKey\" : { },\n      \"layoutVariableCount\" : 12345,\n      \"templateId\" : \"...\",\n      \"id\" : \"...\",\n      \"variables\" : [ { }, { } ]\n    },\n    \"source\" : \"...\"\n  },\n  \"description\" : \"...\",\n  \"target\" : {\n    \"recordLayout\" : {\n      \"hash\" : \"...\",\n      \"primaryKey\" : { },\n      \"layoutVariableCount\" : 12345,\n      \"templateId\" : \"...\",\n      \"id\" : \"...\",\n      \"variables\" : [ { }, { } ]\n    },\n    \"tableName\" : \"...\",\n    \"dataSourceType\" : \"MONET\",\n    \"user\" : \"...\",\n    \"password\" : \"...\",\n    \"connectionString\" : \"...\",\n    \"readerConfiguration\" : {\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"tableName\" : \"...\",\n      \"type\" : \"...\",\n      \"description\" : \"...\",\n      \"user\" : \"...\",\n      \"name\" : \"...\",\n      \"id\" : \"...\",\n      \"queryResolver\" : { },\n      \"queryInput\" : { },\n      \"columnResolver\" : { },\n      \"query\" : { },\n      \"dataTypeProviderClass\" : { },\n      \"dateConfiguration\" : { },\n      \"recordLayout\" : { }\n    }\n  },\n  \"id\" : \"...\",\n  \"configuration\" : {\n    \"recordLayout\" : {\n      \"hash\" : \"...\",\n      \"primaryKey\" : { },\n      \"layoutVariableCount\" : 12345,\n      \"templateId\" : \"...\",\n      \"id\" : \"...\",\n      \"variables\" : [ { }, { } ]\n    },\n    \"tableName\" : \"...\",\n    \"dataSourceType\" : \"MYSQL\",\n    \"user\" : \"...\",\n    \"password\" : \"...\",\n    \"connectionString\" : \"...\",\n    \"readerConfiguration\" : {\n      \"password\" : \"...\",\n      \"connectionString\" : \"...\",\n      \"tableName\" : \"...\",\n      \"type\" : \"...\",\n      \"description\" : \"...\",\n      \"user\" : \"...\",\n      \"name\" : \"...\",\n      \"id\" : \"...\",\n      \"queryResolver\" : { },\n      \"queryInput\" : { },\n      \"columnResolver\" : { },\n      \"query\" : { },\n      \"dataTypeProviderClass\" : { },\n      \"dateConfiguration\" : { },\n      \"recordLayout\" : { }\n    }\n  }\n}"}],"_postman_id":"a6d47984-aa86-4a79-a971-c90527e2b93f"},{"name":"Get data product metadata. ","id":"bc4b0baf-8e43-4c13-ab11-d2e02a9a79f0","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/metadata/excel","description":"<p>\nThis will retrieve all the metadata for the specified data product in Excel\nformat. This will contain a record layout with its variables along with any\nclassifications that are referenced by the variables.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","metadata","excel"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"daa0dd7d-7127-4089-9dd8-b47055d460c0","description":{"content":"<p>Required - Catalog holding the DataProduct we want the metadata of</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"f5536736-55bc-45bc-a5d5-686c17c021e5","description":{"content":"<p>Required - DataProduct we want the metadata of</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[],"_postman_id":"bc4b0baf-8e43-4c13-ab11-d2e02a9a79f0"},{"name":"Get data product metadata. ","id":"41a3cf08-0f4b-472d-8f07-084e6461dc25","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/metadata/json","description":"<p>\nThis will retrieve all the metadata for the\nspecified data product in JSON format. This will contain a record layout with its\nvariables along with any classifications that are referenced by the\nvariables.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","metadata","json"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"b4ab664b-24b5-486f-b7ea-9e5af1f05387","description":{"content":"<p>Required - Catalog holding the DataProduct we want the metadata of</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"0ab98709-ee61-42b5-80c5-66fc634f2f9a","description":{"content":"<p>Required - DataProduct we want the metadata of</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"4a243568-3a67-41e2-aabf-8602f28caf8c","name":"a metadata wrapper","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/metadata/json","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","metadata","json"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - Catalog holding the DataProduct we want the metadata of"},{"key":"dataProductId","value":"<string>","description":"Required - DataProduct we want the metadata of"}]},"description":"\n<p>\nThis will retrieve all the metadata for the\nspecified data product in JSON format. This will contain a record layout with its\nvariables along with any classifications that are referenced by the\nvariables.\n</p>"},"status":"a metadata wrapper","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"recordLayout\" : {\n    \"hash\" : \"...\",\n    \"primaryKey\" : {\n      \"purpose\" : \"...\",\n      \"variables\" : [ { }, { } ],\n      \"variableCount\" : 12345,\n      \"cardinality\" : \"MANY\"\n    },\n    \"layoutVariableCount\" : 12345,\n    \"templateId\" : \"...\",\n    \"id\" : \"...\",\n    \"variables\" : [ {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    }, {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    } ]\n  },\n  \"classifications\" : [ {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  }, {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"NUMERIC_ALPHA\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  } ]\n}"}],"_postman_id":"41a3cf08-0f4b-472d-8f07-084e6461dc25"},{"name":"Update a variable.  ","id":"bf6bf1f3-1116-4026-8f3e-69762d7bc52b","request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"storageType\" : \"...\",\n  \"weight\" : true,\n  \"required\" : true,\n  \"startPosition\" : 12345,\n  \"frequencies\" : {\n    \"sets\" : [ {\n      \"weighted\" : true,\n      \"map\" : {\n        \"property1\" : 12345.0,\n        \"property2\" : 12345.0\n      },\n      \"weights\" : [ \"...\", \"...\" ]\n    }, {\n      \"weighted\" : true,\n      \"map\" : {\n        \"property1\" : 12345.0,\n        \"property2\" : 12345.0\n      },\n      \"weights\" : [ \"...\", \"...\" ]\n    } ],\n    \"dateProduced\" : 12345\n  },\n  \"classification\" : {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  },\n  \"index\" : 12345,\n  \"summaryStatistics\" : {\n    \"sets\" : [ {\n      \"max\" : 12345.0,\n      \"weights\" : [ \"...\", \"...\" ],\n      \"skewness\" : 12345.0,\n      \"distinctSet\" : [ { }, { } ],\n      \"missing\" : 12345.0,\n      \"kurtosis\" : 12345.0,\n      \"populated\" : 12345.0,\n      \"standardDeviation\" : 12345.0,\n      \"weighted\" : true,\n      \"mean\" : 12345.0,\n      \"median\" : 12345.0,\n      \"min\" : 12345.0,\n      \"userMissing\" : 12345.0,\n      \"distinct\" : 12345.0,\n      \"variance\" : 12345.0\n    }, {\n      \"max\" : 12345.0,\n      \"weights\" : [ \"...\", \"...\" ],\n      \"skewness\" : 12345.0,\n      \"distinctSet\" : [ { }, { } ],\n      \"missing\" : 12345.0,\n      \"kurtosis\" : 12345.0,\n      \"populated\" : 12345.0,\n      \"standardDeviation\" : 12345.0,\n      \"weighted\" : true,\n      \"mean\" : 12345.0,\n      \"median\" : 12345.0,\n      \"min\" : 12345.0,\n      \"userMissing\" : 12345.0,\n      \"distinct\" : 12345.0,\n      \"variance\" : 12345.0\n    } ],\n    \"dateProduced\" : 12345\n  },\n  \"endPosition\" : 12345,\n  \"disclosive\" : true,\n  \"decimals\" : 12345,\n  \"classificationUri\" : \"...\",\n  \"computation\" : {\n    \"computationExpressions\" : [ \"...\", \"...\" ],\n    \"variableCount\" : 12345,\n    \"variables\" : [ {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    }, {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    } ],\n    \"computationExpressionCount\" : 12345\n  },\n  \"dataType\" : \"...\",\n  \"questionText\" : \"...\",\n  \"synonyms\" : [ \"...\", \"...\" ],\n  \"measure\" : true,\n  \"fixedStorageWidth\" : 12345,\n  \"format\" : \"...\",\n  \"synonymCount\" : 12345\n}"},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variable/{variableId}","description":"<p>\nAdministrative endpoint for editing a variable.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variable","{variableId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"1128da41-2cc0-474f-85a4-6ba62cf9e65f","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"a167c139-addb-4dad-8937-744916489fac","description":{"content":"<p>Required - The ID of the data product that contains the variable.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"},{"id":"30fcb667-371f-4b97-b54d-aab2cf7494d7","description":{"content":"<p>Required - The Id or URI of the variable that is being updated.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"variableId"}]}},"response":[{"id":"2739b99c-cc71-4732-943a-9dcfef5dbcd5","name":"Process started.","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"storageType\" : \"...\",\n  \"weight\" : true,\n  \"required\" : true,\n  \"startPosition\" : 12345,\n  \"frequencies\" : {\n    \"sets\" : [ {\n      \"weighted\" : true,\n      \"map\" : {\n        \"property1\" : 12345.0,\n        \"property2\" : 12345.0\n      },\n      \"weights\" : [ \"...\", \"...\" ]\n    }, {\n      \"weighted\" : true,\n      \"map\" : {\n        \"property1\" : 12345.0,\n        \"property2\" : 12345.0\n      },\n      \"weights\" : [ \"...\", \"...\" ]\n    } ],\n    \"dateProduced\" : 12345\n  },\n  \"classification\" : {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  },\n  \"index\" : 12345,\n  \"summaryStatistics\" : {\n    \"sets\" : [ {\n      \"max\" : 12345.0,\n      \"weights\" : [ \"...\", \"...\" ],\n      \"skewness\" : 12345.0,\n      \"distinctSet\" : [ { }, { } ],\n      \"missing\" : 12345.0,\n      \"kurtosis\" : 12345.0,\n      \"populated\" : 12345.0,\n      \"standardDeviation\" : 12345.0,\n      \"weighted\" : true,\n      \"mean\" : 12345.0,\n      \"median\" : 12345.0,\n      \"min\" : 12345.0,\n      \"userMissing\" : 12345.0,\n      \"distinct\" : 12345.0,\n      \"variance\" : 12345.0\n    }, {\n      \"max\" : 12345.0,\n      \"weights\" : [ \"...\", \"...\" ],\n      \"skewness\" : 12345.0,\n      \"distinctSet\" : [ { }, { } ],\n      \"missing\" : 12345.0,\n      \"kurtosis\" : 12345.0,\n      \"populated\" : 12345.0,\n      \"standardDeviation\" : 12345.0,\n      \"weighted\" : true,\n      \"mean\" : 12345.0,\n      \"median\" : 12345.0,\n      \"min\" : 12345.0,\n      \"userMissing\" : 12345.0,\n      \"distinct\" : 12345.0,\n      \"variance\" : 12345.0\n    } ],\n    \"dateProduced\" : 12345\n  },\n  \"endPosition\" : 12345,\n  \"disclosive\" : true,\n  \"decimals\" : 12345,\n  \"classificationUri\" : \"...\",\n  \"computation\" : {\n    \"computationExpressions\" : [ \"...\", \"...\" ],\n    \"variableCount\" : 12345,\n    \"variables\" : [ {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    }, {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    } ],\n    \"computationExpressionCount\" : 12345\n  },\n  \"dataType\" : \"...\",\n  \"questionText\" : \"...\",\n  \"synonyms\" : [ \"...\", \"...\" ],\n  \"measure\" : true,\n  \"fixedStorageWidth\" : 12345,\n  \"format\" : \"...\",\n  \"synonymCount\" : 12345\n}"},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variable/{variableId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variable","{variableId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the variable."},{"key":"variableId","value":"<string>","description":"Required - The Id or URI of the variable that is being updated."}]},"description":"\n<p>\nAdministrative endpoint for editing a variable.\n</p>"},"status":"Process started.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Process started.\""}],"_postman_id":"bf6bf1f3-1116-4026-8f3e-69762d7bc52b"},{"name":"Get variable. ","id":"e0eeaa26-44df-4b5d-8619-a0ef206c6d53","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variable/{variableId}","description":"<p>\nReturns a variable with more detail than what is provided\nby the summary object. If the variable has a classification, its URI\nshould be available on the variable which can be used to retrieve the\nclassification.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variable","{variableId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"bcd4a4c8-03c3-43e2-9112-cd837a29bf64","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"3cd40eed-8e94-4264-a613-5ff3ef44fa2d","description":{"content":"<p>Required - The ID of the data product that contains the desired variable.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"},{"id":"bd421e12-dc70-400a-be07-e5d84b981dfc","description":{"content":"<p>Required - The Id or URI of the variable that is desired</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"variableId"}]}},"response":[{"id":"a7be6543-b6a0-4a39-acd1-da0cf97464ab","name":"Variable retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variable/{variableId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variable","{variableId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the desired variable."},{"key":"variableId","value":"<string>","description":"Required - The Id or URI of the variable that is desired"}]},"description":"\n<p>\nReturns a variable with more detail than what is provided\nby the summary object. If the variable has a classification, its URI\nshould be available on the variable which can be used to retrieve the\nclassification.\n</p>"},"status":"Variable retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"storageType\" : \"...\",\n  \"weight\" : true,\n  \"required\" : true,\n  \"startPosition\" : 12345,\n  \"frequencies\" : {\n    \"sets\" : [ {\n      \"weighted\" : true,\n      \"map\" : {\n        \"property1\" : 12345.0,\n        \"property2\" : 12345.0\n      },\n      \"weights\" : [ \"...\", \"...\" ]\n    }, {\n      \"weighted\" : true,\n      \"map\" : {\n        \"property1\" : 12345.0,\n        \"property2\" : 12345.0\n      },\n      \"weights\" : [ \"...\", \"...\" ]\n    } ],\n    \"dateProduced\" : 12345\n  },\n  \"classification\" : {\n    \"codes\" : [ {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    }, {\n      \"translationAidCount\" : 12345,\n      \"residual\" : true,\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"sinceVersion\" : { },\n      \"reverseTranslationAidCount\" : 12345,\n      \"childUris\" : [ \"...\", \"...\" ],\n      \"childCount\" : 12345,\n      \"category\" : { },\n      \"reverseTranslationAids\" : [ { }, { } ],\n      \"codeValue\" : \"...\",\n      \"parent\" : \"...\",\n      \"synonymCount\" : 12345,\n      \"translationAids\" : [ { }, { } ]\n    } ],\n    \"levels\" : [ {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA_NUMERIC\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    }, {\n      \"categorySetUriUri\" : \"...\",\n      \"codes\" : [ { }, { } ],\n      \"conceptUri\" : { },\n      \"conceptUriUri\" : \"...\",\n      \"codeCount\" : 12345,\n      \"depth\" : 12345,\n      \"codeDataType\" : \"ALPHA\",\n      \"codePattern\" : \"...\",\n      \"categorySetUri\" : { }\n    } ],\n    \"rootCodeCount\" : 12345,\n    \"levelCount\" : 12345\n  },\n  \"index\" : 12345,\n  \"summaryStatistics\" : {\n    \"sets\" : [ {\n      \"max\" : 12345.0,\n      \"weights\" : [ \"...\", \"...\" ],\n      \"skewness\" : 12345.0,\n      \"distinctSet\" : [ { }, { } ],\n      \"missing\" : 12345.0,\n      \"kurtosis\" : 12345.0,\n      \"populated\" : 12345.0,\n      \"standardDeviation\" : 12345.0,\n      \"weighted\" : true,\n      \"mean\" : 12345.0,\n      \"median\" : 12345.0,\n      \"min\" : 12345.0,\n      \"userMissing\" : 12345.0,\n      \"distinct\" : 12345.0,\n      \"variance\" : 12345.0\n    }, {\n      \"max\" : 12345.0,\n      \"weights\" : [ \"...\", \"...\" ],\n      \"skewness\" : 12345.0,\n      \"distinctSet\" : [ { }, { } ],\n      \"missing\" : 12345.0,\n      \"kurtosis\" : 12345.0,\n      \"populated\" : 12345.0,\n      \"standardDeviation\" : 12345.0,\n      \"weighted\" : true,\n      \"mean\" : 12345.0,\n      \"median\" : 12345.0,\n      \"min\" : 12345.0,\n      \"userMissing\" : 12345.0,\n      \"distinct\" : 12345.0,\n      \"variance\" : 12345.0\n    } ],\n    \"dateProduced\" : 12345\n  },\n  \"endPosition\" : 12345,\n  \"disclosive\" : true,\n  \"decimals\" : 12345,\n  \"classificationUri\" : \"...\",\n  \"computation\" : {\n    \"computationExpressions\" : [ \"...\", \"...\" ],\n    \"variableCount\" : 12345,\n    \"variables\" : [ {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    }, {\n      \"storageType\" : \"...\",\n      \"weight\" : true,\n      \"required\" : true,\n      \"startPosition\" : 12345,\n      \"frequencies\" : { },\n      \"classification\" : { },\n      \"index\" : 12345,\n      \"summaryStatistics\" : { },\n      \"endPosition\" : 12345,\n      \"disclosive\" : true,\n      \"decimals\" : 12345,\n      \"classificationUri\" : \"...\",\n      \"computation\" : { },\n      \"dataType\" : \"...\",\n      \"questionText\" : \"...\",\n      \"synonyms\" : [ \"...\", \"...\" ],\n      \"measure\" : true,\n      \"fixedStorageWidth\" : 12345,\n      \"format\" : \"...\",\n      \"synonymCount\" : 12345\n    } ],\n    \"computationExpressionCount\" : 12345\n  },\n  \"dataType\" : \"...\",\n  \"questionText\" : \"...\",\n  \"synonyms\" : [ \"...\", \"...\" ],\n  \"measure\" : true,\n  \"fixedStorageWidth\" : 12345,\n  \"format\" : \"...\",\n  \"synonymCount\" : 12345\n}"}],"_postman_id":"e0eeaa26-44df-4b5d-8619-a0ef206c6d53"},{"name":"Get frequencies.\n","id":"35c45041-b2e1-4fef-aacc-1e3831a6796f","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variable/{variableId}/frequencies?format=<format enum>&inject=<boolean>","description":"<p>\nGet the frequencies for a specified variable of a data\nproduct. This method is primarily available to get the frequencies in a\nformat that is consumable by the supported charting serializations. If\nthere are no frequencies available the call will return null.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variable","{variableId}","frequencies"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: <code>MTNA Dataset</code> <code>MTNA Simple Dataset</code> <code>AM Charts</code> <code>Google Charts</code>. Default value is <code>MTNA Simple Dataset</code>.</p>\n","type":"text/plain"},"key":"format","value":"<format enum>"},{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"inject","value":"<boolean>"}],"variable":[{"id":"3a03fd18-c8d8-44fd-818b-0e2a16eb92eb","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"0c7f0878-1841-4f00-8703-f5becfa06836","description":{"content":"<p>Required - The ID of the data product that contains the variable.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"},{"id":"d18aef8e-2f1c-4b52-8533-874c95fc48a8","description":{"content":"<p>Required - The Id or URI of the variable that contains the desired\nfrequencies.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"variableId"}]}},"response":[{"id":"ec53e8a8-6976-4dd8-ab95-8e1a73273473","name":"Frequencies retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variable/{variableId}/frequencies?format=<format enum>&inject=<boolean>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variable","{variableId}","frequencies"],"query":[{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts`. Default value is `MTNA Simple Dataset`."},{"key":"inject","value":"<boolean>","description":"Required"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the variable."},{"key":"variableId","value":"<string>","description":"Required - The Id or URI of the variable that contains the desired\nfrequencies."}]},"description":"\n<p>\nGet the frequencies for a specified variable of a data\nproduct. This method is primarily available to get the frequencies in a\nformat that is consumable by the supported charting serializations. If\nthere are no frequencies available the call will return null.\n</p>"},"status":"Frequencies retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"sets\" : [ { }, { } ]\n}"}],"_postman_id":"35c45041-b2e1-4fef-aacc-1e3831a6796f"},{"name":"Get frequency set.\n","id":"67a29526-5727-4f8a-be5a-1709a843502c","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variable/{variableId}/frequencies/{index}?format=<format enum>&inject=<boolean>","description":"<p>\nGet a specific set of frequencies for a specified\nvariable of a data product This method is meant to be used to get a\nspecific set of frequencies for a variable in a format that is consumable\nby the supported charting serializations.If there are no frequencies\navailable the call will return null.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variable","{variableId}","frequencies","{index}"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: <code>MTNA Dataset</code> <code>MTNA Simple Dataset</code> <code>AM Charts</code> <code>Google Charts</code>. Default value is <code>MTNA Simple Dataset</code>.</p>\n","type":"text/plain"},"key":"format","value":"<format enum>"},{"description":{"content":"<p>Required</p>\n","type":"text/plain"},"key":"inject","value":"<boolean>"}],"variable":[{"id":"409fd8ed-b3e4-45ab-84e7-47da2675b776","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"7592f8d4-9c05-496d-a3f5-77a073e686af","description":{"content":"<p>Required - The ID of the data product that contains the variable.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"},{"id":"485b1af7-6be5-4bd6-8e90-46fd30ef6231","description":{"content":"<p>Required</p>\n","type":"text/plain"},"type":"string","value":"<integer>","key":"index"},{"id":"d7353010-9c88-435a-830b-0dd165ab55d0","description":{"content":"<p>Required - The Id or URI of the variable that contains the desired\nfrequencies.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"variableId"}]}},"response":[{"id":"e58a998c-f294-4bc2-909f-5ae2f205b84d","name":"Frequencies retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variable/{variableId}/frequencies/{index}?format=<format enum>&inject=<boolean>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variable","{variableId}","frequencies","{index}"],"query":[{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts`. Default value is `MTNA Simple Dataset`."},{"key":"inject","value":"<boolean>","description":"Required"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the variable."},{"key":"index","value":"<integer>","description":"Required"},{"key":"variableId","value":"<string>","description":"Required - The Id or URI of the variable that contains the desired\nfrequencies."}]},"description":"\n<p>\nGet a specific set of frequencies for a specified\nvariable of a data product This method is meant to be used to get a\nspecific set of frequencies for a variable in a format that is consumable\nby the supported charting serializations.If there are no frequencies\navailable the call will return null.\n</p>"},"status":"Frequencies retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{ }"}],"_postman_id":"67a29526-5727-4f8a-be5a-1709a843502c"},{"name":"Get variableGroup. ","id":"f0a3f32c-03f4-4393-a69d-45faf5051bc1","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variablegroup/{variableGroupId}","description":"<p>\nReturns a variable group with more detail than what is provided by the\nsummary object.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variablegroup","{variableGroupId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"42481213-6c5f-4711-9145-273109fabf1c","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"1055e251-f0f3-48d7-80ad-9080db596ad0","description":{"content":"<p>Required - The ID of the data product that contains the desired variable.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"},{"id":"a239fec6-b72f-4215-8f17-d115285ebece","description":{"content":"<p>Required - The Id or URI of the variable that is desired</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"variableGroupId"}]}},"response":[{"id":"af18e406-1558-4937-a02f-5b11d42eedfe","name":"VariableGroup retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variablegroup/{variableGroupId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variablegroup","{variableGroupId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the desired variable."},{"key":"variableGroupId","value":"<string>","description":"Required - The Id or URI of the variable that is desired"}]},"description":"\n<p>\nReturns a variable group with more detail than what is provided by the\nsummary object.\n</p>"},"status":"VariableGroup retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"purpose\" : \"...\",\n  \"variables\" : [ {\n    \"storageType\" : \"...\",\n    \"weight\" : true,\n    \"required\" : true,\n    \"startPosition\" : 12345,\n    \"frequencies\" : {\n      \"sets\" : [ { }, { } ],\n      \"dateProduced\" : 12345\n    },\n    \"classification\" : {\n      \"codes\" : [ { }, { } ],\n      \"levels\" : [ { }, { } ],\n      \"rootCodeCount\" : 12345,\n      \"levelCount\" : 12345\n    },\n    \"index\" : 12345,\n    \"summaryStatistics\" : {\n      \"sets\" : [ { }, { } ],\n      \"dateProduced\" : 12345\n    },\n    \"endPosition\" : 12345,\n    \"disclosive\" : true,\n    \"decimals\" : 12345,\n    \"classificationUri\" : \"...\",\n    \"computation\" : {\n      \"computationExpressions\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"variables\" : [ { }, { } ],\n      \"computationExpressionCount\" : 12345\n    },\n    \"dataType\" : \"...\",\n    \"questionText\" : \"...\",\n    \"synonyms\" : [ \"...\", \"...\" ],\n    \"measure\" : true,\n    \"fixedStorageWidth\" : 12345,\n    \"format\" : \"...\",\n    \"synonymCount\" : 12345\n  }, {\n    \"storageType\" : \"...\",\n    \"weight\" : true,\n    \"required\" : true,\n    \"startPosition\" : 12345,\n    \"frequencies\" : {\n      \"sets\" : [ { }, { } ],\n      \"dateProduced\" : 12345\n    },\n    \"classification\" : {\n      \"codes\" : [ { }, { } ],\n      \"levels\" : [ { }, { } ],\n      \"rootCodeCount\" : 12345,\n      \"levelCount\" : 12345\n    },\n    \"index\" : 12345,\n    \"summaryStatistics\" : {\n      \"sets\" : [ { }, { } ],\n      \"dateProduced\" : 12345\n    },\n    \"endPosition\" : 12345,\n    \"disclosive\" : true,\n    \"decimals\" : 12345,\n    \"classificationUri\" : \"...\",\n    \"computation\" : {\n      \"computationExpressions\" : [ \"...\", \"...\" ],\n      \"variableCount\" : 12345,\n      \"variables\" : [ { }, { } ],\n      \"computationExpressionCount\" : 12345\n    },\n    \"dataType\" : \"...\",\n    \"questionText\" : \"...\",\n    \"synonyms\" : [ \"...\", \"...\" ],\n    \"measure\" : true,\n    \"fixedStorageWidth\" : 12345,\n    \"format\" : \"...\",\n    \"synonymCount\" : 12345\n  } ],\n  \"variableCount\" : 12345,\n  \"cardinality\" : \"MANY\"\n}"}],"_postman_id":"f0a3f32c-03f4-4393-a69d-45faf5051bc1"},{"name":"Get variableGroup summaries. ","id":"043235f9-a551-41fb-a365-01f214b4e352","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variablegroups?groups=<string array>","description":"<p>\nGet the variableGroups of a specific data\nproduct. Returns a list of summary objects about any variableGroups that\nare used in the specified data product. These summaries contain both the\nvariableGroup URI and ID, which can be used to get more detailed\ninformation about the variableGroup.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variablegroups"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"groups","value":"<string array>"}],"variable":[{"id":"8224470c-a2c4-480e-bb87-c317bdf13d59","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"7338f587-2316-4298-a14e-ccf84bb26605","description":{"content":"<p>Required - The ID of the data product that contains the desired\nvariables.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"685ff564-10cf-45ad-a54e-848ddd3a7c26","name":"VariableGroups retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variablegroups?groups=<string array>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variablegroups"],"query":[{"key":"groups","value":"<string array>","description":"Optional"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the desired\nvariables."}]},"description":"\n<p>\nGet the variableGroups of a specific data\nproduct. Returns a list of summary objects about any variableGroups that\nare used in the specified data product. These summaries contain both the\nvariableGroup URI and ID, which can be used to get more detailed\ninformation about the variableGroup.\n</p>"},"status":"VariableGroups retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"[ {\n  \"keywords\" : \"array[string]\",\n  \"variableIds\" : \"array[string]\",\n  \"description\" : \"string\",\n  \"id\" : \"string\",\n  \"label\" : \"string\",\n  \"uri\" : \"string\"\n} ]"}],"_postman_id":"043235f9-a551-41fb-a365-01f214b4e352"},{"name":"Get variable summaries.","id":"10794299-e9b7-4d8e-86b6-45168e1b070a","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variables?collimit=<integer>&coloffset=<integer>&cols=<string>","description":"<p>\nGet the variables of a specific data product. Returns a list of summary\nobjects about any variables that are used in the specified data product.\nThese summaries contain both the variable URI and ID, which can be used\nto get more detailed information about the variable.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variables"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - Limits the number of columns returned.</p>\n","type":"text/plain"},"key":"collimit","value":"<integer>"},{"description":{"content":"<p>Optional - Determines which column to start at.</p>\n","type":"text/plain"},"key":"coloffset","value":"<integer>"},{"description":{"content":"<p>Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes.</p>\n","type":"text/plain"},"key":"cols","value":"<string>"}],"variable":[{"id":"30889305-52f8-4727-bf0c-e1506eb58d28","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"03a2a843-7596-4b10-b08e-666490efc12a","description":{"content":"<p>Required - The ID of the data product that contains the desired\nvariables.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"e6177575-6fd9-41db-beb4-812002739b75","name":"Variables retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variables?collimit=<integer>&coloffset=<integer>&cols=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variables"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the desired\nvariables."}]},"description":"\n<p>\nGet the variables of a specific data product. Returns a list of summary\nobjects about any variables that are used in the specified data product.\nThese summaries contain both the variable URI and ID, which can be used\nto get more detailed information about the variable.\n</p>"},"status":"Variables retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"[ {\n  \"keywords\" : \"array[string]\",\n  \"dataType\" : \"string\",\n  \"classificationUri\" : \"string\",\n  \"description\" : \"string\",\n  \"weight\" : \"boolean\",\n  \"index\" : \"integer\",\n  \"label\" : \"string\",\n  \"uri\" : \"string\",\n  \"classificationId\" : \"string\",\n  \"required\" : \"boolean\",\n  \"questionText\" : \"string\",\n  \"measure\" : \"boolean\",\n  \"name\" : \"string\",\n  \"storageType\" : \"string\",\n  \"id\" : \"string\"\n} ]"}],"_postman_id":"10794299-e9b7-4d8e-86b6-45168e1b070a"},{"name":"Get variable count. ","id":"6ef4565d-01ba-4f44-b01b-b8e0b3dd3d88","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variables/count?collimit=<integer>&coloffset=<integer>&cols=<string>","description":"<p>\nGet the count of the variables of a specific data product based on the\nspecified query parameters.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variables","count"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - Limits the number of columns returned.</p>\n","type":"text/plain"},"key":"collimit","value":"<integer>"},{"description":{"content":"<p>Optional - Determines which column to start at.</p>\n","type":"text/plain"},"key":"coloffset","value":"<integer>"},{"description":{"content":"<p>Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes.</p>\n","type":"text/plain"},"key":"cols","value":"<string>"}],"variable":[{"id":"88515aa7-849b-4f81-9d62-bb948299307f","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"ce686369-6f07-465e-b310-5dfaf44d2b6c","description":{"content":"<p>Required - The ID of the data product that contains the desired\nvariables.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"e1ad1466-ae4a-4ac1-85f2-8c07ef88c5c5","name":"Variables retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variables/count?collimit=<integer>&coloffset=<integer>&cols=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variables","count"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the desired\nvariables."}]},"description":"\n<p>\nGet the count of the variables of a specific data product based on the\nspecified query parameters.\n</p>"},"status":"Variables retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"type\" : \"integer\",\n  \"description\" : \"Variables retrieved successfully.\",\n  \"format\" : \"int32\"\n}"}],"_postman_id":"6ef4565d-01ba-4f44-b01b-b8e0b3dd3d88"},{"name":"Get variable profiles.\n","id":"a3af71ab-5738-456e-b381-cb512c62e988","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variables/profile?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","description":"<p>\nThis will run analysis on any variables specified\nin the query and return a complete profile (both summary statistics and\nfrequencies if applicable) about the variables. This will take the\nprovided select query into account, any filters (where clause) will be\nused to to determine the profile.\n\n</p><p>This should be used with care, as profiling on the data set can occur\nwhich could take a long time on large data sets. This is also meant to\ngive a complete profile picture so frequencies for numeric variables that\nare unique will result in a single frequency for each value being\nreturned.</p>\n<p></p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variables","profile"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - Limits the number of columns returned.</p>\n","type":"text/plain"},"key":"collimit","value":"<integer>"},{"description":{"content":"<p>Optional - Determines which column to start at.</p>\n","type":"text/plain"},"key":"coloffset","value":"<integer>"},{"description":{"content":"<p>Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes.</p>\n","type":"text/plain"},"key":"cols","value":"<string>"},{"description":{"content":"<p>Required - Flag specifying whether the total row count should be returned along side\nthe data.</p>\n","type":"text/plain"},"key":"count","value":"<boolean>"},{"description":{"content":"<p>Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: <code>MTNA Dataset</code> <code>MTNA Simple Dataset</code> <code>AM Charts</code> <code>Google Charts</code> <code>Plotly Bar Chart</code> <code>Plotly Boxplot</code> <code>Plotly Bubble Chart</code> <code>Plotly Histogram</code> <code>Plotly Pie Chart</code> <code>Plotly Scatterplot</code>. Default value is <code>MTNA Simple Dataset</code>.</p>\n","type":"text/plain"},"key":"format","value":"<format enum>"},{"description":{"content":"<p>Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by.</p>\n","type":"text/plain"},"key":"groupby","value":"<string array>"},{"description":{"content":"<p>Required - Flag specifying to inject codes into the returned records.</p>\n","type":"text/plain"},"key":"inject","value":"<boolean>"},{"description":{"content":"<p>Optional - The limit of records to return.</p>\n","type":"text/plain"},"key":"limit","value":"<number>"},{"description":{"content":"<p>Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet.</p>\n","type":"text/plain"},"key":"lock","value":"<string>"},{"description":{"content":"<p>Required - Flag specifying if metadata should be returned along side the data.</p>\n","type":"text/plain"},"key":"metadata","value":"<boolean>"},{"description":{"content":"<p>Optional - The record to start at.</p>\n","type":"text/plain"},"key":"offset","value":"<number>"},{"description":{"content":"<p>Optional - Allows the data to be reordered in ascending or descending order by column</p>\n","type":"text/plain"},"key":"orderby","value":"<string>"},{"description":{"content":"<p>Optional - The IDs of variables to use as weights in the resulting data.</p>\n","type":"text/plain"},"key":"weights","value":"<string array>"},{"description":{"content":"<p>Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause</p>\n","type":"text/plain"},"key":"where","value":"<string>"}],"variable":[{"id":"81137ccd-e86d-4833-a6f5-c4e76e35d7ee","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"983fbcc1-fad0-40d3-aaad-53d9858af53f","description":{"content":"<p>Required - The ID of the data product that contains the variable.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"e602fee9-291b-4558-817d-9040ea9bd2d5","name":"Profile retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/catalog/{catalogId}/{dataProductId}/variables/profile?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","catalog","{catalogId}","{dataProductId}","variables","profile"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product that contains the variable."}]},"description":"\n<p>\nThis will run analysis on any variables specified\nin the query and return a complete profile (both summary statistics and\nfrequencies if applicable) about the variables. This will take the\nprovided select query into account, any filters (where clause) will be\nused to to determine the profile.\n\nThis should be used with care, as profiling on the data set can occur\nwhich could take a long time on large data sets. This is also meant to\ngive a complete profile picture so frequencies for numeric variables that\nare unique will result in a single frequency for each value being\nreturned.\n</p>"},"status":"Profile retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"frequencies\" : {\n    \"sets\" : [ { }, { } ]\n  },\n  \"summaryStatistics\" : {\n    \"sets\" : [ {\n      \"max\" : 12345.0,\n      \"weights\" : [ \"...\", \"...\" ],\n      \"skewness\" : 12345.0,\n      \"distinctSet\" : [ { }, { } ],\n      \"missing\" : 12345.0,\n      \"kurtosis\" : 12345.0,\n      \"populated\" : 12345.0,\n      \"standardDeviation\" : 12345.0,\n      \"weighted\" : true,\n      \"mean\" : 12345.0,\n      \"median\" : 12345.0,\n      \"min\" : 12345.0,\n      \"userMissing\" : 12345.0,\n      \"distinct\" : 12345.0,\n      \"variance\" : 12345.0\n    }, {\n      \"max\" : 12345.0,\n      \"weights\" : [ \"...\", \"...\" ],\n      \"skewness\" : 12345.0,\n      \"distinctSet\" : [ { }, { } ],\n      \"missing\" : 12345.0,\n      \"kurtosis\" : 12345.0,\n      \"populated\" : 12345.0,\n      \"standardDeviation\" : 12345.0,\n      \"weighted\" : true,\n      \"mean\" : 12345.0,\n      \"median\" : 12345.0,\n      \"min\" : 12345.0,\n      \"userMissing\" : 12345.0,\n      \"distinct\" : 12345.0,\n      \"variance\" : 12345.0\n    } ],\n    \"dateProduced\" : 12345\n  }\n}"}],"_postman_id":"a3af71ab-5738-456e-b381-cb512c62e988"}],"id":"a3140816-31ed-410a-838e-d3f6d6892150","_postman_id":"a3140816-31ed-410a-838e-d3f6d6892150","description":""},{"name":"PackagingController","item":[{"name":"Get bundle. ","id":"67a70978-0988-4bca-ad22-c767eeb5220c","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/option/bundle/{bundleId}","description":"<p>\nWhen a client wants to get a particular bundle they can use this endpoint to\nretrieve a list of OptionSets that are pre-configured to work with\neach other.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","option","bundle","{bundleId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"5423d84d-1771-48c3-962f-2669f22c9273","description":{"content":"<p>Required - The ID of the bundle whose options are desired</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"bundleId"}]}},"response":[{"id":"24c52f99-362d-41fa-9fdb-6bcef4f40482","name":"Data Science Bundle","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/option/bundle/{bundleId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","option","bundle","{bundleId}"],"variable":[{"key":"bundleId","value":"<string>","description":"Required - The ID of the bundle whose options are desired"}]},"description":"\n<p>\nWhen a client wants to get a particular bundle they can use this endpoint to\nretrieve a list of OptionSets that are pre-configured to work with\neach other.\n</p>"},"status":"Options retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Data Science Bundle\",\n  \"value\" : [ {\n    \"formatType\" : \"CSV Options\",\n    \"format\" : \"data-delimited\",\n    \"id\" : \"9d2e85d6-1023-4b86-99a6-dd09cf687567\",\n    \"options\" : [ {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true there will be a header row in the file that contains the variable names, otherwise no header row will be included.\",\n      \"name\" : \"header\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The desired format of the delimited file.\",\n      \"name\" : \"format\",\n      \"options\" : [ \"CSV\", \"MySQL\", \"Oracle\", \"PostgreSQL\", \"TDF\" ],\n      \"required\" : true,\n      \"value\" : \"CSV\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    } ],\n    \"type\" : \"DATA\"\n  }, {\n    \"formatType\" : \"Sas Options\",\n    \"format\" : \"script-sas\",\n    \"id\" : \"2db6f29a-f2e3-44d3-8530-193ceb7914bb\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"9d2e85d6-1023-4b86-99a6-dd09cf687567\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SPSS Options\",\n    \"format\" : \"script-spss\",\n    \"id\" : \"233d27e4-ca05-4224-b1f4-719a77efbae2\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"9d2e85d6-1023-4b86-99a6-dd09cf687567\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"Stata Options\",\n    \"format\" : \"script-stata\",\n    \"id\" : \"bd30040b-5aa2-4620-beb5-9bd0fd5723ff\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"9d2e85d6-1023-4b86-99a6-dd09cf687567\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  } ]\n}"},{"id":"55b45b09-68ef-4792-a8ca-d56334095b99","name":"DBA Bundle","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/option/bundle/{bundleId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","option","bundle","{bundleId}"],"variable":[{"key":"bundleId","value":"<string>","description":"Required - The ID of the bundle whose options are desired"}]},"description":"\n<p>\nWhen a client wants to get a particular bundle they can use this endpoint to\nretrieve a list of OptionSets that are pre-configured to work with\neach other.\n</p>"},"status":"Options retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"DBA Bundle\",\n  \"value\" : [ {\n    \"formatType\" : \"CSV Options\",\n    \"format\" : \"data-delimited\",\n    \"id\" : \"dd6c7cd8-9612-4ab2-a6d4-490800be4260\",\n    \"options\" : [ {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true there will be a header row in the file that contains the variable names, otherwise no header row will be included.\",\n      \"name\" : \"header\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The desired format of the delimited file.\",\n      \"name\" : \"format\",\n      \"options\" : [ \"CSV\", \"MySQL\", \"Oracle\", \"PostgreSQL\", \"TDF\" ],\n      \"required\" : true,\n      \"value\" : \"MySQL\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    } ],\n    \"type\" : \"DATA\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"7ddd4c83-7b1d-49f3-8072-6aaa2d25d361\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"MYSQL\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  } ]\n}"},{"id":"7d2a9422-78e7-4353-9712-e98c0e4725cc","name":"Power User Bundle","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/option/bundle/{bundleId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","option","bundle","{bundleId}"],"variable":[{"key":"bundleId","value":"<string>","description":"Required - The ID of the bundle whose options are desired"}]},"description":"\n<p>\nWhen a client wants to get a particular bundle they can use this endpoint to\nretrieve a list of OptionSets that are pre-configured to work with\neach other.\n</p>"},"status":"Options retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Power User Bundle\",\n  \"value\" : [ {\n    \"formatType\" : \"CSV Options\",\n    \"format\" : \"data-delimited\",\n    \"id\" : \"8812665a-340f-4160-aa3e-a8f1fe881144\",\n    \"options\" : [ {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true there will be a header row in the file that contains the variable names, otherwise no header row will be included.\",\n      \"name\" : \"header\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The desired format of the delimited file.\",\n      \"name\" : \"format\",\n      \"options\" : [ \"CSV\", \"MySQL\", \"Oracle\", \"PostgreSQL\", \"TDF\" ],\n      \"required\" : true,\n      \"value\" : \"CSV\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    } ],\n    \"type\" : \"DATA\"\n  }, {\n    \"formatType\" : \"PDF Codebook Options\",\n    \"format\" : \"pdf-codebook\",\n    \"id\" : \"eb80b28f-530a-4287-ad85-84b79a180abc\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    } ],\n    \"type\" : \"DOCUMENT\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"e3ddfed8-c15c-436b-bf43-65025c0116a4\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"MYSQL\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"Sas Options\",\n    \"format\" : \"script-sas\",\n    \"id\" : \"e4cc9362-e7ce-404e-9268-4880486dca4d\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"8812665a-340f-4160-aa3e-a8f1fe881144\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SPSS Options\",\n    \"format\" : \"script-spss\",\n    \"id\" : \"5ac70eb8-b6ee-4864-9cda-d670ffc75b75\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"8812665a-340f-4160-aa3e-a8f1fe881144\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"Stata Options\",\n    \"format\" : \"script-stata\",\n    \"id\" : \"cf9e73ad-7655-4e7c-bf89-87c8065f9e8f\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"8812665a-340f-4160-aa3e-a8f1fe881144\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  } ]\n}"},{"id":"9d1049e6-09df-4a6b-b626-f8670dfb883a","name":"Open Data Bundle","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/option/bundle/{bundleId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","option","bundle","{bundleId}"],"variable":[{"key":"bundleId","value":"<string>","description":"Required - The ID of the bundle whose options are desired"}]},"description":"\n<p>\nWhen a client wants to get a particular bundle they can use this endpoint to\nretrieve a list of OptionSets that are pre-configured to work with\neach other.\n</p>"},"status":"Options retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Open Data Bundle\",\n  \"value\" : [ {\n    \"formatType\" : \"CSV Options\",\n    \"format\" : \"data-delimited\",\n    \"id\" : \"a25021fc-cc27-4315-aa5b-8001fddb7c8b\",\n    \"options\" : [ {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true there will be a header row in the file that contains the variable names, otherwise no header row will be included.\",\n      \"name\" : \"header\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The desired format of the delimited file.\",\n      \"name\" : \"format\",\n      \"options\" : [ \"CSV\", \"MySQL\", \"Oracle\", \"PostgreSQL\", \"TDF\" ],\n      \"required\" : true,\n      \"value\" : \"CSV\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    } ],\n    \"type\" : \"DATA\"\n  }, {\n    \"formatType\" : \"DDI Codebook Options\",\n    \"format\" : \"ddi-codebook\",\n    \"id\" : \"89150335-d89d-4f8c-9fde-497c988b6abf\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true the XML will be pretty printed (multiple lines with indentations), otherwise the content will be on a single line.\",\n      \"name\" : \"pretty print\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"This attribute holds the agency name of the creator or maintainer of the codeBook instance as a whole, and is designed to support forward compatibility with DDI-Lifecycle. Recommend the agency name as filed with the DDI Agency ID Registry with optional additional sub-agency extensions.\",\n      \"name\" : \"agency\",\n      \"required\" : true,\n      \"value\" : \"us.mtna\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Specifies the language that the CodeBook is in.\",\n      \"name\" : \"language\",\n      \"required\" : false,\n      \"value\" : \"en\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"a25021fc-cc27-4315-aa5b-8001fddb7c8b\"\n    } ],\n    \"type\" : \"METADATA\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"21389f5e-a00d-4530-b435-4aab8af986c1\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"MYSQL\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  } ]\n}"},{"id":"ad18f52a-f5a2-4318-9b3f-eaf9fd82935d","name":"Comprehensive Bundle","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/option/bundle/{bundleId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","option","bundle","{bundleId}"],"variable":[{"key":"bundleId","value":"<string>","description":"Required - The ID of the bundle whose options are desired"}]},"description":"\n<p>\nWhen a client wants to get a particular bundle they can use this endpoint to\nretrieve a list of OptionSets that are pre-configured to work with\neach other.\n</p>"},"status":"Options retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Comprehensive Bundle\",\n  \"value\" : [ {\n    \"formatType\" : \"CSV Options\",\n    \"format\" : \"data-delimited\",\n    \"id\" : \"db534a6b-a99c-43a5-a859-f72d5efa2575\",\n    \"options\" : [ {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true there will be a header row in the file that contains the variable names, otherwise no header row will be included.\",\n      \"name\" : \"header\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The desired format of the delimited file.\",\n      \"name\" : \"format\",\n      \"options\" : [ \"CSV\", \"MySQL\", \"Oracle\", \"PostgreSQL\", \"TDF\" ],\n      \"required\" : true,\n      \"value\" : \"CSV\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    } ],\n    \"type\" : \"DATA\"\n  }, {\n    \"formatType\" : \"Excel Options\",\n    \"format\" : \"data-excel\",\n    \"id\" : \"33925b87-d6b7-4fe1-a1f0-3260e14b7989\",\n    \"options\" : [ {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true the file will be written as an .xlsx file (Excel 2007 onward), otherwise it will be written as and .xls file.\",\n      \"name\" : \"xlsx\",\n      \"required\" : true,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the sheet in the workbook being created.\",\n      \"name\" : \"sheet\",\n      \"required\" : false,\n      \"value\" : \"Sheet 1\"\n    } ],\n    \"type\" : \"DATA\"\n  }, {\n    \"formatType\" : \"DDI Codebook Options\",\n    \"format\" : \"ddi-codebook\",\n    \"id\" : \"b19e804c-c5b9-4acf-a91b-b9181ac5601f\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true the XML will be pretty printed (multiple lines with indentations), otherwise the content will be on a single line.\",\n      \"name\" : \"pretty print\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"This attribute holds the agency name of the creator or maintainer of the codeBook instance as a whole, and is designed to support forward compatibility with DDI-Lifecycle. Recommend the agency name as filed with the DDI Agency ID Registry with optional additional sub-agency extensions.\",\n      \"name\" : \"agency\",\n      \"required\" : true,\n      \"value\" : \"us.mtna\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Specifies the language that the CodeBook is in.\",\n      \"name\" : \"language\",\n      \"required\" : false,\n      \"value\" : \"en\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"db534a6b-a99c-43a5-a859-f72d5efa2575\"\n    } ],\n    \"type\" : \"METADATA\"\n  }, {\n    \"formatType\" : \"PDF Codebook Options\",\n    \"format\" : \"pdf-codebook\",\n    \"id\" : \"aa7f5adf-a526-4e93-8a9f-26b56cc09392\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    } ],\n    \"type\" : \"DOCUMENT\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"a8540fc1-0622-4c8c-a156-c2da384225e4\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"MICROSOFT\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"af154e96-81c4-418d-9a9a-22d0c708b330\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"MONET\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"ff441178-a509-4b62-9548-e998f91f2be6\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"MYSQL\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"416ce692-7df6-42c4-9e92-72f5db9fa275\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"ORACLE\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"2b616bc5-2b2b-402e-9df4-2e43516eec09\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"POSTGRE\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"05875e0d-4395-439b-8414-2d087b6c278d\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"VERTICA\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"7705f3e9-b377-4d12-ad81-54763f5aab58\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"H2\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"84c7ebbc-c5f6-4a69-99a2-4a6fcb5f2da8\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"VIRTUOSO\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"Sas Options\",\n    \"format\" : \"script-sas\",\n    \"id\" : \"3c5659b8-7b90-4131-83c9-7c3b83098a24\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"db534a6b-a99c-43a5-a859-f72d5efa2575\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"SPSS Options\",\n    \"format\" : \"script-spss\",\n    \"id\" : \"d8e1f07a-459e-4ba6-9297-6c06a99c5068\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"db534a6b-a99c-43a5-a859-f72d5efa2575\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }, {\n    \"formatType\" : \"Stata Options\",\n    \"format\" : \"script-stata\",\n    \"id\" : \"312dfe08-e7ba-43c4-a128-605256fc599d\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false,\n      \"value\" : \"db534a6b-a99c-43a5-a859-f72d5efa2575\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  } ]\n}"}],"_postman_id":"67a70978-0988-4bca-ad22-c767eeb5220c"},{"name":"Get all packaging bundles. ","id":"20e76c67-fd6e-4c7a-bc0c-0414a90546f7","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/option/bundles","description":"<p>\nThese are groups of related OptionSets grouped together with some\npre-configuration already done. This can ensure that users can get a set of\noptions quickly and already set up with all the options needed.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","option","bundles"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"bf94d8a0-8784-4c78-bff6-e9b7a5c91561","name":"Option bundles retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/option/bundles","description":"\n<p>\nThese are groups of related OptionSets grouped together with some\npre-configuration already done. This can ensure that users can get a set of\noptions quickly and already set up with all the options needed.\n</p>"},"status":"Option bundles retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"id\" : \"...\",\n  \"type\" : \"TABULATE\",\n  \"description\" : \"...\",\n  \"includedFormats\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"name\" : \"...\",\n  \"options\" : [ {\n    \"id\" : \"...\",\n    \"contentType\" : \"...\",\n    \"format\" : \"...\",\n    \"options\" : [ {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"INTEGER\"\n    }, {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"FLOAT\"\n    } ],\n    \"type\" : \"METADATA\",\n    \"fileExtension\" : \"...\"\n  }, {\n    \"id\" : \"...\",\n    \"contentType\" : \"...\",\n    \"format\" : \"...\",\n    \"options\" : [ {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"FLOAT\"\n    }, {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"BIG_DECIMAL\"\n    } ],\n    \"type\" : \"DATA\",\n    \"fileExtension\" : \"...\"\n  } ]\n}"}],"_postman_id":"20e76c67-fd6e-4c7a-bc0c-0414a90546f7"},{"name":"Get select packaging bundles. ","id":"05391946-b11a-4719-87a2-383ba29f68cc","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/option/bundles/select","description":"<p>\nPackaging bundles are groups of related OptionSets grouped together\nwith some pre-configuration already done. This can ensure that users can get\na set of options quickly and already set up with all the options needed.\n\n</p><p>The packaging bundles returned are meant to be used with selections (row\nlevel data).</p>\n<p></p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","option","bundles","select"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"7bdba390-71f6-4707-b9dc-82c726d83527","name":"Option bundles retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/option/bundles/select","description":"\n<p>\nPackaging bundles are groups of related OptionSets grouped together\nwith some pre-configuration already done. This can ensure that users can get\na set of options quickly and already set up with all the options needed.\n\nThe packaging bundles returned are meant to be used with selections (row\nlevel data).\n</p>"},"status":"Option bundles retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"id\" : \"...\",\n  \"type\" : \"TABULATE\",\n  \"description\" : \"...\",\n  \"includedFormats\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"name\" : \"...\",\n  \"options\" : [ {\n    \"id\" : \"...\",\n    \"contentType\" : \"...\",\n    \"format\" : \"...\",\n    \"options\" : [ {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"INTEGER\"\n    }, {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"FLOAT\"\n    } ],\n    \"type\" : \"METADATA\",\n    \"fileExtension\" : \"...\"\n  }, {\n    \"id\" : \"...\",\n    \"contentType\" : \"...\",\n    \"format\" : \"...\",\n    \"options\" : [ {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"FLOAT\"\n    }, {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"BIG_DECIMAL\"\n    } ],\n    \"type\" : \"DATA\",\n    \"fileExtension\" : \"...\"\n  } ]\n}"}],"_postman_id":"05391946-b11a-4719-87a2-383ba29f68cc"},{"name":"Get tabulation packaging bundles. ","id":"432890aa-6c7f-480b-b4d2-2e9222717e3f","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/option/bundles/tabulate","description":"<p>\nPackaging bundles are groups of related OptionSets grouped together\nwith some pre-configuration already done. This can ensure that users can get\na set of options quickly and already set up with all the options needed.\n\n</p><p>The packaging bundles returned are meant to be used with tabulations.</p>\n<p></p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","option","bundles","tabulate"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"86007caa-207b-45db-b4a1-4ec50038fac6","name":"Option bundles retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/option/bundles/tabulate","description":"\n<p>\nPackaging bundles are groups of related OptionSets grouped together\nwith some pre-configuration already done. This can ensure that users can get\na set of options quickly and already set up with all the options needed.\n\nThe packaging bundles returned are meant to be used with tabulations.\n</p>"},"status":"Option bundles retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"id\" : \"...\",\n  \"type\" : \"TABULATE\",\n  \"description\" : \"...\",\n  \"includedFormats\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"name\" : \"...\",\n  \"options\" : [ {\n    \"id\" : \"...\",\n    \"contentType\" : \"...\",\n    \"format\" : \"...\",\n    \"options\" : [ {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"INTEGER\"\n    }, {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"FLOAT\"\n    } ],\n    \"type\" : \"METADATA\",\n    \"fileExtension\" : \"...\"\n  }, {\n    \"id\" : \"...\",\n    \"contentType\" : \"...\",\n    \"format\" : \"...\",\n    \"options\" : [ {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"FLOAT\"\n    }, {\n      \"name\" : \"...\",\n      \"description\" : \"...\",\n      \"options\" : [ { }, { } ],\n      \"required\" : true,\n      \"value\" : { },\n      \"dataType\" : \"BIG_DECIMAL\"\n    } ],\n    \"type\" : \"DATA\",\n    \"fileExtension\" : \"...\"\n  } ]\n}"}],"_postman_id":"432890aa-6c7f-480b-b4d2-2e9222717e3f"},{"name":"Get all packaging options. ","id":"756d2f0e-3df8-4851-9984-99eb336c3b08","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/options","description":"<p>\nThis is a starting point for clients to identify all the possible packaging\nformats that are available.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","options"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"1be1fa43-38c8-4ec1-8ae4-6b02bca23f4d","name":"Options retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/options","description":"\n<p>\nThis is a starting point for clients to identify all the possible packaging\nformats that are available.\n</p>"},"status":"Options retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"metadata\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"scripts\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"data\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"documents\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ]\n}"}],"_postman_id":"756d2f0e-3df8-4851-9984-99eb336c3b08"},{"name":"Get classification packaging options. ","id":"15efafb1-cecd-47cd-a086-3add55c1453d","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/options/classification","description":"<p>\nThis is a starting point for clients to identify all the possible packaging\nformats that are available.\n\n</p><p>The options returned are meant to be used with classification metadata.</p>\n<p></p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","options","classification"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"7bee24d6-c4f4-4e82-9362-07c530392aa0","name":"Options retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/options/classification","description":"\n<p>\nThis is a starting point for clients to identify all the possible packaging\nformats that are available.\n\nThe options returned are meant to be used with classification metadata.\n</p>"},"status":"Options retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"metadata\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"scripts\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"data\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"documents\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ]\n}"}],"_postman_id":"15efafb1-cecd-47cd-a086-3add55c1453d"},{"name":"Get select packaging options. ","id":"efd51ad2-68c8-420b-be50-ff0ad9781cc4","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/options/select","description":"<p>\nThis is a starting point for clients to identify all the possible packaging\nformats that are available.\n\n</p><p>The options returned are meant to be used with selections (row level data).</p>\n<p></p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","options","select"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"7a45d876-6cf4-4622-9a00-bb6d9155bcf4","name":"Options retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/options/select","description":"\n<p>\nThis is a starting point for clients to identify all the possible packaging\nformats that are available.\n\nThe options returned are meant to be used with selections (row level data).\n</p>"},"status":"Options retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"metadata\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"scripts\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"data\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"documents\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ]\n}"}],"_postman_id":"efd51ad2-68c8-420b-be50-ff0ad9781cc4"},{"name":"Get tabulation packaging options. ","id":"a22a750f-0d86-411b-a24e-6e89a9f1a8fc","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/options/tabulate","description":"<p>\nThis is a starting point for clients to identify all the possible packaging\nformats that are available.\n\n</p><p>The options returned are meant to be used with tabulations.</p>\n<p></p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","options","tabulate"],"host":["192","168","1","3"],"query":[],"variable":[]}},"response":[{"id":"d27fa638-8574-4a08-8d1a-ba6593814aa9","name":"Options retrieved successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/options/tabulate","description":"\n<p>\nThis is a starting point for clients to identify all the possible packaging\nformats that are available.\n\nThe options returned are meant to be used with tabulations.\n</p>"},"status":"Options retrieved successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"metadata\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"scripts\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"data\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ],\n  \"documents\" : [ {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  }, {\n    \"id\" : \"...\",\n    \"description\" : \"...\",\n    \"name\" : \"...\",\n    \"options\" : { }\n  } ]\n}"}],"_postman_id":"a22a750f-0d86-411b-a24e-6e89a9f1a8fc"},{"name":"Get option details. ","id":"b45bb784-0025-464c-b07e-c01f6d6161e8","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","description":"<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","options","{formatId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"280450f5-3f7d-46b0-92d6-ba16111bd5f1","description":{"content":"<p>Required - The ID of the format whose options are desired</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"formatId"}]}},"response":[{"id":"1dedf6d2-281b-42bc-98b2-d44a73b00902","name":"Delimited Data","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","options","{formatId}"],"variable":[{"key":"formatId","value":"<string>","description":"Required - The ID of the format whose options are desired"}]},"description":"\n<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Delimited Data\",\n  \"value\" : {\n    \"formatType\" : \"CSV Options\",\n    \"format\" : \"data-delimited\",\n    \"id\" : \"63bcd7ee-6756-4ca2-bc17-7c5e3f42b7de\",\n    \"options\" : [ {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true there will be a header row in the file that contains the variable names, otherwise no header row will be included.\",\n      \"name\" : \"header\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The desired format of the delimited file.\",\n      \"name\" : \"format\",\n      \"options\" : [ \"CSV\", \"MySQL\", \"Oracle\", \"PostgreSQL\", \"TDF\" ],\n      \"required\" : true,\n      \"value\" : \"CSV\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    } ],\n    \"type\" : \"DATA\"\n  }\n}"},{"id":"575fa73f-22c8-487b-85da-e0fcc2d78b89","name":"Excel Data","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","options","{formatId}"],"variable":[{"key":"formatId","value":"<string>","description":"Required - The ID of the format whose options are desired"}]},"description":"\n<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Excel Data\",\n  \"value\" : {\n    \"formatType\" : \"Excel Options\",\n    \"format\" : \"data-excel\",\n    \"id\" : \"a5c42a70-88a2-4c82-b2a9-a646893bdc10\",\n    \"options\" : [ {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true the file will be written as an .xlsx file (Excel 2007 onward), otherwise it will be written as and .xls file.\",\n      \"name\" : \"xlsx\",\n      \"required\" : true,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the sheet in the workbook being created.\",\n      \"name\" : \"sheet\",\n      \"required\" : false,\n      \"value\" : \"Sheet 1\"\n    } ],\n    \"type\" : \"DATA\"\n  }\n}"},{"id":"9e2dc874-b66d-4d2d-8df2-2957459539d0","name":"SAS Script","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","options","{formatId}"],"variable":[{"key":"formatId","value":"<string>","description":"Required - The ID of the format whose options are desired"}]},"description":"\n<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"SAS Script\",\n  \"value\" : {\n    \"formatType\" : \"Sas Options\",\n    \"format\" : \"script-sas\",\n    \"id\" : \"b1fb4704-8b23-4971-8813-5ea703df5dd9\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false\n    } ],\n    \"type\" : \"SCRIPT\"\n  }\n}"},{"id":"b24bd102-bce9-42fd-bfbb-5a92da1f09f8","name":"DDI CodeBook","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","options","{formatId}"],"variable":[{"key":"formatId","value":"<string>","description":"Required - The ID of the format whose options are desired"}]},"description":"\n<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"DDI CodeBook\",\n  \"value\" : {\n    \"formatType\" : \"DDI Codebook Options\",\n    \"format\" : \"ddi-codebook\",\n    \"id\" : \"c873d2ec-1ddf-4b13-855d-4fca595cd763\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"If this option is set to true the XML will be pretty printed (multiple lines with indentations), otherwise the content will be on a single line.\",\n      \"name\" : \"pretty print\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"This attribute holds the agency name of the creator or maintainer of the codeBook instance as a whole, and is designed to support forward compatibility with DDI-Lifecycle. Recommend the agency name as filed with the DDI Agency ID Registry with optional additional sub-agency extensions.\",\n      \"name\" : \"agency\",\n      \"required\" : true,\n      \"value\" : \"us.mtna\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Specifies the language that the CodeBook is in.\",\n      \"name\" : \"language\",\n      \"required\" : false,\n      \"value\" : \"en\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false\n    } ],\n    \"type\" : \"METADATA\"\n  }\n}"},{"id":"bc08ff24-422a-4a26-a9a1-f0fa8a3f3291","name":"Excel Tabulation","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","options","{formatId}"],"variable":[{"key":"formatId","value":"<string>","description":"Required - The ID of the format whose options are desired"}]},"description":"\n<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Excel Tabulation\",\n  \"value\" : {\n    \"formatType\" : \"Excel Tabulation Options\",\n    \"format\" : \"data-tabulation-excel\",\n    \"id\" : \"9d81cafb-d2f7-4bc9-ac0d-53ca603e26bf\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Indicates the name for the spreadsheet.\",\n      \"name\" : \"spreadsheet name\",\n      \"required\" : false,\n      \"value\" : \"exceltabulation\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Indicates the variables being used as rows in the table provided their URIs\",\n      \"name\" : \"table row dimensions\",\n      \"required\" : true,\n      \"value\" : [ ]\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Indicates the variables being used as columns in the table provided their URIs\",\n      \"name\" : \"table column dimensions\",\n      \"required\" : true,\n      \"value\" : [ ]\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the row and column headers in the table.\",\n      \"name\" : \"table headers\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the row totals in the table.\",\n      \"name\" : \"table totals\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the column totals in the table.\",\n      \"name\" : \"table totals\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the row subtotals in the table.\",\n      \"name\" : \"table subtotals\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the column subtotals in the table.\",\n      \"name\" : \"table subtotals\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Indicates the method used to sort the dimensions of the table.\",\n      \"name\" : \"dimension sort method\",\n      \"required\" : false,\n      \"value\" : \"ALPHABETICAL_DESC\"\n    } ],\n    \"type\" : \"DATA\"\n  }\n}"},{"id":"c20fed93-7954-4704-9d7e-e849c7ec7e33","name":"CSV Tabulation","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","options","{formatId}"],"variable":[{"key":"formatId","value":"<string>","description":"Required - The ID of the format whose options are desired"}]},"description":"\n<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"CSV Tabulation\",\n  \"value\" : {\n    \"formatType\" : \"CSV Tabulation Options\",\n    \"format\" : \"data-tabulation-csv\",\n    \"id\" : \"1149a39e-8ea1-4377-836d-56ac2063633f\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Indicates the variables being used as rows in the table provided their URIs\",\n      \"name\" : \"table row dimensions\",\n      \"required\" : true,\n      \"value\" : [ ]\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Indicates the variables being used as columns in the table provided their URIs\",\n      \"name\" : \"table column dimensions\",\n      \"required\" : true,\n      \"value\" : [ ]\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the row and column headers in the table.\",\n      \"name\" : \"table headers\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the row totals in the table.\",\n      \"name\" : \"table totals\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the column totals in the table.\",\n      \"name\" : \"table totals\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the row subtotals in the table.\",\n      \"name\" : \"table subtotals\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that we want to include the column subtotals in the table.\",\n      \"name\" : \"table subtotals\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"Indicates the method used to sort the dimensions of the table.\",\n      \"name\" : \"dimension sort method\",\n      \"required\" : false,\n      \"value\" : \"ALPHABETICAL_DESC\"\n    } ],\n    \"type\" : \"DATA\"\n  }\n}"},{"id":"d2365f10-a9f4-41e4-ae2e-8bd6d13e15c2","name":"Stata Script","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","options","{formatId}"],"variable":[{"key":"formatId","value":"<string>","description":"Required - The ID of the format whose options are desired"}]},"description":"\n<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Stata Script\",\n  \"value\" : {\n    \"formatType\" : \"Stata Options\",\n    \"format\" : \"script-stata\",\n    \"id\" : \"1ea9f5b3-da72-461a-a028-1592501afbae\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The ID of the a data file export that should be taken into consideration when creating this output. The format of the file will be taken into consideration to ensure that this format will match it in the appropriate manner.\",\n      \"name\" : \"Associated Data File\",\n      \"required\" : false\n    } ],\n    \"type\" : \"SCRIPT\"\n  }\n}"},{"id":"df436bc8-bb06-4939-aa9d-da40c99f565e","name":"PDF CodeBook","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","options","{formatId}"],"variable":[{"key":"formatId","value":"<string>","description":"Required - The ID of the format whose options are desired"}]},"description":"\n<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"PDF CodeBook\",\n  \"value\" : {\n    \"formatType\" : \"PDF Codebook Options\",\n    \"format\" : \"pdf-codebook\",\n    \"id\" : \"b94b335b-244e-4acb-9dd6-511f17c46175\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    } ],\n    \"type\" : \"DOCUMENT\"\n  }\n}"},{"id":"fdae7475-4952-474c-9467-9d06b7dc874c","name":"SQL Script","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/options/{formatId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","options","{formatId}"],"variable":[{"key":"formatId","value":"<string>","description":"Required - The ID of the format whose options are desired"}]},"description":"\n<p>\nWhen a client wants to know what type of options they need to fill out for a\nspecified packaging format they can call this to get the specified formats\noptions and fill them out as needed.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"SQL Script\",\n  \"value\" : {\n    \"formatType\" : \"SQL Options\",\n    \"format\" : \"script-sql\",\n    \"id\" : \"5e78cce1-0532-42dd-a8d7-f592799c43dd\",\n    \"options\" : [ {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The operating system that the file will be used on. This is used to determine how to write new lines in the file as this differs between Windows and Unix systems. This is a convenience feature and will not affect the content of the file, but may make it more usable in basic text editors.\",\n      \"name\" : \"Operating System\",\n      \"options\" : [ \"Windows\", \"Unix\" ],\n      \"required\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the database that the table should created in. If empty the data product name will be used.\",\n      \"name\" : \"database name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The name of the the table that will be created. If empty the data product name will be used.\",\n      \"name\" : \"table name\",\n      \"required\" : false,\n      \"value\" : \"\"\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that dimension (lookup) tables should be created to store classifications in. If false only the data table will be written.\",\n      \"name\" : \"dimension tables\",\n      \"required\" : false,\n      \"value\" : true\n    }, {\n      \"dataType\" : \"BOOLEAN\",\n      \"description\" : \"Indicates that insert statements should be used to load data into the created tables.\",\n      \"name\" : \"insert statements\",\n      \"required\" : false,\n      \"value\" : false\n    }, {\n      \"dataType\" : \"TEXT\",\n      \"description\" : \"The syntax of the script.\",\n      \"name\" : \"SQL type\",\n      \"options\" : [ \"MICROSOFT\", \"MONET\", \"MYSQL\", \"ORACLE\", \"POSTGRE\", \"VERTICA\", \"H2\", \"VIRTUOSO\" ],\n      \"required\" : true,\n      \"value\" : \"MYSQL\"\n    } ],\n    \"type\" : \"SCRIPT\"\n  }\n}"}],"_postman_id":"b45bb784-0025-464c-b07e-c01f6d6161e8"},{"name":"Get packaging process details. ","id":"30a3c889-4d7a-436f-9d2f-d15bdf4b4f5b","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/processdetails/{processId}","description":"<p>\nEnd point for monitoring the packaging process, which includes the processes\ncurrent status, completion percentage, and any failures that occur.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","processdetails","{processId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"d99ca7aa-c0ed-4508-8320-6c4a4b7f0d81","description":{"content":"<p>Required - The ID of the process to check.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"processId"}]}},"response":[{"id":"4d4bd5b0-cc24-4158-bbef-d72120a7cb96","name":"Packaging process started successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/processdetails/{processId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","processdetails","{processId}"],"variable":[{"key":"processId","value":"<string>","description":"Required - The ID of the process to check."}]},"description":"\n<p>\nEnd point for monitoring the packaging process, which includes the processes\ncurrent status, completion percentage, and any failures that occur.\n</p>"},"status":"Packaging process started successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"status\" : \"PROCESSING\",\n  \"completed\" : 12345,\n  \"completionDetails\" : {\n    \"detailsList\" : [ {\n      \"tableName\" : \"...\",\n      \"sqlSerializationDetails\" : [ { }, { } ],\n      \"resourceUris\" : [ \"...\", \"...\" ],\n      \"outputFormat\" : \"...\",\n      \"dateCreated\" : 12345\n    }, {\n      \"tableName\" : \"...\",\n      \"sqlSerializationDetails\" : [ { }, { } ],\n      \"resourceUris\" : [ \"...\", \"...\" ],\n      \"outputFormat\" : \"...\",\n      \"dateCreated\" : 12345\n    } ],\n    \"infoList\" : [ {\n      \"contentType\" : \"...\",\n      \"fileName\" : \"...\",\n      \"fileKey\" : \"...\",\n      \"fileSize\" : 12345\n    }, {\n      \"contentType\" : \"...\",\n      \"fileName\" : \"...\",\n      \"fileKey\" : \"...\",\n      \"fileSize\" : 12345\n    } ]\n  },\n  \"failure\" : {\n    \"message\" : \"...\",\n    \"suppressed\" : [ { }, { } ],\n    \"localizedMessage\" : \"...\",\n    \"cause\" : { },\n    \"stackTrace\" : [ {\n      \"className\" : \"...\",\n      \"lineNumber\" : 12345,\n      \"nativeMethod\" : true,\n      \"fileName\" : \"...\",\n      \"methodName\" : \"...\"\n    }, {\n      \"className\" : \"...\",\n      \"lineNumber\" : 12345,\n      \"nativeMethod\" : true,\n      \"fileName\" : \"...\",\n      \"methodName\" : \"...\"\n    } ]\n  },\n  \"id\" : \"...\",\n  \"statusMessage\" : \"...\"\n}"}],"_postman_id":"30a3c889-4d7a-436f-9d2f-d15bdf4b4f5b"},{"name":"Package classification. ","id":"e4304869-8953-4dc7-b95f-2b2da1c12075","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/{catalogId}/{dataProductId}/classification/{classificationId}","description":"<p>\nRuns a packaging process on a classification within the dataset.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","{catalogId}","{dataProductId}","classification","{classificationId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"c31bad77-6d9b-485a-b1a9-2fd2487a699d","description":{"content":"<p>Required - The ID of the catalog that contains the classification.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"687de9ff-9675-49f9-9e0b-5325092832c1","description":{"content":"<p>Required - The ID of the classification.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"classificationId"},{"id":"62246fb4-229a-46ab-bbf6-217c8cc7e4b8","description":{"content":"<p>Required - The ID of the data product to query.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"702242e7-7c44-47f5-b3c9-93efeaf6c6e6","name":"Packaging process started successfully.","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/{catalogId}/{dataProductId}/classification/{classificationId}","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","{catalogId}","{dataProductId}","classification","{classificationId}"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the classification."},{"key":"classificationId","value":"<string>","description":"Required - The ID of the classification."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRuns a packaging process on a classification within the dataset.\n</p>"},"status":"Packaging process started successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Packaging process started successfully.\""}],"_postman_id":"e4304869-8953-4dc7-b95f-2b2da1c12075"},{"name":"Package select. ","id":"517297f7-e832-4f6b-b28e-678653b9c940","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/{catalogId}/{dataProductId}/select","description":"<p>\nRuns a packaging process on a data set with the provided select query.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","{catalogId}","{dataProductId}","select"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"a12eb866-c41a-42ae-ac2d-7f004a39183b","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"8da9ebee-80ca-4198-89a6-5b6cf6faef29","description":{"content":"<p>Required - The ID of the data product to query.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"12a55f1f-21c5-42e4-aec4-bbeb87eddd7d","name":"Packaging process started successfully.","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/{catalogId}/{dataProductId}/select","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","{catalogId}","{dataProductId}","select"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRuns a packaging process on a data set with the provided select query.\n</p>"},"status":"Packaging process started successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Packaging process started successfully.\""}],"_postman_id":"517297f7-e832-4f6b-b28e-678653b9c940"},{"name":"Package tabulation. ","id":"538154ab-a738-441e-934b-812555d8bfb4","request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/{catalogId}/{dataProductId}/tabulate","description":"<p>\nRuns a packaging process on a data set with the provided tabulate query.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","{catalogId}","{dataProductId}","tabulate"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"2b592ae6-5b2e-4035-ba4b-c20586dcd122","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"2a02f789-95d0-4995-a43f-fa4a427ce695","description":{"content":"<p>Required - The ID of the data product to query.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"f5d1805f-f293-4090-afa1-954ccaa9566d","name":"Packaging process started successfully.","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/package/{catalogId}/{dataProductId}/tabulate","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","package","{catalogId}","{dataProductId}","tabulate"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRuns a packaging process on a data set with the provided tabulate query.\n</p>"},"status":"Packaging process started successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"\"Packaging process started successfully.\""}],"_postman_id":"538154ab-a738-441e-934b-812555d8bfb4"},{"name":"Get data package. ","id":"bf2f39bc-b405-4fc5-96ea-568ac9f4f52a","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/package/{processId}","description":"<p>\nReturns a single file, either a zip file containing the output (multiple\nfiles) of the specified packaging process, or the single file created by the\npackaging process if only a single file is produced.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","package","{processId}"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"fe63e399-7c47-4f59-95b2-8395d7d801c8","description":{"content":"<p>Required - The ID of the process whose contents are desired.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"processId"}]}},"response":[],"_postman_id":"bf2f39bc-b405-4fc5-96ea-568ac9f4f52a"}],"id":"a6237eaf-20c0-4f75-8d23-eff4f0ced23c","_postman_id":"a6237eaf-20c0-4f75-8d23-eff4f0ced23c","description":""},{"name":"QueryController","item":[{"name":"Get record count. ","id":"bd3c638a-1672-42fc-bc9d-8eae3e76f170","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/count","description":"<p>\nRuns a query to count the records of the specified data product.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","count"],"host":["192","168","1","3"],"query":[],"variable":[{"id":"1c85fb1a-737a-4c71-a660-4b4d0d9bcd69","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"caa82db8-1dbf-4227-ae73-495f3d63f6eb","description":{"content":"<p>Required - The ID of the data product to query.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"116d9c1c-c627-48e4-b4e9-b4a50e68fb1c","name":"Query results returned successfully.","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/count","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","count"],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRuns a query to count the records of the specified data product.\n</p>"},"status":"Query results returned successfully.","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"type\" : \"integer\",\n  \"description\" : \"Query results returned successfully.\",\n  \"format\" : \"int64\"\n}"}],"_postman_id":"bd3c638a-1672-42fc-bc9d-8eae3e76f170"},{"name":"Run select query. ","id":"0e284e61-1347-4666-9199-133a8765545f","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","description":"<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Optional - Limits the number of columns returned.</p>\n","type":"text/plain"},"key":"collimit","value":"<integer>"},{"description":{"content":"<p>Optional - Determines which column to start at.</p>\n","type":"text/plain"},"key":"coloffset","value":"<integer>"},{"description":{"content":"<p>Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes.</p>\n","type":"text/plain"},"key":"cols","value":"<string>"},{"description":{"content":"<p>Required - Flag specifying whether the total row count should be returned along side\nthe data.</p>\n","type":"text/plain"},"key":"count","value":"<boolean>"},{"description":{"content":"<p>Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: <code>MTNA Dataset</code> <code>MTNA Simple Dataset</code> <code>AM Charts</code> <code>Google Charts</code> <code>Plotly Bar Chart</code> <code>Plotly Boxplot</code> <code>Plotly Bubble Chart</code> <code>Plotly Histogram</code> <code>Plotly Pie Chart</code> <code>Plotly Scatterplot</code>. Default value is <code>MTNA Simple Dataset</code>.</p>\n","type":"text/plain"},"key":"format","value":"<format enum>"},{"description":{"content":"<p>Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by.</p>\n","type":"text/plain"},"key":"groupby","value":"<string array>"},{"description":{"content":"<p>Required - Flag specifying to inject codes into the returned records.</p>\n","type":"text/plain"},"key":"inject","value":"<boolean>"},{"description":{"content":"<p>Optional - The limit of records to return.</p>\n","type":"text/plain"},"key":"limit","value":"<number>"},{"description":{"content":"<p>Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet.</p>\n","type":"text/plain"},"key":"lock","value":"<string>"},{"description":{"content":"<p>Required - Flag specifying if metadata should be returned along side the data.</p>\n","type":"text/plain"},"key":"metadata","value":"<boolean>"},{"description":{"content":"<p>Optional - The record to start at.</p>\n","type":"text/plain"},"key":"offset","value":"<number>"},{"description":{"content":"<p>Optional - Allows the data to be reordered in ascending or descending order by column</p>\n","type":"text/plain"},"key":"orderby","value":"<string>"},{"description":{"content":"<p>Optional - The IDs of variables to use as weights in the resulting data.</p>\n","type":"text/plain"},"key":"weights","value":"<string array>"},{"description":{"content":"<p>Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause</p>\n","type":"text/plain"},"key":"where","value":"<string>"}],"variable":[{"id":"010ab009-cc65-4cbe-b16d-ca996d9ab055","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"c845c82a-3892-43af-aa13-0277e577b27b","description":{"content":"<p>Required - The ID of the data product to query.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"0c258cea-65fe-4ebc-9a10-f9e3d87d8b25","name":"Plotly Scatterplot","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Scatterplot\",\n  \"value\" : {\n    \"x\" : [ 1, 2, 3, 4 ],\n    \"y\" : [ 10, 15, 13, 17 ],\n    \"type\" : \"scatter\"\n  }\n}"},{"id":"2874056b-110c-41d0-9ae9-12ed64857067","name":"Plotly Boxplot","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Boxplot\",\n  \"value\" : {\n    \"y\" : [ 0, 1, 1, 2, 3, 5, 8, 13, 21 ],\n    \"boxpoints\" : \"all\",\n    \"jitter\" : 0.3,\n    \"pointpos\" : -1.8,\n    \"type\" : \"box\"\n  }\n}"},{"id":"2ecdf5c1-4d71-48ba-8ea1-fe21c7574c22","name":"Plotly Histogram","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Histogram\",\n  \"value\" : {\n    \"x\" : \"x0\",\n    \"opacity\" : 0.75,\n    \"type\" : \"histogram\"\n  }\n}"},{"id":"3b743120-e790-442f-9478-32fa2001ad1a","name":"Plotly Bubble Chart","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Bubble Chart\",\n  \"value\" : {\n    \"x\" : [ 1, 2, 3, 4 ],\n    \"y\" : [ 10, 11, 12, 13 ],\n    \"mode\" : \"markers\",\n    \"marker\" : {\n      \"size\" : [ 10, 10, 10, 10 ]\n    }\n  }\n}"},{"id":"5a5f59d7-0171-45d0-96e7-edc297fa173b","name":"Plotly Bar Chart","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Bar Chart\",\n  \"value\" : {\n    \"x\" : [ \"giraffes\", \"orangutans\", \"monkeys\" ],\n    \"y\" : [ 20, 14, 23 ],\n    \"type\" : \"bar\"\n  }\n}"},{"id":"5b23b3d3-a25f-49fd-912c-261a55a15f37","name":"MTNA Dataset","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"MTNA Dataset\",\n  \"value\" : {\n    \"classifications\" : [ ],\n    \"dataSetInformation\" : {\n      \"cached\" : false,\n      \"columnCount\" : 2,\n      \"columnOffset\" : 0,\n      \"end\" : \"2019-06-26T20:04:47.104Z\",\n      \"includeMetadata\" : true,\n      \"moreColumns\" : false,\n      \"moreRows\" : true,\n      \"notes\" : [ ],\n      \"postQueryTime\" : 0,\n      \"preQueryTime\" : 87,\n      \"queryTime\" : 1598,\n      \"rowLimit\" : 3,\n      \"rowOffset\" : 0,\n      \"start\" : \"2019-06-26T20:04:45.419Z\",\n      \"totalProcessingTime\" : 1685\n    },\n    \"recordLayout\" : {\n      \"isPrivate\" : false,\n      \"variables\" : [ {\n        \"dataType\" : \"NUMERIC\",\n        \"decimals\" : 0,\n        \"endPosition\" : 2,\n        \"fixedStorageWidth\" : 2,\n        \"id\" : \"CATS\",\n        \"isPrivate\" : false,\n        \"label\" : \"NUMBER OF CATS\",\n        \"name\" : \"CATS\",\n        \"questionText\" : \"How many cats do you have?\",\n        \"startPosition\" : 0,\n        \"storageType\" : \"INT\",\n        \"summaryStatistics\" : {\n          \"dateProduced\" : \"2019-06-21T12:32:28.034Z\",\n          \"sets\" : [ {\n            \"distinctSet\" : [ ],\n            \"max\" : 1,\n            \"mean\" : 1,\n            \"min\" : 1,\n            \"missing\" : 0,\n            \"populated\" : 662,\n            \"standardDeviation\" : 0,\n            \"weighted\" : false\n          } ]\n        },\n        \"uri\" : \"3893482a-3f43r5f-234rrf3\"\n      }, {\n        \"classificationUri\" : \"23984fu-deu490u-aa7\",\n        \"dataType\" : \"NUMERIC\",\n        \"decimals\" : 0,\n        \"endPosition\" : 17,\n        \"fixedStorageWidth\" : 1,\n        \"frequencies\" : {\n          \"dateProduced\" : \"2019-06-21T12:32:28.055Z\",\n          \"sets\" : [ {\n            \"map\" : {\n              \"1\" : 182,\n              \"2\" : 354,\n              \"3\" : 126\n            },\n            \"weighted\" : false,\n            \"weights\" : [ ]\n          } ]\n        },\n        \"id\" : \"DOGS\",\n        \"isPrivate\" : false,\n        \"label\" : \"NUMBER OF DOGS\",\n        \"name\" : \"DOGS\",\n        \"questionText\" : \"How many dogs do you have?\",\n        \"startPosition\" : 16,\n        \"storageType\" : \"INT\",\n        \"summaryStatistics\" : {\n          \"dateProduced\" : \"2019-06-21T12:32:28.055Z\",\n          \"sets\" : [ {\n            \"distinctSet\" : [ ],\n            \"max\" : 3,\n            \"mean\" : 1.915,\n            \"min\" : 1,\n            \"missing\" : 0,\n            \"populated\" : 662,\n            \"standardDeviation\" : 0.677,\n            \"weighted\" : false\n          } ]\n        },\n        \"uri\" : \"3893482a\"\n      } ]\n    },\n    \"records\" : [ {\n      \"data\" : [ {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"CATS\",\n            \"isPrivate\" : false,\n            \"name\" : \"CATS\",\n            \"uri\" : \"3893482a-3f43r5f-234rrf3\"\n          }\n        }\n      }, {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 2,\n          \"variable\" : {\n            \"id\" : \"DOGS\",\n            \"isPrivate\" : false,\n            \"name\" : \"DOGS\",\n            \"uri\" : \"3893482a\"\n          }\n        }\n      } ]\n    }, {\n      \"data\" : [ {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"CATS\",\n            \"isPrivate\" : false,\n            \"name\" : \"CATS\",\n            \"uri\" : \"3893482a-3f43r5f-234rrf3\"\n          }\n        }\n      }, {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"DOGS\",\n            \"isPrivate\" : false,\n            \"name\" : \"DOGS\",\n            \"uri\" : \"3893482a\"\n          }\n        }\n      } ]\n    }, {\n      \"data\" : [ {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"CATS\",\n            \"isPrivate\" : false,\n            \"name\" : \"CATS\",\n            \"uri\" : \"3893482a-3f43r5f-234rrf3\"\n          }\n        }\n      }, {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"DOGS\",\n            \"isPrivate\" : false,\n            \"name\" : \"DOGS\",\n            \"uri\" : \"3893482a\"\n          }\n        }\n      } ]\n    } ],\n    \"totals\" : [ ],\n    \"variableGroups\" : [ ]\n  }\n}"},{"id":"6c4c6627-9632-42d7-bde2-7602c60d44d2","name":"Google Charts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Google Charts\",\n  \"value\" : {\n    \"cols\" : [ {\n      \"id\" : \"CATS\",\n      \"label\" : \"Number of cats\",\n      \"type\" : \"string\"\n    }, {\n      \"id\" : \"DOGS\",\n      \"label\" : \"Number of dogs\",\n      \"type\" : \"string\"\n    }, {\n      \"id\" : \"BIRDS\",\n      \"label\" : \"Number of birds\",\n      \"type\" : \"string\"\n    } ],\n    \"rows\" : [ {\n      \"c\" : [ {\n        \"v\" : 1\n      }, {\n        \"v\" : 2\n      }, {\n        \"v\" : 4\n      } ]\n    }, {\n      \"c\" : [ {\n        \"v\" : 1\n      }, {\n        \"v\" : 1\n      }, {\n        \"v\" : 4\n      } ]\n    }, {\n      \"c\" : [ {\n        \"v\" : 1\n      }, {\n        \"v\" : 1\n      }, {\n        \"v\" : 4\n      } ]\n    } ]\n  }\n}"},{"id":"a7fbf258-a2f6-478d-80c2-af2fca3fa69e","name":"AM Charts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"AM Charts\",\n  \"value\" : {\n    \"dataProvider\" : [ {\n      \"DOGS\" : 1,\n      \"CATS\" : 2,\n      \"BIRDS\" : 4\n    }, {\n      \"DOGS\" : 1,\n      \"CATS\" : 1,\n      \"BIRDS\" : 4\n    }, {\n      \"DOGS\" : 1,\n      \"CATS\" : 1,\n      \"BIRDS\" : 4\n    } ]\n  }\n}"},{"id":"ae6534bf-bc51-4458-8dfd-55b5cb69d4b5","name":"Plotly Pie Chart","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/select?collimit=<integer>&coloffset=<integer>&cols=<string>&count=<boolean>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&lock=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","select"],"query":[{"key":"collimit","value":"<integer>","description":"Optional - Limits the number of columns returned."},{"key":"coloffset","value":"<integer>","description":"Optional - Determines which column to start at."},{"key":"cols","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or concepts to select. Any of these can be excluded as well by prepending '~' to these syntaxes."},{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying to inject codes into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"lock","value":"<string>","description":"Optional - Column names, regular expressions, key words, variable groups, or\nconcepts to lock. These will be returned first adn listed out in\nDataSetInformation that is returned on the DataSet."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying if metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning a select query on the specified data product returns record level\nmicrodata. A variety of querying techniques can be used to subset,\ncompute, order, filter and format the results.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Pie Chart\",\n  \"value\" : {\n    \"labels\" : [ 1, 1, 1 ],\n    \"type\" : \"pie\",\n    \"values\" : [ 2, 1, 1 ]\n  }\n}"}],"_postman_id":"0e284e61-1347-4666-9199-133a8765545f"},{"name":"Run tabulation query. ","id":"09245f56-ddc4-4cb6-80f3-de9bdfa21650","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","description":"<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>","urlObject":{"protocol":"http","port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"host":["192","168","1","3"],"query":[{"description":{"content":"<p>Required - Flag specifying whether the total row count should be returned along side\nthe data.</p>\n","type":"text/plain"},"key":"count","value":"<boolean>"},{"description":{"content":"<p>Optional - Columns to use as dimensions.</p>\n","type":"text/plain"},"key":"dims","value":"<string>"},{"description":{"content":"<p>Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: <code>MTNA Dataset</code> <code>MTNA Simple Dataset</code> <code>AM Charts</code> <code>Google Charts</code> <code>Plotly Bar Chart</code> <code>Plotly Boxplot</code> <code>Plotly Bubble Chart</code> <code>Plotly Histogram</code> <code>Plotly Pie Chart</code> <code>Plotly Scatterplot</code>. Default value is <code>MTNA Simple Dataset</code>.</p>\n","type":"text/plain"},"key":"format","value":"<format enum>"},{"description":{"content":"<p>Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by.</p>\n","type":"text/plain"},"key":"groupby","value":"<string array>"},{"description":{"content":"<p>Required - Flag specifying if we want the values injected into the returned records.</p>\n","type":"text/plain"},"key":"inject","value":"<boolean>"},{"description":{"content":"<p>Optional - The limit of records to return.</p>\n","type":"text/plain"},"key":"limit","value":"<number>"},{"description":{"content":"<p>Optional - Columns to use as measures. Count is used by default.</p>\n","type":"text/plain"},"key":"measure","value":"<string>"},{"description":{"content":"<p>Required - Flag specifying whether metadata should be returned along side the data.</p>\n","type":"text/plain"},"key":"metadata","value":"<boolean>"},{"description":{"content":"<p>Optional - The record to start at.</p>\n","type":"text/plain"},"key":"offset","value":"<number>"},{"description":{"content":"<p>Optional - Allows the data to be reordered in ascending or descending order by column</p>\n","type":"text/plain"},"key":"orderby","value":"<string>"},{"description":{"content":"<p>Required - Flag specifying whether subtotals should be returned along side the data.</p>\n","type":"text/plain"},"key":"totals","value":"<boolean>"},{"description":{"content":"<p>Optional - The IDs of variables to use as weights in the resulting data.</p>\n","type":"text/plain"},"key":"weights","value":"<string array>"},{"description":{"content":"<p>Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause</p>\n","type":"text/plain"},"key":"where","value":"<string>"}],"variable":[{"id":"7560a287-5423-4796-bd9e-6faffc156179","description":{"content":"<p>Required - The ID of the catalog that contains the data product.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"catalogId"},{"id":"a5d453ab-4671-430b-a1aa-a21093b70474","description":{"content":"<p>Required - The ID of the data product to query.</p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"dataProductId"}]}},"response":[{"id":"0806dd60-1ce7-44dd-9d47-f4c944809422","name":"Plotly Bar Chart","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"query":[{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"dims","value":"<string>","description":"Optional - Columns to use as dimensions."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying if we want the values injected into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"measure","value":"<string>","description":"Optional - Columns to use as measures. Count is used by default."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying whether metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"totals","value":"<boolean>","description":"Required - Flag specifying whether subtotals should be returned along side the data."},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Bar Chart\",\n  \"value\" : {\n    \"x\" : [ \"giraffes\", \"orangutans\", \"monkeys\" ],\n    \"y\" : [ 20, 14, 23 ],\n    \"type\" : \"bar\"\n  }\n}"},{"id":"39d000d4-8b05-4f3c-8aa3-80014a0dc819","name":"Plotly Histogram","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"query":[{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"dims","value":"<string>","description":"Optional - Columns to use as dimensions."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying if we want the values injected into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"measure","value":"<string>","description":"Optional - Columns to use as measures. Count is used by default."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying whether metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"totals","value":"<boolean>","description":"Required - Flag specifying whether subtotals should be returned along side the data."},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Histogram\",\n  \"value\" : {\n    \"x\" : \"x0\",\n    \"opacity\" : 0.75,\n    \"type\" : \"histogram\"\n  }\n}"},{"id":"4f8a13aa-7186-43a9-b26b-5918df6a01a7","name":"Plotly Pie Chart","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"query":[{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"dims","value":"<string>","description":"Optional - Columns to use as dimensions."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying if we want the values injected into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"measure","value":"<string>","description":"Optional - Columns to use as measures. Count is used by default."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying whether metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"totals","value":"<boolean>","description":"Required - Flag specifying whether subtotals should be returned along side the data."},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Pie Chart\",\n  \"value\" : {\n    \"labels\" : [ 1, 1, 1 ],\n    \"type\" : \"pie\",\n    \"values\" : [ 2, 1, 1 ]\n  }\n}"},{"id":"71a4036d-17c6-43ee-8c6e-285335f5e5e2","name":"Plotly Boxplot","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"query":[{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"dims","value":"<string>","description":"Optional - Columns to use as dimensions."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying if we want the values injected into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"measure","value":"<string>","description":"Optional - Columns to use as measures. Count is used by default."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying whether metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"totals","value":"<boolean>","description":"Required - Flag specifying whether subtotals should be returned along side the data."},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Boxplot\",\n  \"value\" : {\n    \"y\" : [ 0, 1, 1, 2, 3, 5, 8, 13, 21 ],\n    \"boxpoints\" : \"all\",\n    \"jitter\" : 0.3,\n    \"pointpos\" : -1.8,\n    \"type\" : \"box\"\n  }\n}"},{"id":"7fd7a5a9-edb5-4d2b-bdf8-dc2b5b84fe4d","name":"Google Charts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"query":[{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"dims","value":"<string>","description":"Optional - Columns to use as dimensions."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying if we want the values injected into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"measure","value":"<string>","description":"Optional - Columns to use as measures. Count is used by default."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying whether metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"totals","value":"<boolean>","description":"Required - Flag specifying whether subtotals should be returned along side the data."},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Google Charts\",\n  \"value\" : {\n    \"cols\" : [ {\n      \"id\" : \"CATS\",\n      \"label\" : \"Number of cats\",\n      \"type\" : \"string\"\n    }, {\n      \"id\" : \"DOGS\",\n      \"label\" : \"Number of dogs\",\n      \"type\" : \"string\"\n    }, {\n      \"id\" : \"BIRDS\",\n      \"label\" : \"Number of birds\",\n      \"type\" : \"string\"\n    } ],\n    \"rows\" : [ {\n      \"c\" : [ {\n        \"v\" : 1\n      }, {\n        \"v\" : 2\n      }, {\n        \"v\" : 4\n      } ]\n    }, {\n      \"c\" : [ {\n        \"v\" : 1\n      }, {\n        \"v\" : 1\n      }, {\n        \"v\" : 4\n      } ]\n    }, {\n      \"c\" : [ {\n        \"v\" : 1\n      }, {\n        \"v\" : 1\n      }, {\n        \"v\" : 4\n      } ]\n    } ]\n  }\n}"},{"id":"97c0b704-b2e8-4cdb-a25e-ea8ec7bce6ac","name":"Plotly Bubble Chart","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"query":[{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"dims","value":"<string>","description":"Optional - Columns to use as dimensions."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying if we want the values injected into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"measure","value":"<string>","description":"Optional - Columns to use as measures. Count is used by default."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying whether metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"totals","value":"<boolean>","description":"Required - Flag specifying whether subtotals should be returned along side the data."},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Bubble Chart\",\n  \"value\" : {\n    \"x\" : [ 1, 2, 3, 4 ],\n    \"y\" : [ 10, 11, 12, 13 ],\n    \"mode\" : \"markers\",\n    \"marker\" : {\n      \"size\" : [ 10, 10, 10, 10 ]\n    }\n  }\n}"},{"id":"a18ab4bc-e359-402e-b80f-b0407f791a9c","name":"MTNA Dataset","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"query":[{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"dims","value":"<string>","description":"Optional - Columns to use as dimensions."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying if we want the values injected into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"measure","value":"<string>","description":"Optional - Columns to use as measures. Count is used by default."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying whether metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"totals","value":"<boolean>","description":"Required - Flag specifying whether subtotals should be returned along side the data."},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"MTNA Dataset\",\n  \"value\" : {\n    \"classifications\" : [ ],\n    \"dataSetInformation\" : {\n      \"cached\" : false,\n      \"columnCount\" : 2,\n      \"columnOffset\" : 0,\n      \"end\" : \"2019-06-26T20:04:47.104Z\",\n      \"includeMetadata\" : true,\n      \"moreColumns\" : false,\n      \"moreRows\" : true,\n      \"notes\" : [ ],\n      \"postQueryTime\" : 0,\n      \"preQueryTime\" : 87,\n      \"queryTime\" : 1598,\n      \"rowLimit\" : 3,\n      \"rowOffset\" : 0,\n      \"start\" : \"2019-06-26T20:04:45.419Z\",\n      \"totalProcessingTime\" : 1685\n    },\n    \"recordLayout\" : {\n      \"isPrivate\" : false,\n      \"variables\" : [ {\n        \"dataType\" : \"NUMERIC\",\n        \"decimals\" : 0,\n        \"endPosition\" : 2,\n        \"fixedStorageWidth\" : 2,\n        \"id\" : \"CATS\",\n        \"isPrivate\" : false,\n        \"label\" : \"NUMBER OF CATS\",\n        \"name\" : \"CATS\",\n        \"questionText\" : \"How many cats do you have?\",\n        \"startPosition\" : 0,\n        \"storageType\" : \"INT\",\n        \"summaryStatistics\" : {\n          \"dateProduced\" : \"2019-06-21T12:32:28.034Z\",\n          \"sets\" : [ {\n            \"distinctSet\" : [ ],\n            \"max\" : 1,\n            \"mean\" : 1,\n            \"min\" : 1,\n            \"missing\" : 0,\n            \"populated\" : 662,\n            \"standardDeviation\" : 0,\n            \"weighted\" : false\n          } ]\n        },\n        \"uri\" : \"3893482a-3f43r5f-234rrf3\"\n      }, {\n        \"classificationUri\" : \"23984fu-deu490u-aa7\",\n        \"dataType\" : \"NUMERIC\",\n        \"decimals\" : 0,\n        \"endPosition\" : 17,\n        \"fixedStorageWidth\" : 1,\n        \"frequencies\" : {\n          \"dateProduced\" : \"2019-06-21T12:32:28.055Z\",\n          \"sets\" : [ {\n            \"map\" : {\n              \"1\" : 182,\n              \"2\" : 354,\n              \"3\" : 126\n            },\n            \"weighted\" : false,\n            \"weights\" : [ ]\n          } ]\n        },\n        \"id\" : \"DOGS\",\n        \"isPrivate\" : false,\n        \"label\" : \"NUMBER OF DOGS\",\n        \"name\" : \"DOGS\",\n        \"questionText\" : \"How many dogs do you have?\",\n        \"startPosition\" : 16,\n        \"storageType\" : \"INT\",\n        \"summaryStatistics\" : {\n          \"dateProduced\" : \"2019-06-21T12:32:28.055Z\",\n          \"sets\" : [ {\n            \"distinctSet\" : [ ],\n            \"max\" : 3,\n            \"mean\" : 1.915,\n            \"min\" : 1,\n            \"missing\" : 0,\n            \"populated\" : 662,\n            \"standardDeviation\" : 0.677,\n            \"weighted\" : false\n          } ]\n        },\n        \"uri\" : \"3893482a\"\n      } ]\n    },\n    \"records\" : [ {\n      \"data\" : [ {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"CATS\",\n            \"isPrivate\" : false,\n            \"name\" : \"CATS\",\n            \"uri\" : \"3893482a-3f43r5f-234rrf3\"\n          }\n        }\n      }, {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 2,\n          \"variable\" : {\n            \"id\" : \"DOGS\",\n            \"isPrivate\" : false,\n            \"name\" : \"DOGS\",\n            \"uri\" : \"3893482a\"\n          }\n        }\n      } ]\n    }, {\n      \"data\" : [ {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"CATS\",\n            \"isPrivate\" : false,\n            \"name\" : \"CATS\",\n            \"uri\" : \"3893482a-3f43r5f-234rrf3\"\n          }\n        }\n      }, {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"DOGS\",\n            \"isPrivate\" : false,\n            \"name\" : \"DOGS\",\n            \"uri\" : \"3893482a\"\n          }\n        }\n      } ]\n    }, {\n      \"data\" : [ {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"CATS\",\n            \"isPrivate\" : false,\n            \"name\" : \"CATS\",\n            \"uri\" : \"3893482a-3f43r5f-234rrf3\"\n          }\n        }\n      }, {\n        \"attributes\" : [ ],\n        \"value\" : {\n          \"value\" : 1,\n          \"variable\" : {\n            \"id\" : \"DOGS\",\n            \"isPrivate\" : false,\n            \"name\" : \"DOGS\",\n            \"uri\" : \"3893482a\"\n          }\n        }\n      } ]\n    } ],\n    \"totals\" : [ ],\n    \"variableGroups\" : [ ]\n  }\n}"},{"id":"cb241d39-eaa4-4811-a7b8-7a43dda20501","name":"AM Charts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"query":[{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"dims","value":"<string>","description":"Optional - Columns to use as dimensions."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying if we want the values injected into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"measure","value":"<string>","description":"Optional - Columns to use as measures. Count is used by default."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying whether metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"totals","value":"<boolean>","description":"Required - Flag specifying whether subtotals should be returned along side the data."},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"AM Charts\",\n  \"value\" : {\n    \"dataProvider\" : [ {\n      \"DOGS\" : 1,\n      \"CATS\" : 2,\n      \"BIRDS\" : 4\n    }, {\n      \"DOGS\" : 1,\n      \"CATS\" : 1,\n      \"BIRDS\" : 4\n    }, {\n      \"DOGS\" : 1,\n      \"CATS\" : 1,\n      \"BIRDS\" : 4\n    } ]\n  }\n}"},{"id":"db8e8a1d-f9ec-4928-95d3-eab9936f57e7","name":"Plotly Scatterplot","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"http://192.168.1.3:8080/rds/api/query/{catalogId}/{dataProductId}/tabulate?count=<boolean>&dims=<string>&format=<format enum>&groupby=<string array>&inject=<boolean>&limit=<number>&measure=<string>&metadata=<boolean>&offset=<number>&orderby=<string>&totals=<boolean>&weights=<string array>&where=<string>","protocol":"http","host":["192","168","1","3"],"port":"8080","path":["rds","api","query","{catalogId}","{dataProductId}","tabulate"],"query":[{"key":"count","value":"<boolean>","description":"Required - Flag specifying whether the total row count should be returned along side\nthe data."},{"key":"dims","value":"<string>","description":"Optional - Columns to use as dimensions."},{"key":"format","value":"<format enum>","description":"Optional - RDS can return a variety of JSON objects to plug into various java script\ncharting libraries. Possible Values: `MTNA Dataset` `MTNA Simple Dataset` `AM Charts` `Google Charts` `Plotly Bar Chart` `Plotly Boxplot` `Plotly Bubble Chart` `Plotly Histogram` `Plotly Pie Chart` `Plotly Scatterplot`. Default value is `MTNA Simple Dataset`."},{"key":"groupby","value":"<string array>","description":"Optional - When computing a new variable using a function that depends onaggregation the group by parameter can specify which columns to group by."},{"key":"inject","value":"<boolean>","description":"Required - Flag specifying if we want the values injected into the returned records."},{"key":"limit","value":"<number>","description":"Optional - The limit of records to return."},{"key":"measure","value":"<string>","description":"Optional - Columns to use as measures. Count is used by default."},{"key":"metadata","value":"<boolean>","description":"Required - Flag specifying whether metadata should be returned along side the data."},{"key":"offset","value":"<number>","description":"Optional - The record to start at."},{"key":"orderby","value":"<string>","description":"Optional - Allows the data to be reordered in ascending or descending order by column"},{"key":"totals","value":"<boolean>","description":"Required - Flag specifying whether subtotals should be returned along side the data."},{"key":"weights","value":"<string array>","description":"Optional - The IDs of variables to use as weights in the resulting data."},{"key":"where","value":"<string>","description":"Optional - The where parameter allows filters to be applied to the data that will be returned. This follows a syntax similar to a SQL where clause"}],"variable":[{"key":"catalogId","value":"<string>","description":"Required - The ID of the catalog that contains the data product."},{"key":"dataProductId","value":"<string>","description":"Required - The ID of the data product to query."}]},"description":"\n<p>\nRunning tabulations on the specified data product returns aggregate level\ndata about the dimensions and measures specified. A variety of querying\ntechniques can be used to subset, compute, order, filter and format the\nresults.\n</p>"},"status":"Successful request","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"cookie":[],"responseTime":null,"body":"{\n  \"summary\" : \"Plotly Scatterplot\",\n  \"value\" : {\n    \"x\" : [ 1, 2, 3, 4 ],\n    \"y\" : [ 10, 15, 13, 17 ],\n    \"type\" : \"scatter\"\n  }\n}"}],"_postman_id":"09245f56-ddc4-4cb6-80f3-de9bdfa21650"}],"id":"75231513-f942-4485-ae61-78e059c413d4","_postman_id":"75231513-f942-4485-ae61-78e059c413d4","description":""},{"name":"Models","item":[{"name":"InformationController","item":[{"name":"RdsVersion Model","id":"0f967e43-6262-44ba-94a4-39167ce81092","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>version</td>\n<td>string</td>\n<td>Version</td>\n</tr>\n<tr>\n<td>released</td>\n<td>string</td>\n<td>Released</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"0f967e43-6262-44ba-94a4-39167ce81092"},{"name":"ServerInformation Model","id":"ff973537-fa18-4fd6-bc3c-18e60488d944","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>version</td>\n<td>string</td>\n<td>Version</td>\n</tr>\n<tr>\n<td>released</td>\n<td>string</td>\n<td>Released</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"ff973537-fa18-4fd6-bc3c-18e60488d944"}],"id":"b146eb6d-8c23-424f-87d1-3057924bfe92","_postman_id":"b146eb6d-8c23-424f-87d1-3057924bfe92","description":""},{"name":"StatisticsController","item":[{"name":"RdsCatalogStatistics Model","id":"d79f6bc3-48d6-40fa-8fec-39d6163255ae","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>totalQueries</td>\n<td>integer</td>\n<td>Total number of queries</td>\n</tr>\n<tr>\n<td>popularColumns</td>\n<td>FormattedDataSet</td>\n<td>Popular columns</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>queriesOverTime</td>\n<td>FormattedDataSet</td>\n<td>Number of queries over time</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n<tr>\n<td>productStatistics</td>\n<td>array[RdsDataProductStatistics]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"d79f6bc3-48d6-40fa-8fec-39d6163255ae"},{"name":"RdsDataProductStatistics Model","id":"17a11563-70f4-4d5d-b294-c22361582b75","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>popularColumns</td>\n<td>object</td>\n<td>Popular columns</td>\n</tr>\n<tr>\n<td>queryOverview</td>\n<td>FormattedDataSet</td>\n<td>Query overview</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n<tr>\n<td>columnOverview</td>\n<td>FormattedDataSet</td>\n<td>Column overview</td>\n</tr>\n<tr>\n<td>totalQueries</td>\n<td>integer</td>\n<td>Total number of queries</td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>queriesOverTime</td>\n<td>QueryStatistics</td>\n<td>Number of queries over time</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"17a11563-70f4-4d5d-b294-c22361582b75"},{"name":"StatisticsQueryDescriptor Model","id":"61541399-edbe-4c34-b04e-a8895789bbf0","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>apiCall</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"61541399-edbe-4c34-b04e-a8895789bbf0"}],"id":"a3b3c7af-6315-457f-b9d8-9233f193ea9e","_postman_id":"a3b3c7af-6315-457f-b9d8-9233f193ea9e","description":""},{"name":"DataAgentController","item":[{"name":"AgentSummary Model","id":"4e2d6645-4cd4-4a0a-b24e-ca3a56d09460","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"4e2d6645-4cd4-4a0a-b24e-ca3a56d09460"},{"name":"AgentConfigurationOfQueryableDataSource Model","id":"477babbb-9a84-4802-a313-59668ebb2dda","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>displayName</td>\n<td>string</td>\n<td>Display name</td>\n</tr>\n<tr>\n<td>displayId</td>\n<td>string</td>\n<td>Display id</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>instanceId</td>\n<td>string</td>\n<td>Id associated with this instance</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"477babbb-9a84-4802-a313-59668ebb2dda"},{"name":"AgentProcessStatusDetail Model","id":"21a05a00-cb99-4451-a3fe-6eb70aec75d7","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>json_ProcessStatusDetail</td>\n<td>ProcessStatusDetail</td>\n<td></td>\n</tr>\n<tr>\n<td>statusMessage</td>\n<td>string</td>\n<td>Message about the status of the process</td>\n</tr>\n<tr>\n<td>completed</td>\n<td>integer</td>\n<td>Percent of the process that has completed</td>\n</tr>\n<tr>\n<td>status</td>\n<td>ProcessStatus</td>\n<td>Status of the process</td>\n</tr>\n<tr>\n<td>subProcessDetails</td>\n<td>array[json_AgentProcessStatusDetail]</td>\n<td>?</td>\n</tr>\n<tr>\n<td>failure</td>\n<td>Throwable</td>\n<td>Information about why the process failed, if applicable</td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"21a05a00-cb99-4451-a3fe-6eb70aec75d7"},{"name":"AgentCompletionReport Model","id":"60b327fd-dca9-4b95-9c34-e63c6ec5f02c","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>facts</td>\n<td>array[Fact]</td>\n<td>?</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"60b327fd-dca9-4b95-9c34-e63c6ec5f02c"}],"id":"d190a15e-adab-40a8-8087-cd5d5fbbcd04","_postman_id":"d190a15e-adab-40a8-8087-cd5d5fbbcd04","description":""},{"name":"FileController","item":[{"name":"FileInformation Model","id":"2ca04c54-1150-408d-a413-6cc98215634e","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fileName</td>\n<td>string</td>\n<td>Name of the uploaded file</td>\n</tr>\n<tr>\n<td>key</td>\n<td>string</td>\n<td>Unique File Key</td>\n</tr>\n<tr>\n<td>fileSize</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>managerSize</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>string</td>\n<td>Content-Type of the file</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"2ca04c54-1150-408d-a413-6cc98215634e"}],"id":"5eed97c9-f3f5-40f7-91f3-91a44d302365","_postman_id":"5eed97c9-f3f5-40f7-91f3-91a44d302365","description":""},{"name":"MetadataController","item":[{"name":"RdsCatalog Model","id":"9bb74c5e-7e01-47bd-bd9a-ee550a3b5794","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>isPrivate</td>\n<td>boolean</td>\n<td>Denotes if the resource is private</td>\n</tr>\n<tr>\n<td>uri</td>\n<td>string</td>\n<td>URI</td>\n</tr>\n<tr>\n<td>catalogCount</td>\n<td>integer</td>\n<td>Number of catalogs contained in this catalog</td>\n</tr>\n<tr>\n<td>documentation</td>\n<td>string</td>\n<td>?</td>\n</tr>\n<tr>\n<td>exclusion</td>\n<td>string</td>\n<td>?</td>\n</tr>\n<tr>\n<td>urlCount</td>\n<td>integer</td>\n<td>?</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>lastUpdate</td>\n<td>integer</td>\n<td>Date that the resource was last updated</td>\n</tr>\n<tr>\n<td>keywordCount</td>\n<td>integer</td>\n<td>Number of keywords associated with this catalog</td>\n</tr>\n<tr>\n<td>label</td>\n<td>string</td>\n<td>Label</td>\n</tr>\n<tr>\n<td>catalog</td>\n<td>Catalog</td>\n<td>Catalog contained in this catalog, if applicable</td>\n</tr>\n<tr>\n<td>catalogs</td>\n<td>array[RdsCatalog]</td>\n<td>Catalogs contained in this catalog, if applicable</td>\n</tr>\n<tr>\n<td>dataProducts</td>\n<td>array[RdsDataProduct]</td>\n<td>Data products contained in this catalog</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>dataProductCount</td>\n<td>integer</td>\n<td>Number of data products in this catalog</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"9bb74c5e-7e01-47bd-bd9a-ee550a3b5794"},{"name":"RdsDataProduct Model","id":"a9e4c683-8b31-4b57-8bb0-e1df6036d363","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>exclusion</td>\n<td>string</td>\n<td>?</td>\n</tr>\n<tr>\n<td>lastUpdate</td>\n<td>integer</td>\n<td>Date that the resource was last updated</td>\n</tr>\n<tr>\n<td>label</td>\n<td>string</td>\n<td>Label</td>\n</tr>\n<tr>\n<td>isPrivate</td>\n<td>boolean</td>\n<td>Denotes if the resource is private</td>\n</tr>\n<tr>\n<td>variableCount</td>\n<td>integer</td>\n<td>Number of variables</td>\n</tr>\n<tr>\n<td>dataSource</td>\n<td>RdsDataSource</td>\n<td>Data Source</td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n<tr>\n<td>uri</td>\n<td>string</td>\n<td>URI</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>dataProduct</td>\n<td>DataProduct</td>\n<td>Data Product</td>\n</tr>\n<tr>\n<td>urlCount</td>\n<td>integer</td>\n<td>?</td>\n</tr>\n<tr>\n<td>documentation</td>\n<td>string</td>\n<td>?</td>\n</tr>\n<tr>\n<td>keywordCount</td>\n<td>integer</td>\n<td>Number of keywords associated with this catalog</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"a9e4c683-8b31-4b57-8bb0-e1df6036d363"},{"name":"DataSetMetadata Model","id":"cfc5c5e4-8a8e-4c61-9224-111616cfc947","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>recordLayout</td>\n<td>RecordLayout</td>\n<td></td>\n</tr>\n<tr>\n<td>classifications</td>\n<td>array[Classification]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"cfc5c5e4-8a8e-4c61-9224-111616cfc947"},{"name":"ProcessStatusDetailOfMetadataServiceCompletionDetails Model","id":"ac2b6d9e-549e-4395-bfe5-c8067a16deed","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>completed</td>\n<td>integer</td>\n<td>Percent of the process that has completed</td>\n</tr>\n<tr>\n<td>statusMessage</td>\n<td>string</td>\n<td>Message about the status of the process</td>\n</tr>\n<tr>\n<td>completionDetails</td>\n<td>MetadataServiceCompletionDetails</td>\n<td>Details about the completion of the process</td>\n</tr>\n<tr>\n<td>failure</td>\n<td>Throwable</td>\n<td>Information about why the process failed, if applicable</td>\n</tr>\n<tr>\n<td>status</td>\n<td>ProcessStatus</td>\n<td>Status of the process</td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"ac2b6d9e-549e-4395-bfe5-c8067a16deed"},{"name":"SqlParameters Model","id":"81884607-9aae-4717-ab81-0ca5030049c2","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>json_DataSourceParameters</td>\n<td>DataSourceParameters</td>\n<td>A simpler and more lightweight version of a</td>\n</tr>\n<tr>\n<td>DataReaderDefinitionImpl's DataReaderConfiguration. Used to</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>quickly move configuration properties from what the user inputed to the</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>stored DataReaderDefinitionImpl. Normal DataReaderConfigurations could be</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>used instead, but are not optimal as they normally contain additional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>properties the user should not be held accountable for s(i.e. record layouts</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>or file managers).</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>recordLayout</td>\n<td>RecordLayout</td>\n<td></td>\n</tr>\n<tr>\n<td>tableName</td>\n<td>string</td>\n<td>The name of the data base table.</td>\n</tr>\n<tr>\n<td>dataSourceType</td>\n<td>QueryableDataSourceType</td>\n<td></td>\n</tr>\n<tr>\n<td>user</td>\n<td>string</td>\n<td>The user that has authorization to access or create the table.</td>\n</tr>\n<tr>\n<td>password</td>\n<td>string</td>\n<td>The password for the provided user.</td>\n</tr>\n<tr>\n<td>connectionString</td>\n<td>string</td>\n<td>The JDBC connection string for the database.</td>\n</tr>\n<tr>\n<td>readerConfiguration</td>\n<td>SqlReaderConfiguration</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"81884607-9aae-4717-ab81-0ca5030049c2"},{"name":"ConfigurationSummary Model","id":"6ca288be-26ec-4614-8602-c8dbece964cd","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>display</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>key</td>\n<td>ReaderKey</td>\n<td>Unique File Key</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"6ca288be-26ec-4614-8602-c8dbece964cd"},{"name":"ClassificationSummary Model","id":"ee479b4f-1c1d-4943-879e-9ee68896ccfa","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>version</td>\n<td>Version</td>\n<td>Version</td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"ee479b4f-1c1d-4943-879e-9ee68896ccfa"},{"name":"Classification Model","id":"af8a721a-be7a-455a-af51-d32c79810b52","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>codes</td>\n<td>array[json_Code]</td>\n<td>Codes associated with this classification</td>\n</tr>\n<tr>\n<td>levels</td>\n<td>array[Level]</td>\n<td>Levels associated with this classification</td>\n</tr>\n<tr>\n<td>rootCodeCount</td>\n<td>integer</td>\n<td>Number of codes at the root level of this code</td>\n</tr>\n<tr>\n<td>levelCount</td>\n<td>integer</td>\n<td>Number of levels associated with the classification</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"af8a721a-be7a-455a-af51-d32c79810b52"},{"name":"RdsDataSource Model","id":"284ac035-2476-4633-9ff0-ad63af8f7522","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>dataSource</td>\n<td>DataSource</td>\n<td>Data Source</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n<tr>\n<td>target</td>\n<td>SqlParameters</td>\n<td>A simpler and more lightweight version of a</td>\n</tr>\n<tr>\n<td>DataReaderDefinitionImpl's DataReaderConfiguration. Used to</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>quickly move configuration properties from what the user inputed to the</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>stored DataReaderDefinitionImpl. Normal DataReaderConfigurations could be</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>used instead, but are not optimal as they normally contain additional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>properties the user should not be held accountable for s(i.e. record layouts</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>or file managers).</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>configuration</td>\n<td>DataSourceParameters</td>\n<td>A simpler and more lightweight version of a</td>\n</tr>\n<tr>\n<td>DataReaderDefinitionImpl's DataReaderConfiguration. Used to</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>quickly move configuration properties from what the user inputed to the</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>stored DataReaderDefinitionImpl. Normal DataReaderConfigurations could be</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>used instead, but are not optimal as they normally contain additional</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>properties the user should not be held accountable for s(i.e. record layouts</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>or file managers).</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"284ac035-2476-4633-9ff0-ad63af8f7522"},{"name":"FormattedFrequencies Model","id":"13148ea4-368d-466a-a775-dfab98c5e447","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>sets</td>\n<td>array[FormattedFrequencySet]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"13148ea4-368d-466a-a775-dfab98c5e447"},{"name":"FormattedFrequencySet Model","id":"2bbd0698-667b-4a2b-859c-023baabdcd44","request":{"method":"VIEW","header":[],"url":"","description":"<p>| Property | Type | Description || --------:| ---- | ----------- |</p>\n","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"2bbd0698-667b-4a2b-859c-023baabdcd44"},{"name":"Code Model","id":"d125a6e7-e5b7-4af6-8299-30f07466d1e6","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reference</td>\n<td>boolean</td>\n<td>Denotes if code is a reference</td>\n</tr>\n<tr>\n<td>revisionNumber</td>\n<td>integer</td>\n<td>Revision number</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the code</td>\n</tr>\n<tr>\n<td>isPrivate</td>\n<td>boolean</td>\n<td>Denotes if code is private</td>\n</tr>\n<tr>\n<td>uri</td>\n<td>string</td>\n<td>Code's URI</td>\n</tr>\n<tr>\n<td>codeValue</td>\n<td>string</td>\n<td>Value of the code</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"d125a6e7-e5b7-4af6-8299-30f07466d1e6"},{"name":"Level Model","id":"570ea3aa-5d7a-4b72-b0c6-40bf483e120e","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>categorySetUriUri</td>\n<td>string</td>\n<td>Uri of the level's CategorySet</td>\n</tr>\n<tr>\n<td>codes</td>\n<td>array[json_Code]</td>\n<td>Codes in this level</td>\n</tr>\n<tr>\n<td>conceptUri</td>\n<td>Concept</td>\n<td>Concept associated with this level</td>\n</tr>\n<tr>\n<td>conceptUriUri</td>\n<td>string</td>\n<td>Uri of the concept associated with this level</td>\n</tr>\n<tr>\n<td>codeCount</td>\n<td>integer</td>\n<td>Number of codes in this level</td>\n</tr>\n<tr>\n<td>depth</td>\n<td>integer</td>\n<td>Depth of this level</td>\n</tr>\n<tr>\n<td>codeDataType</td>\n<td>CodeDataType</td>\n<td>Codes' data type. (i.e., alpha, alpha-numeric, numeric, numeric-alpha)</td>\n</tr>\n<tr>\n<td>codePattern</td>\n<td>string</td>\n<td>?</td>\n</tr>\n<tr>\n<td>categorySetUri</td>\n<td>CategorySet</td>\n<td>Category set associated with this level</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"570ea3aa-5d7a-4b72-b0c6-40bf483e120e"},{"name":"Variable Model","id":"c861e9ac-951e-4f97-b699-96e880fef72b","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>storageType</td>\n<td>string</td>\n<td>Variable's storage type</td>\n</tr>\n<tr>\n<td>weight</td>\n<td>boolean</td>\n<td>Denotes if the variable is weighed</td>\n</tr>\n<tr>\n<td>required</td>\n<td>boolean</td>\n<td>Denotes if the variable is required</td>\n</tr>\n<tr>\n<td>startPosition</td>\n<td>integer</td>\n<td>Start position of this variable in the metadata document</td>\n</tr>\n<tr>\n<td>frequencies</td>\n<td>Frequencies</td>\n<td>Variable frequencies, if available</td>\n</tr>\n<tr>\n<td>classification</td>\n<td>Classification</td>\n<td>Classification associated with the variable, if available</td>\n</tr>\n<tr>\n<td>index</td>\n<td>integer</td>\n<td>Index of the variable</td>\n</tr>\n<tr>\n<td>summaryStatistics</td>\n<td>SummaryStatistics</td>\n<td>Summary statistics, if available</td>\n</tr>\n<tr>\n<td>endPosition</td>\n<td>integer</td>\n<td>End position of the variable in the metadata document</td>\n</tr>\n<tr>\n<td>disclosive</td>\n<td>boolean</td>\n<td>Denotes whether or not this variable is disclosive</td>\n</tr>\n<tr>\n<td>decimals</td>\n<td>integer</td>\n<td>Number of decimal places allowed for variable</td>\n</tr>\n<tr>\n<td>classificationUri</td>\n<td>string</td>\n<td>Uri of the variable's classification</td>\n</tr>\n<tr>\n<td>computation</td>\n<td>Computation</td>\n<td>?</td>\n</tr>\n<tr>\n<td>dataType</td>\n<td>string</td>\n<td>Variable's data type</td>\n</tr>\n<tr>\n<td>questionText</td>\n<td>string</td>\n<td>Question text associated with the variable</td>\n</tr>\n<tr>\n<td>measure</td>\n<td>boolean</td>\n<td>?</td>\n</tr>\n<tr>\n<td>fixedStorageWidth</td>\n<td>integer</td>\n<td>?</td>\n</tr>\n<tr>\n<td>format</td>\n<td>string</td>\n<td>? examples?</td>\n</tr>\n<tr>\n<td>synonymCount</td>\n<td>integer</td>\n<td>?</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"c861e9ac-951e-4f97-b699-96e880fef72b"},{"name":"FrequencySet Model","id":"4cb31d6f-0de4-4e05-bfe5-e018f39b73c3","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>weighted</td>\n<td>boolean</td>\n<td>Denotes if this frequency set is weighted</td>\n</tr>\n<tr>\n<td>map</td>\n<td>object</td>\n<td>?</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"4cb31d6f-0de4-4e05-bfe5-e018f39b73c3"},{"name":"RdsFormattedVariableProfile Model","id":"8e7ab4ff-7db1-4708-8d6e-ec0f03cdcfd3","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>frequencies</td>\n<td>FormattedFrequencies</td>\n<td>Variable frequencies, if available</td>\n</tr>\n<tr>\n<td>summaryStatistics</td>\n<td>SummaryStatistics</td>\n<td>Summary statistics, if available</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"8e7ab4ff-7db1-4708-8d6e-ec0f03cdcfd3"},{"name":"VariableGroup Model","id":"4c5361c9-e15b-4a32-b90d-d1671d1ef6af","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>purpose</td>\n<td>string</td>\n<td>Purpose of the variable group</td>\n</tr>\n<tr>\n<td>variables</td>\n<td>array[Variable]</td>\n<td>Variables in the group</td>\n</tr>\n<tr>\n<td>variableCount</td>\n<td>integer</td>\n<td>Number of variables</td>\n</tr>\n<tr>\n<td>cardinality</td>\n<td>Cardinality</td>\n<td>Variable group's cardinality</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"4c5361c9-e15b-4a32-b90d-d1671d1ef6af"},{"name":"VariableGroupSummary Model","id":"4eb07bc9-d539-4664-8da1-de9295b5a6fb","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>json_Summary</td>\n<td>Summary</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"4eb07bc9-d539-4664-8da1-de9295b5a6fb"},{"name":"VariableSummary Model","id":"40a2a324-c06f-43a4-84d2-0b1a34ba2aa9","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>json_Summary</td>\n<td>Summary</td>\n<td></td>\n</tr>\n<tr>\n<td>weight</td>\n<td>boolean</td>\n<td>Denotes if the variable is weighed</td>\n</tr>\n<tr>\n<td>classificationUri</td>\n<td>string</td>\n<td>Uri of the variable's classification</td>\n</tr>\n<tr>\n<td>storageType</td>\n<td>string</td>\n<td>Variable's storage type</td>\n</tr>\n<tr>\n<td>required</td>\n<td>boolean</td>\n<td>Denotes if the variable is required</td>\n</tr>\n<tr>\n<td>measure</td>\n<td>boolean</td>\n<td>?</td>\n</tr>\n<tr>\n<td>questionText</td>\n<td>string</td>\n<td>Question text associated with the variable</td>\n</tr>\n<tr>\n<td>classificationId</td>\n<td>string</td>\n<td>Classification ID</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>index</td>\n<td>integer</td>\n<td>Index of the variable</td>\n</tr>\n<tr>\n<td>dataType</td>\n<td>string</td>\n<td>Variable's data type</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"40a2a324-c06f-43a4-84d2-0b1a34ba2aa9"},{"name":"RdsFormattedVariableProfile Model","id":"7294c9ed-8caf-432e-8edf-dfbeb4ff84ac","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>frequencies</td>\n<td>FormattedFrequencies</td>\n<td>Variable frequencies, if available</td>\n</tr>\n<tr>\n<td>summaryStatistics</td>\n<td>SummaryStatistics</td>\n<td>Summary statistics, if available</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"7294c9ed-8caf-432e-8edf-dfbeb4ff84ac"}],"id":"372f1e2d-69f6-4214-aa55-0e6a07371eed","_postman_id":"372f1e2d-69f6-4214-aa55-0e6a07371eed","description":""},{"name":"QueryController","item":[],"id":"1f4cc533-95cb-40b0-b141-5a3cfc24ee9e","_postman_id":"1f4cc533-95cb-40b0-b141-5a3cfc24ee9e","description":""},{"name":"PackagingController","item":[{"name":"OptionBundle Model","id":"fc0ac768-f192-470f-9972-4d77f52ea665","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>type</td>\n<td>ServiceType</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the resource</td>\n</tr>\n<tr>\n<td>includedFormats</td>\n<td>array[PackagingFormat]</td>\n<td>?</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>options</td>\n<td>array[OptionSet]</td>\n<td>?</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"fc0ac768-f192-470f-9972-4d77f52ea665"},{"name":"PackagingOptions Model","id":"05be5f12-7a99-425c-8154-47f153e6797b","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>metadata</td>\n<td>array[PackagingFormat]</td>\n<td>?</td>\n</tr>\n<tr>\n<td>scripts</td>\n<td>array[PackagingFormat]</td>\n<td>?</td>\n</tr>\n<tr>\n<td>data</td>\n<td>array[PackagingFormat]</td>\n<td>?</td>\n</tr>\n<tr>\n<td>documents</td>\n<td>array[PackagingFormat]</td>\n<td>?</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"05be5f12-7a99-425c-8154-47f153e6797b"},{"name":"ProcessStatusDetailOfPackagingCompletionDetails Model","id":"972ca695-0617-4610-a30f-fdee252c0806","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>ProcessStatus</td>\n<td>Status of the process</td>\n</tr>\n<tr>\n<td>completed</td>\n<td>integer</td>\n<td>Percent of the process that has completed</td>\n</tr>\n<tr>\n<td>completionDetails</td>\n<td>PackagingCompletionDetails</td>\n<td>Details about the completion of the process</td>\n</tr>\n<tr>\n<td>failure</td>\n<td>Throwable</td>\n<td>Information about why the process failed, if applicable</td>\n</tr>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>ID</td>\n</tr>\n<tr>\n<td>statusMessage</td>\n<td>string</td>\n<td>Message about the status of the process</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"972ca695-0617-4610-a30f-fdee252c0806"},{"name":"OptionSet Model","id":"691c1cb3-2219-4360-b8a4-8ffc011c0b2a","request":{"method":"VIEW","header":[],"url":"","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>The instance ID of this option set, used to uniquely identify the option</td>\n</tr>\n<tr>\n<td>set.</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>contentType</td>\n<td>string</td>\n<td>This is for the backend to know what content type to return if a single</td>\n</tr>\n<tr>\n<td>file is packaged, should not be needed by the front end</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>format</td>\n<td>string</td>\n<td>The packaging format ID, to link to the packaging format and access its</td>\n</tr>\n<tr>\n<td>description and name.</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>options</td>\n<td>array[Option]</td>\n<td>?</td>\n</tr>\n<tr>\n<td>type</td>\n<td>OptionType</td>\n<td>The type of option: DATA, DOCUMENT, METADATA, SCRIPT</td>\n</tr>\n<tr>\n<td>fileExtension</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"691c1cb3-2219-4360-b8a4-8ffc011c0b2a"}],"id":"8ceef29c-fb62-4c96-9711-f4ed5cbf4ead","_postman_id":"8ceef29c-fb62-4c96-9711-f4ed5cbf4ead","description":""}],"id":"c9f11dcb-1bfe-452b-a81a-61276e27778e","description":"<p>Data Models</p>\n","_postman_id":"c9f11dcb-1bfe-452b-a81a-61276e27778e"}]}