diff --git "a/croissant.json" "b/croissant.json" new file mode 100644--- /dev/null +++ "b/croissant.json" @@ -0,0 +1,37180 @@ +{ + "@context": { + "@language": "en", + "@vocab": "https://schema.org/", + "citeAs": "cr:citeAs", + "column": "cr:column", + "conformsTo": "dct:conformsTo", + "containedIn": "cr:containedIn", + "cr": "http://mlcommons.org/croissant/", + "data": { + "@id": "cr:data", + "@type": "@json" + }, + "dataType": { + "@id": "cr:dataType", + "@type": "@vocab" + }, + "dct": "http://purl.org/dc/terms/", + "examples": { + "@id": "cr:examples", + "@type": "@json" + }, + "extract": "cr:extract", + "field": "cr:field", + "fileProperty": "cr:fileProperty", + "fileObject": "cr:fileObject", + "fileSet": "cr:fileSet", + "format": "cr:format", + "includes": "cr:includes", + "isLiveDataset": "cr:isLiveDataset", + "jsonPath": "cr:jsonPath", + "key": "cr:key", + "md5": "cr:md5", + "parentField": "cr:parentField", + "path": "cr:path", + "prov": "http://www.w3.org/ns/prov#", + "rai": "http://mlcommons.org/croissant/RAI/", + "recordSet": "cr:recordSet", + "references": "cr:references", + "regex": "cr:regex", + "repeated": "cr:repeated", + "replace": "cr:replace", + "sc": "https://schema.org/", + "separator": "cr:separator", + "source": "cr:source", + "subField": "cr:subField", + "transform": "cr:transform" + }, + "@type": "sc:Dataset", + "conformsTo": [ + "http://mlcommons.org/croissant/1.1", + "http://mlcommons.org/croissant/RAI/1.0" + ], + "name": "STRABLE-benchmark", + "description": "STRABLE: Benchmarking Tabular Machine Learning with Strings. A corpus of 108 real-world tabular learning problems containing string and numerical features, drawn from 33 public sources across 8 application fields (Commerce, Economy, Education, Energy, Food, Health, Infrastructure, Social). Each dataset is provided as a single parquet file with a companion config.json declaring the target column and task type. Minimal preprocessing was applied: no feature engineering, no imputation, no categorical encoding. 13 binary classification, 19 multi-class classification, and 76 regression tasks.", + "alternateName": [ + "STRABLE", + "STRABLE Benchmark" + ], + "creator": { + "@type": "Organization", + "name": "Anonymous (under double-blind review)" + }, + "keywords": [ + "tabular", + "benchmark", + "strings", + "tabular machine learning", + "string encoding", + "LLM embeddings", + "Croissant" + ], + "license": "https://creativecommons.org/licenses/by/4.0/", + "url": "https://huggingface.co/datasets/strablebench/STRABLE", + "version": "1.0.0", + "datePublished": "2026-05-02", + "citation": "Anonymous Authors. STRABLE: Benchmarking Tabular Machine Learning with Strings. Submitted to NeurIPS 2026 Datasets and Benchmarks Track.", + "citeAs": "@unpublished{strable2026, title={STRABLE: Benchmarking Tabular Machine Learning with Strings}, author={Anonymous Authors}, year={2026}}", + "rai:dataCollection": "Aggregated from 33 distinct public data sources spanning 8 application fields (Commerce, Economy, Education, Energy, Food, Health, Infrastructure, Social). Sources include government and financial institutions (World Bank, FDA, Medicaid, HRSA), community-driven platforms (Yelp Open Dataset, LendingClub, Kaggle), and international organizations. Tables were manually selected requiring at least two string columns, a minimum of 500 samples, and a relevant target variable for supervised learning. Minimal preprocessing was applied: flattening nested structures, removing duplicate rows, dropping single-value and all-null columns, removing rows with missing labels, and removing features that are trivial functions of the target. Large tables were sub-sampled to a maximum of 75,000 rows. For regression tasks, a skewness-minimization protocol was applied. See Section 3 of the paper for full details.", + "rai:dataCollectionType": [ + "Secondary Data Analysis", + "Web Scraping", + "Web API", + "Manual Human Curation", + "Software Collection" + ], + "rai:dataCollectionMissingData": "Missing entries were preserved in their original form and not imputed. Handling of missing values was delegated to the encoder-learner pipelines evaluated in the benchmark. All-null columns and rows with missing target labels were removed during preprocessing.", + "rai:dataCollectionRawData": "Raw data sourced from 33 public repositories including: World Bank Open Finances, FDA Open APIs (drug, food, device, cosmetic, tobacco endpoints), Medicaid data portal, HRSA data warehouse, HIFLD open data, ClinicalTrials.gov, European Medicines Agency, UN OCHA Financial Tracking Service, SCIMAGO journal rankings, Yelp Open Dataset, LendingClub, Kaggle, and others. Full source URLs for all 108 datasets are listed in Appendix C.4 of the paper.", + "rai:dataCollectionTimeframe": [ + { + "@value": "2024-01-01T00:00:00", + "dataType": "sc:Date" + }, + { + "@value": "2026-01-31T00:00:00", + "dataType": "sc:Date" + } + ], + "rai:dataPreprocessingProtocol": [ + "Flattened nested structures from JSON and HTML sources into tabular format.", + "Removed duplicate rows and dropped single-value columns and all-null columns.", + "Removed rows with missing target labels.", + "Removed features where Xi is a trivial function of the target to prevent leakage.", + "For temporal or panel sources, adopted a snapshot strategy extracting only the most recent year of data.", + "Sub-sampled large tables to a maximum of 75,000 rows using a fixed random seed (stratified for classification, simple random for regression).", + "For regression targets with heavy skew, applied a skewness-minimization transformation selected from {log(y), log(1+y), cube root, arcsinh(y), sgn(y)*log(1+|y|)}." + ], + "rai:dataImputationProtocol": "No imputation was applied. Missing values are preserved as null entries and handed to the encoder-learner pipelines for native handling. This is a deliberate design choice to enable the study of alternative missing-value strategies.", + "rai:dataManipulationProtocol": "Feature engineering was deliberately avoided to reflect data as found rather than as curated. Categorical and string columns remain in their raw form to support the study of alternative encoding strategies. Features that act as trivial functions of the target were removed to prevent leakage.", + "rai:dataAnnotationProtocol": "No human annotation was performed beyond the manual selection of target columns and the validation of an automatic semantic-type profiler over a 30-dataset sample (97% agreement with manual annotation; see Appendix C.6 of the paper).", + "rai:dataUseCases": [ + "Benchmarking and comparing tabular machine learning methods on tables containing string features.", + "Evaluating string encoding strategies (categorical encoders, TF-IDF, sentence transformers, LLM embeddings) paired with tabular learners (Ridge, ExtraTrees, XGBoost, TabPFN).", + "Evaluating end-to-end architectures (CatBoost, TabSTAR, ContextTab) that jointly process strings and numbers.", + "Studying the interplay between encoder complexity and learner sophistication.", + "Analyzing benchmark stability and generalizability of model rankings across application domains." + ], + "rai:dataLimitations": [ + "STRABLE reflects the string distribution in typical data-science tables, with short strings (median 17 characters) rather than long-form text. It enables only limited study of sentence-heavy tables.", + "The benchmark does not address time-series specific validation protocols, leaving exploration of temporal dynamics for future work.", + "Sources are predominantly English-language and US-centric, which may limit generalizability to other linguistic or geographic contexts.", + "The corpus was manually curated, introducing potential selection bias in which tables and target variables were chosen.", + "Sub-sampling large tables to 75,000 rows may not capture patterns present only at larger scales." + ], + "rai:dataBiases": [ + "Economy and Health categories are overrepresented (26 and 30 datasets respectively) compared to Commerce (5), Social (4), and Food (6), reflecting the availability of public institutional data sources.", + "Regression tasks dominate (76 of 108) versus classification (32), which may bias overall benchmark conclusions toward regression-oriented findings.", + "The Food application field contains tables with unusually long review strings, creating a domain where model rankings diverge significantly from the overall benchmark (Kendall-tau = 0.25)." + ], + "rai:personalSensitiveInformation": "The benchmark is constructed entirely from publicly available institutional and community datasets. No personally identifiable information (PII) was specifically collected or targeted. Some source datasets (e.g., consumer complaints, loan data, clinical trials) may contain indirect identifiers such as geographic locations, dates, or organizational names that were present in the original public releases. No additional anonymization beyond what was applied by the original data providers was performed.", + "rai:dataSocialImpact": "STRABLE is designed to advance machine learning research on tabular data containing strings, a common but understudied setting. The benchmark draws from application fields including health, education, and economy where improved ML tools can have positive societal impact. The benchmark itself does not deploy models in production. As with any ML benchmark, there is a risk that overfitting to the benchmark could lead to methods that perform well on STRABLE but generalize poorly to real-world deployment scenarios.", + "rai:dataReleaseMaintenancePlan": "The benchmark is released as a versioned static corpus of 108 datasets hosted at https://huggingface.co/datasets/strablebench/STRABLE. No automatic updates are planned, but future versions may expand the corpus. The code repository will be made available separately.", + "rai:hasSyntheticData": false, + "prov:wasGeneratedBy": "STRABLE was assembled by the authors through manual curation of publicly available tabular datasets from 33 institutional and community sources. For each candidate table, the authors selected an appropriate target column, applied minimal preprocessing (flattening nested structures, removing duplicates and trivial-of-target features), optionally sub-sampled to 75,000 rows, and applied a skewness-minimizing transformation to regression targets. No model or generative process was used to produce the data; all entries originate from real-world records. See Section 3 and Appendix C of the paper for the full assembly protocol.", + "distribution": [ + { + "@type": "cr:FileObject", + "@id": "parquet-aca-federal-upper-limits-wide", + "name": "aca-federal-upper-limits-wide/data.parquet", + "description": "Parquet file for the 'aca-federal-upper-limits-wide' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/aca-federal-upper-limits-wide/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "dead03fc6097cb0417096cea444627ab439c84e4e133da8b81afaf0db9ff603e" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-aijob_ai-ml-ds-salaries", + "name": "aijob_ai-ml-ds-salaries/data.parquet", + "description": "Parquet file for the 'aijob_ai-ml-ds-salaries' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/aijob_ai-ml-ds-salaries/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "3e43807107cf0aa6c276e36e59abd8841591aaa5416573e16ef708ea9caad4d3" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-animalandveterinary-event", + "name": "animalandveterinary-event/data.parquet", + "description": "Parquet file for the 'animalandveterinary-event' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/animalandveterinary-event/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "0c916b50ddf61014aea5f9e0aaada45d3c08fb912470e42780bc8ff9e03badab" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-antenna-structure-registration", + "name": "antenna-structure-registration/data.parquet", + "description": "Parquet file for the 'antenna-structure-registration' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/antenna-structure-registration/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "f186728428777032eda8ea824f9d442097e05fb3feaed903b2c9a4289c98f419" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-awarded-grants", + "name": "awarded-grants/data.parquet", + "description": "Parquet file for the 'awarded-grants' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/awarded-grants/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d83fb6bee23cec28a5bc3ab217c2822ce43a3f801b34c7e12547b2fbabba42be" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-beer-ratings", + "name": "beer-ratings/data.parquet", + "description": "Parquet file for the 'beer-ratings' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/beer-ratings/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "81d02d1e497188a5e61aca779a7e3a67d01320347b8ee55c3343b16fb63fb2ca" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-broadband-availability", + "name": "broadband-availability/data.parquet", + "description": "Parquet file for the 'broadband-availability' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/broadband-availability/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "89727485cb485ce4e35c64a28ce9e9fd060dedb807d5e79181253270a8cd4ffa" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-california-houses", + "name": "california-houses/data.parquet", + "description": "Parquet file for the 'california-houses' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/california-houses/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "5108c4451ee4f1894ab9036f9eec61b9fb7640ebffdef8a7e08668720a4f123a" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-child-adult-healthcare-quality", + "name": "child-adult-healthcare-quality/data.parquet", + "description": "Parquet file for the 'child-adult-healthcare-quality' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/child-adult-healthcare-quality/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "6f623f743d6b4c84bc4de3ac058226af251317ce1cc1c4f6f3fc6b3a44fba0ae" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-china-overseas-finance-inventory", + "name": "china-overseas-finance-inventory/data.parquet", + "description": "Parquet file for the 'china-overseas-finance-inventory' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/china-overseas-finance-inventory/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "b0b7803556e9e5414277093d2bf36e432ce75f18f13cfa13b45ca77fc22971c5" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-chocolate-bar-ratings", + "name": "chocolate-bar-ratings/data.parquet", + "description": "Parquet file for the 'chocolate-bar-ratings' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/chocolate-bar-ratings/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "c92595077ce6b5e37549d37113c23e088ce70073026364c42cf245ad7033c6dd" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-clear-corpus", + "name": "clear-corpus/data.parquet", + "description": "Parquet file for the 'clear-corpus' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/clear-corpus/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "f9907f5f72e8aa3349245ceec0af2631ce9600ef4634661f8394aa4e80595b47" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-cohort-default-rate", + "name": "cohort-default-rate/data.parquet", + "description": "Parquet file for the 'cohort-default-rate' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/cohort-default-rate/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "101a2896275eb64619b2be2d8c750aea58b19a1569676328103507ac1f213cfe" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-college-creditcard-marketing", + "name": "college-creditcard-marketing/data.parquet", + "description": "Parquet file for the 'college-creditcard-marketing' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/college-creditcard-marketing/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d4a15042dcb43dbc26c59b0b160e03894e838c80270b1b4471cd521523a89043" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-college-deposit-product-marketing", + "name": "college-deposit-product-marketing/data.parquet", + "description": "Parquet file for the 'college-deposit-product-marketing' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/college-deposit-product-marketing/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "64a9e95c0bb51fea1420a7cdc85645b5ffb838a0f188f4f92d32567a1db39a98" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-colleges-and-universities", + "name": "colleges-and-universities/data.parquet", + "description": "Parquet file for the 'colleges-and-universities' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/colleges-and-universities/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "5667104b84cd9b8a7f8e1e2b7ef8cb94aa7193cc511a23141b62ebceabc8bdf5" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-commitments-in-trust-funds", + "name": "commitments-in-trust-funds/data.parquet", + "description": "Parquet file for the 'commitments-in-trust-funds' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/commitments-in-trust-funds/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d4806e83b3c4c9b6ad9ddb551ea32afdd272b0adf2fb6cb7164d6d79b1eb3333" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-community-banking_wide", + "name": "community-banking_wide/data.parquet", + "description": "Parquet file for the 'community-banking_wide' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/community-banking_wide/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "fe0e09925655e2bfab638d966300c5ef4678bfce4b6d2b9b23bf140cde195c3f" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-conflict-events_wide", + "name": "conflict-events_wide/data.parquet", + "description": "Parquet file for the 'conflict-events_wide' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/conflict-events_wide/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "f087b8b85b8e1e2898f0a4a0e6c4a9ba35c6d513a443818c6d1cab87464cd6d2" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-contract-awards-investment-project-financing", + "name": "contract-awards-investment-project-financing/data.parquet", + "description": "Parquet file for the 'contract-awards-investment-project-financing' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/contract-awards-investment-project-financing/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "57e2ebe1107ff65aed178775561ae418cbb9c3596b7b6fa3290ff09d1ee75dbb" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-contributions-to-financial-intermediary-funds", + "name": "contributions-to-financial-intermediary-funds/data.parquet", + "description": "Parquet file for the 'contributions-to-financial-intermediary-funds' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/contributions-to-financial-intermediary-funds/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "3d5ab1641563d3b996b7cc4dd8cde2cd05db5fae84c50386c655237af47d2b4f" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-corporate-procurement-contract-awards", + "name": "corporate-procurement-contract-awards/data.parquet", + "description": "Parquet file for the 'corporate-procurement-contract-awards' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/corporate-procurement-contract-awards/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "b0395abcb9fae27d450aa5592a702c875745a71bd620a3e97cb5110c698afa58" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-cosmetic-event", + "name": "cosmetic-event/data.parquet", + "description": "Parquet file for the 'cosmetic-event' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/cosmetic-event/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "f644344eb006bc7aa696b07d47cd7946b65fa9289785d689abdeee619fe8a879" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-covid-clinical-trials", + "name": "covid-clinical-trials/data.parquet", + "description": "Parquet file for the 'covid-clinical-trials' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/covid-clinical-trials/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d8c55ab3db68324a17ae6637b3da97feae193d51c65a8b7b43118155a05fa0f0" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-device-classification", + "name": "device-classification/data.parquet", + "description": "Parquet file for the 'device-classification' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/device-classification/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "de6cf6e9d558c7c6ec713cfd4ee279908bd0754cfb5d04c59cdfcee9a71c7039" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-device-covid19serology", + "name": "device-covid19serology/data.parquet", + "description": "Parquet file for the 'device-covid19serology' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/device-covid19serology/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "f1abbce119058ec6ef7638585aaaa6b316ee0a7dd3f4fccd332f7b75ce046b4d" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-device-pma", + "name": "device-pma/data.parquet", + "description": "Parquet file for the 'device-pma' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/device-pma/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "ee12e9b636e687845e99f2c9904c382176eb005060e0b10c36af891cf0147d0a" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-disbursements-in-trust-funds", + "name": "disbursements-in-trust-funds/data.parquet", + "description": "Parquet file for the 'disbursements-in-trust-funds' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/disbursements-in-trust-funds/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d204e00981883e108c1ac709592e6b560c3c92e0d3d37e2307084f4dd7781a3b" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-discretionary-grant", + "name": "discretionary-grant/data.parquet", + "description": "Parquet file for the 'discretionary-grant' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/discretionary-grant/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "e58c29e33ad24795984b52baf19f6eede7ff6e0d62ee5fa06247603081e8b8a5" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-drug-drugsfda", + "name": "drug-drugsfda/data.parquet", + "description": "Parquet file for the 'drug-drugsfda' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/drug-drugsfda/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "fc24404e815908923df561c585290cf06429148a2f4b0c62fbfb1638efe8c5f0" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-drug-enforcement", + "name": "drug-enforcement/data.parquet", + "description": "Parquet file for the 'drug-enforcement' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/drug-enforcement/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "4fa38d8097fb029da147aed305f5f485acc0a82b11d125d3919d98e10b8197cc" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-drug-ndc", + "name": "drug-ndc/data.parquet", + "description": "Parquet file for the 'drug-ndc' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/drug-ndc/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "2fd38ba8fe80905ff4212f1f10967cf0797895779aa32a43f8fc2f0eacc04df8" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-drug-shortages", + "name": "drug-shortages/data.parquet", + "description": "Parquet file for the 'drug-shortages' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/drug-shortages/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "a3e9cffbd7b3b2b241f0a79e7338cc3e342da1ef7ce7d60bf744212f4e08074a" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-electric-generating-plants", + "name": "electric-generating-plants/data.parquet", + "description": "Parquet file for the 'electric-generating-plants' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/electric-generating-plants/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "b2e6ef29c7dc751704d130182ea2ff00b6c73c7d3f9b43be60d02f72d1f1e620" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-electric-retail-service-territories", + "name": "electric-retail-service-territories/data.parquet", + "description": "Parquet file for the 'electric-retail-service-territories' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/electric-retail-service-territories/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "b5c3f3021511b2f08ccaf58fd1cedf716499e86a548e0d638250101966f08bf7" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-external-clinician-dashboard", + "name": "external-clinician-dashboard/data.parquet", + "description": "Parquet file for the 'external-clinician-dashboard' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/external-clinician-dashboard/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "be4aea8c5866e477e7afec5a886be8c99ecd7a4d340d873a6a5dfd0b5c3e77e2" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-financial-intermediary-funds-cash-transfers", + "name": "financial-intermediary-funds-cash-transfers/data.parquet", + "description": "Parquet file for the 'financial-intermediary-funds-cash-transfers' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/financial-intermediary-funds-cash-transfers/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "8c98029f8675ddb2fd996a274689bac13b35537e426cab550d5f186966cd8203" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-financial-intermediary-funds-commitments", + "name": "financial-intermediary-funds-commitments/data.parquet", + "description": "Parquet file for the 'financial-intermediary-funds-commitments' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/financial-intermediary-funds-commitments/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "3c11a6b0b542b580450db11ffe91f1b013643da0a042d2aeae35eee5d48ef4f6" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-financial-intermediary-funds-funding-decisions", + "name": "financial-intermediary-funds-funding-decisions/data.parquet", + "description": "Parquet file for the 'financial-intermediary-funds-funding-decisions' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/financial-intermediary-funds-funding-decisions/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d7c884fc2c1cf4e7cb078cef63dbede86dc69745194a0739411bc29a0269ba6c" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-financial-management", + "name": "financial-management/data.parquet", + "description": "Parquet file for the 'financial-management' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/financial-management/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "0efca559a5fbe5172c58effafbffabc5dd0ca44ad72fb30cacdf48ac220e9d89" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-financial-product-complaint", + "name": "financial-product-complaint/data.parquet", + "description": "Parquet file for the 'financial-product-complaint' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/financial-product-complaint/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d789aa4ff0d5284173fc056425ed3f06b665ea60f91a4632faa135588827805b" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-first-time-nadac-rates", + "name": "first-time-nadac-rates/data.parquet", + "description": "Parquet file for the 'first-time-nadac-rates' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/first-time-nadac-rates/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "cfea67e74161813e77d303f05054649fafbe8759d43f14504e5517a0c584efa8" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-food-enforcement", + "name": "food-enforcement/data.parquet", + "description": "Parquet file for the 'food-enforcement' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/food-enforcement/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "f549c945710837090643c15a4a0f4299653d1b9808f8b3108abb8e7fe674b9de" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-food-event", + "name": "food-event/data.parquet", + "description": "Parquet file for the 'food-event' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/food-event/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "b2bee118ff9cf967a4076e712d82d082e6c0ae41b9ce0d4a9e63892cbf953bd1" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-food-prices_wide", + "name": "food-prices_wide/data.parquet", + "description": "Parquet file for the 'food-prices_wide' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/food-prices_wide/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "958262c929f70ee85f920473ad17b81ae0a7b9622b95ec092e3b53f80a2dbbe4" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-foreign-gift-and-contract", + "name": "foreign-gift-and-contract/data.parquet", + "description": "Parquet file for the 'foreign-gift-and-contract' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/foreign-gift-and-contract/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "f74ad2281a6627df3fa160e62879778b25200f6b85720d926242c4aafa80bc8f" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-fts-funding", + "name": "fts-funding/data.parquet", + "description": "Parquet file for the 'fts-funding' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/fts-funding/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "5edd04b83976000dce54fddbe0024d1fc5d7c4d785c82eb5bfd746f9affd565c" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-fts-requirement-and-funding", + "name": "fts-requirement-and-funding/data.parquet", + "description": "Parquet file for the 'fts-requirement-and-funding' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/fts-requirement-and-funding/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "35933e61b097a70e0647e05e2d758d9587076f2667a5976a363b58fe0986c1a9" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-gainful-employment", + "name": "gainful-employment/data.parquet", + "description": "Parquet file for the 'gainful-employment' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/gainful-employment/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "18b2b5e99e2973967f8164f409d107f6caba05cde1d2dd61bb09a0c183726ccb" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-global-dams-database", + "name": "global-dams-database/data.parquet", + "description": "Parquet file for the 'global-dams-database' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/global-dams-database/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "f5783360186dfc61d60d08758d1aee3ab24ffb829d6ad845c565554a7b87dad7" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-global-power-plant", + "name": "global-power-plant/data.parquet", + "description": "Parquet file for the 'global-power-plant' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/global-power-plant/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "30c0e23f6ab1f501933be73d40c3905ac6b436621cecf0298ea1d1cacc3dc9c5" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-grant", + "name": "grant/data.parquet", + "description": "Parquet file for the 'grant' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/grant/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "fe105c2b1056fc6270c0abf02eb4b92757ff4768f555358f3f40125477320d47" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-health-professional-shortage-areas", + "name": "health-professional-shortage-areas/data.parquet", + "description": "Parquet file for the 'health-professional-shortage-areas' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/health-professional-shortage-areas/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "c537f13f4c188fa6c67250355f2c5d5ae3059c51485a182cddffb54522f38214" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-historic-perimeters-wildfires", + "name": "historic-perimeters-wildfires/data.parquet", + "description": "Parquet file for the 'historic-perimeters-wildfires' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/historic-perimeters-wildfires/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "01ee5f3662ca5a0c13d1d5eb91b7bfd0c2b51bcc67c24732fda1e845c9f26e64" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-historical-earthquake-locations", + "name": "historical-earthquake-locations/data.parquet", + "description": "Parquet file for the 'historical-earthquake-locations' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/historical-earthquake-locations/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "465b4b00fe7deb94117483c92a93d5ad14f122f8d709ef95e2c92af10e297053" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-historical-volcanic-locations", + "name": "historical-volcanic-locations/data.parquet", + "description": "Parquet file for the 'historical-volcanic-locations' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/historical-volcanic-locations/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "6d5d151c09b2cadac889d823d530a66e031a0920492acb93346a864a82ba930e" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-hospitals", + "name": "hospitals/data.parquet", + "description": "Parquet file for the 'hospitals' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/hospitals/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "0af025a785e06a0b5f11bd87f872495af8a2aa6ead4fe8892473cf66c5b174fe" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-hypertension-control-wide", + "name": "hypertension-control-wide/data.parquet", + "description": "Parquet file for the 'hypertension-control-wide' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/hypertension-control-wide/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d4661f53a53be93f15f47694c38967f6eb8e14df0455ad4589994065a39475e0" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-ibrd-statement-loans-guarantees", + "name": "ibrd-statement-loans-guarantees/data.parquet", + "description": "Parquet file for the 'ibrd-statement-loans-guarantees' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/ibrd-statement-loans-guarantees/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "36a0317958e55bca0899f42ca21a58c2ee15e86db53f477b4d7cd7a0dfefc5ec" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-ida-statement-credits-grants-guarantees", + "name": "ida-statement-credits-grants-guarantees/data.parquet", + "description": "Parquet file for the 'ida-statement-credits-grants-guarantees' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/ida-statement-credits-grants-guarantees/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "48f50ea995114bd43cd6b92c83f53372464741fae5e765d9238f96ff0e5cb428" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-ifc-advisory-services-projects", + "name": "ifc-advisory-services-projects/data.parquet", + "description": "Parquet file for the 'ifc-advisory-services-projects' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/ifc-advisory-services-projects/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "185c5c2221c6fa40884ca5f4242afd7035074fd0659ad43708a302e9d0fb5cb6" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-ifc-investment-service-projects", + "name": "ifc-investment-service-projects/data.parquet", + "description": "Parquet file for the 'ifc-investment-service-projects' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/ifc-investment-service-projects/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "8de6eef4fbfe19e71c96b839cf6018ecfe74f1803c63770143228cede84fed23" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-industry-payments-entity", + "name": "industry-payments-entity/data.parquet", + "description": "Parquet file for the 'industry-payments-entity' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/industry-payments-entity/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "4a3e033d8017727c5af8c6dafc3926670702befba44e8531bc277eb3b58877ed" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-industry-payments-project", + "name": "industry-payments-project/data.parquet", + "description": "Parquet file for the 'industry-payments-project' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/industry-payments-project/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "0d8d25ba6c2cc882fc3328d79cefb4c1ffe54b40b4dcc143f897281bd619247f" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-insurance-company-complaints", + "name": "insurance-company-complaints/data.parquet", + "description": "Parquet file for the 'insurance-company-complaints' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/insurance-company-complaints/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "0522cd9fc00666f3cbf29fda3ae39f022edd7929e288acedaf49e4d2f7ee623e" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-journal-ranking_wide", + "name": "journal-ranking_wide/data.parquet", + "description": "Parquet file for the 'journal-ranking_wide' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/journal-ranking_wide/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "34be8baf34f803193baa6ed110c84bc205533778914249f407fdc43dabfcef42" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-kickstarter-projects", + "name": "kickstarter-projects/data.parquet", + "description": "Parquet file for the 'kickstarter-projects' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/kickstarter-projects/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "bc1f0509696ef82de9b9ca3e8010892d5927aa8dc27138841b582f629b76ba19" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-lending-club-loan", + "name": "lending-club-loan/data.parquet", + "description": "Parquet file for the 'lending-club-loan' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/lending-club-loan/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "19e46e3ae52edbb69ea31358212045fa9d1209b379d11856bac5ef09b8d10399" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-local-government-renewable-action", + "name": "local-government-renewable-action/data.parquet", + "description": "Parquet file for the 'local-government-renewable-action' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/local-government-renewable-action/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "df58a0c96f99889293cda04fc2c9b75b7bca8a88b3fbed44550b4ecc8b28e131" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-local-law-enforcements", + "name": "local-law-enforcements/data.parquet", + "description": "Parquet file for the 'local-law-enforcements' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/local-law-enforcements/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "b92e8b64e21692e35157d642b3184aad08f672804082acc41823104c2bdf9b7c" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-managed-care-enrollment", + "name": "managed-care-enrollment/data.parquet", + "description": "Parquet file for the 'managed-care-enrollment' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/managed-care-enrollment/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d46bc2e1b7089caf151aa9cd4fed5b4982dc07021ae0ec627727949b08183c83" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-media-ranking_wide", + "name": "media-ranking_wide/data.parquet", + "description": "Parquet file for the 'media-ranking_wide' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/media-ranking_wide/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "53d21f782417d2514c6237d9cfc23fd9560917ff8bb88beb42ef2a005096d6a0" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-medically-underserved-areas-populations", + "name": "medically-underserved-areas-populations/data.parquet", + "description": "Parquet file for the 'medically-underserved-areas-populations' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/medically-underserved-areas-populations/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "47bf6399e023f9e87e39c43962a9b381ef8b19e545ff9a42d8392dece8399b72" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-medicines", + "name": "medicines/data.parquet", + "description": "Parquet file for the 'medicines' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/medicines/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "60b16da9398ffc03d8b17a729702e2951b458744b8e775f11e481a0f561a52b0" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-mercari", + "name": "mercari/data.parquet", + "description": "Parquet file for the 'mercari' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/mercari/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "c812ef1768aa9087c12d573bfff8b1183a8ee9c23fd6a14f5f8bb53a5f6ca42a" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-meta-critic_whisky", + "name": "meta-critic_whisky/data.parquet", + "description": "Parquet file for the 'meta-critic_whisky' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/meta-critic_whisky/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "32b634314852b1431fe2f76c5e95b8573fbd5a8e4dab4826b449c54959bb031f" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-michelin-ratings", + "name": "michelin-ratings/data.parquet", + "description": "Parquet file for the 'michelin-ratings' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/michelin-ratings/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "7881efdd70fa720c62e84376bc0ba98e691e880245c3a6dad40e2c46cc332155" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-miga-issued-projects", + "name": "miga-issued-projects/data.parquet", + "description": "Parquet file for the 'miga-issued-projects' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/miga-issued-projects/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "a74f42ffeb7bc0b657d2ed19e1d45fdb99ce4a432727e0df530c62074c8b714f" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-mlr-summary-reports", + "name": "mlr-summary-reports/data.parquet", + "description": "Parquet file for the 'mlr-summary-reports' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/mlr-summary-reports/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "0f74e325763d0723eb4fd520fa17a75a3877e5968424d3342aff189cec8ecbf1" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-mobile-home-parks", + "name": "mobile-home-parks/data.parquet", + "description": "Parquet file for the 'mobile-home-parks' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/mobile-home-parks/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "4612b71f0ede902640eacebfdfefa2cc304676240d333231ecd9e3e9c2abb0f6" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-museums", + "name": "museums/data.parquet", + "description": "Parquet file for the 'museums' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/museums/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "00dcad704cd4ed06cb3b2aeb405b411f043f093d4af028c5ccea402a9c080b02" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-national-average-drug-acquisition-cost", + "name": "national-average-drug-acquisition-cost/data.parquet", + "description": "Parquet file for the 'national-average-drug-acquisition-cost' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/national-average-drug-acquisition-cost/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "eedfca672ef581a62098646d634d165298d35924b993ee7f6f40aeaf7598f671" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-oil-natural-gas-platform", + "name": "oil-natural-gas-platform/data.parquet", + "description": "Parquet file for the 'oil-natural-gas-platform' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/oil-natural-gas-platform/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "51be3aee5579df4b16cbac7c4d8c30d74b2fdf34db73089a0b7d868b4b1ab76b" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-orphan-designations", + "name": "orphan-designations/data.parquet", + "description": "Parquet file for the 'orphan-designations' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/orphan-designations/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "eb7fb2411866ac96a086d5999ba1849215161259e4e839f257b0048d3493c9f3" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-osha-accidents", + "name": "osha-accidents/data.parquet", + "description": "Parquet file for the 'osha-accidents' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/osha-accidents/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "6cc10bad1284f4c572faced044a4feadf85f94b3ed48693549fd1abe07267083" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-paediatric-investigation-plan", + "name": "paediatric-investigation-plan/data.parquet", + "description": "Parquet file for the 'paediatric-investigation-plan' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/paediatric-investigation-plan/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "a015ee74812ad23cf9bc4ec8497f565cb7ebba426b70128b17c0b2737dc27362" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-pol-terminal", + "name": "pol-terminal/data.parquet", + "description": "Parquet file for the 'pol-terminal' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/pol-terminal/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "c39080d29866c9b46d8b73d4246d5fd8030bcc4d083a3e94eca3d601485b75ad" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-power-plants", + "name": "power-plants/data.parquet", + "description": "Parquet file for the 'power-plants' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/power-plants/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "2db6faa5b8a25ba62bab58714dd01baff5972480f7e1ee7e9593140af3a6712c" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-prepaid-financial-product", + "name": "prepaid-financial-product/data.parquet", + "description": "Parquet file for the 'prepaid-financial-product' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/prepaid-financial-product/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "fdc6a94d28bca579338010d639c744f4d6ab63c27e31accbac06924ee5af50a9" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-prison-boundaries", + "name": "prison-boundaries/data.parquet", + "description": "Parquet file for the 'prison-boundaries' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/prison-boundaries/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "377eb056525f6b629a08e29dd88b06b537fa29be27985dee814cb8947d64535b" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-ramen-ratings", + "name": "ramen-ratings/data.parquet", + "description": "Parquet file for the 'ramen-ratings' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/ramen-ratings/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "b4c1ef63ef82ad7322f9a4ce761896f54b9c45a9864b837e665ffb7aa5bd33b3" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-rasff_window", + "name": "rasff_window/data.parquet", + "description": "Parquet file for the 'rasff_window' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/rasff_window/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "12417564df8e79e97281fec663b7921382d5dbc345412c4dda78db26fbba78ce" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-rasnf_notification_list", + "name": "rasnf_notification_list/data.parquet", + "description": "Parquet file for the 'rasnf_notification_list' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/rasnf_notification_list/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "f8fedb4d1962928831e9eb3053162563be5485d46ed0f4b87a9bdbbd26a86304" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-recipient-executed-grants-commitments-disbursements", + "name": "recipient-executed-grants-commitments-disbursements/data.parquet", + "description": "Parquet file for the 'recipient-executed-grants-commitments-disbursements' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/recipient-executed-grants-commitments-disbursements/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "d555f537e42959ca468124b0006e5389cddca2f2eea19b23a54735aca15dc32c" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-schools", + "name": "schools/data.parquet", + "description": "Parquet file for the 'schools' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/schools/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "569841a1c4e16550c82af7709ef92b26496ffca90a5056e6cfee68f72f3724b8" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-sf-building-permits", + "name": "sf-building-permits/data.parquet", + "description": "Parquet file for the 'sf-building-permits' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/sf-building-permits/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "8def4ba37e8fa3efe870a136e9de05af987d15a8b294cb8577775826b3a99358" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-summary-of-deposit_wide", + "name": "summary-of-deposit_wide/data.parquet", + "description": "Parquet file for the 'summary-of-deposit_wide' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/summary-of-deposit_wide/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "4c18d4dad38dc739a7ab70db4cafe04c0c1b26ea63297d6a60ab417914d05b5d" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-tax-incentives", + "name": "tax-incentives/data.parquet", + "description": "Parquet file for the 'tax-incentives' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/tax-incentives/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "be38034eecd808328cde79dd3d36275269e971e9cc15a3084c85f20296a765c2" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-terms-cc-plans", + "name": "terms-cc-plans/data.parquet", + "description": "Parquet file for the 'terms-cc-plans' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/terms-cc-plans/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "a8d940fdfc4d222f8cf9ab49e3f4a6baae6351e03896583973318b5cf3d6ec8d" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-tobacco-problem", + "name": "tobacco-problem/data.parquet", + "description": "Parquet file for the 'tobacco-problem' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/tobacco-problem/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "fe5a919131f4b20b4105fbb35b3f30351e402941d2181995f32fcbf3e4878575" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-total-contributions-ibrd-ida-ifc", + "name": "total-contributions-ibrd-ida-ifc/data.parquet", + "description": "Parquet file for the 'total-contributions-ibrd-ida-ifc' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/total-contributions-ibrd-ida-ifc/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "5044a44570371382601a776bd52ae68c8376e4dba86ca169bf10c578a3b6b73e" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-transmission-lines", + "name": "transmission-lines/data.parquet", + "description": "Parquet file for the 'transmission-lines' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/transmission-lines/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "aa3158e5c40d0641039df3b1c522d58e2c5153c7d2cdbf7f327a266f6e32b51e" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-transmission-towers", + "name": "transmission-towers/data.parquet", + "description": "Parquet file for the 'transmission-towers' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/transmission-towers/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "289500f3469ef4f90fb115f2721a27cb8cc9df54aa0bb0fdb68770c39d77c717" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-us-school-bus-fleet", + "name": "us-school-bus-fleet/data.parquet", + "description": "Parquet file for the 'us-school-bus-fleet' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/us-school-bus-fleet/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "bff452eba4ddb15fe6bd3217a9f4beafb2c46050d40b1e7259acba56d715ea2f" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-vehicles", + "name": "vehicles/data.parquet", + "description": "Parquet file for the 'vehicles' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/vehicles/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "6456c215925bd9283ed95db6ade11484f8694eed62d1ea1b4dc78d01baa58eaa" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-wine-dataset", + "name": "wine-dataset/data.parquet", + "description": "Parquet file for the 'wine-dataset' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/wine-dataset/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "87c381fa5b2bdcd2d2d0f47ed2d8caec7d8fdd877848e2c3ba68205b18589c4a" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-workforce-demographics-wide", + "name": "workforce-demographics-wide/data.parquet", + "description": "Parquet file for the 'workforce-demographics-wide' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/workforce-demographics-wide/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "52a1a4ec428877105362b00747681b5d29aa71bdbb94ff85cad798dd1f6ad972" + }, + { + "@type": "cr:FileObject", + "@id": "parquet-yelp_business", + "name": "yelp_business/data.parquet", + "description": "Parquet file for the 'yelp_business' dataset.", + "contentUrl": "https://huggingface.co/datasets/strablebench/STRABLE/resolve/main/yelp_business/data.parquet", + "encodingFormat": "application/x-parquet", + "sha256": "25bc0574ca5f875d1f02e0c1b77ce2245d251e811fc644a9958adf925b4ef772" + } + ], + "recordSet": [ + { + "@type": "cr:RecordSet", + "@id": "aca-federal-upper-limits-wide", + "name": "aca-federal-upper-limits-wide", + "description": "STRABLE dataset 'aca-federal-upper-limits-wide'. Task: regression (wide). Target column: 'ACA FUL'. Original source: Medicaid.", + "field": [ + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/Product_Group", + "name": "Product Group", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "Product Group" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/Ingredient", + "name": "Ingredient", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "Ingredient" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/Strength", + "name": "Strength", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "Strength" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/Dosage", + "name": "Dosage", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "Dosage" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/Route", + "name": "Route", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "Route" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/MDR_Unit_Type", + "name": "MDR Unit Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "MDR Unit Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/ACA_FUL", + "name": "ACA FUL", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "ACA FUL" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/Package_Size", + "name": "Package Size", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "Package Size" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/NDC", + "name": "NDC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "NDC" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/A-Rated", + "name": "A-Rated", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "A-Rated" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/Multiplier_Greater_Than_175_Percent_of_Weighted_Avg_of_AMPs", + "name": "Multiplier Greater Than 175 Percent of Weighted Avg of AMPs", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "Multiplier Greater Than 175 Percent of Weighted Avg of AMPs" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/Year", + "name": "Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "aca-federal-upper-limits-wide/Month", + "name": "Month", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-aca-federal-upper-limits-wide" + }, + "extract": { + "column": "Month" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "aijob_ai-ml-ds-salaries", + "name": "aijob_ai-ml-ds-salaries", + "description": "STRABLE dataset 'aijob_ai-ml-ds-salaries'. Task: regression (wide). Target column: 'salary_in_usd'. Original source: aijobs.net.", + "field": [ + { + "@type": "cr:Field", + "@id": "aijob_ai-ml-ds-salaries/work_year", + "name": "work_year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-aijob_ai-ml-ds-salaries" + }, + "extract": { + "column": "work_year" + } + } + }, + { + "@type": "cr:Field", + "@id": "aijob_ai-ml-ds-salaries/experience_level", + "name": "experience_level", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aijob_ai-ml-ds-salaries" + }, + "extract": { + "column": "experience_level" + } + } + }, + { + "@type": "cr:Field", + "@id": "aijob_ai-ml-ds-salaries/employment_type", + "name": "employment_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aijob_ai-ml-ds-salaries" + }, + "extract": { + "column": "employment_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "aijob_ai-ml-ds-salaries/job_title", + "name": "job_title", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aijob_ai-ml-ds-salaries" + }, + "extract": { + "column": "job_title" + } + } + }, + { + "@type": "cr:Field", + "@id": "aijob_ai-ml-ds-salaries/employee_residence", + "name": "employee_residence", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aijob_ai-ml-ds-salaries" + }, + "extract": { + "column": "employee_residence" + } + } + }, + { + "@type": "cr:Field", + "@id": "aijob_ai-ml-ds-salaries/remote_ratio", + "name": "remote_ratio", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-aijob_ai-ml-ds-salaries" + }, + "extract": { + "column": "remote_ratio" + } + } + }, + { + "@type": "cr:Field", + "@id": "aijob_ai-ml-ds-salaries/company_location", + "name": "company_location", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aijob_ai-ml-ds-salaries" + }, + "extract": { + "column": "company_location" + } + } + }, + { + "@type": "cr:Field", + "@id": "aijob_ai-ml-ds-salaries/company_size", + "name": "company_size", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aijob_ai-ml-ds-salaries" + }, + "extract": { + "column": "company_size" + } + } + }, + { + "@type": "cr:Field", + "@id": "aijob_ai-ml-ds-salaries/salary_in_usd", + "name": "salary_in_usd", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-aijob_ai-ml-ds-salaries" + }, + "extract": { + "column": "salary_in_usd" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "animalandveterinary-event", + "name": "animalandveterinary-event", + "description": "STRABLE dataset 'animalandveterinary-event'. Task: b-classification (wide). Target column: 'serious_ae'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/reaction", + "name": "reaction", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "reaction" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/unique_aer_id_number", + "name": "unique_aer_id_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "unique_aer_id_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/original_receive_date", + "name": "original_receive_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "original_receive_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/number_of_animals_affected", + "name": "number_of_animals_affected", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "number_of_animals_affected" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/primary_reporter", + "name": "primary_reporter", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "primary_reporter" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/number_of_animals_treated", + "name": "number_of_animals_treated", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "number_of_animals_treated" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/drug", + "name": "drug", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "drug" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/condition", + "name": "condition", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "condition" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/onset_date", + "name": "onset_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "onset_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/species", + "name": "species", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "species" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/gender", + "name": "gender", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "gender" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/age", + "name": "age", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "age" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/weight", + "name": "weight", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "weight" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/breed", + "name": "breed", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "breed" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/reproductive_status", + "name": "reproductive_status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "reproductive_status" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/female_animal_physiological_status", + "name": "female_animal_physiological_status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "female_animal_physiological_status" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/type_of_information", + "name": "type_of_information", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "type_of_information" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/serious_ae", + "name": "serious_ae", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "serious_ae" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/time_between_exposure_and_onset", + "name": "time_between_exposure_and_onset", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "time_between_exposure_and_onset" + } + } + }, + { + "@type": "cr:Field", + "@id": "animalandveterinary-event/secondary_reporter", + "name": "secondary_reporter", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-animalandveterinary-event" + }, + "extract": { + "column": "secondary_reporter" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "antenna-structure-registration", + "name": "antenna-structure-registration", + "description": "STRABLE dataset 'antenna-structure-registration'. Task: regression (wide). Target column: 'Strucht'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/X", + "name": "X", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "X" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/Y", + "name": "Y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "Y" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/FID", + "name": "FID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "FID" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/RegNum", + "name": "RegNum", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "RegNum" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/UniqSysID", + "name": "UniqSysID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "UniqSysID" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/Entity", + "name": "Entity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "Entity" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/ContAdd", + "name": "ContAdd", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "ContAdd" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/ContPO", + "name": "ContPO", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "ContPO" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/ContCity", + "name": "ContCity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "ContCity" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/ContState", + "name": "ContState", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "ContState" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/ContZip", + "name": "ContZip", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "ContZip" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/ContName", + "name": "ContName", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "ContName" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LatDeg", + "name": "LatDeg", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LatDeg" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LatMin", + "name": "LatMin", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LatMin" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LatSec", + "name": "LatSec", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LatSec" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LatDir", + "name": "LatDir", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LatDir" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LonDeg", + "name": "LonDeg", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LonDeg" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LonMin", + "name": "LonMin", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LonMin" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LonSec", + "name": "LonSec", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LonSec" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LonDir", + "name": "LonDir", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LonDir" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LocAdd", + "name": "LocAdd", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LocAdd" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LocCity", + "name": "LocCity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LocCity" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/LocState", + "name": "LocState", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "LocState" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/Strucht", + "name": "Strucht", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "Strucht" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/FAAstudy", + "name": "FAAstudy", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "FAAstudy" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/FAAcirc", + "name": "FAAcirc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "FAAcirc" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/latdec", + "name": "latdec", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "latdec" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/londec", + "name": "londec", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "londec" + } + } + }, + { + "@type": "cr:Field", + "@id": "antenna-structure-registration/url", + "name": "url", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-antenna-structure-registration" + }, + "extract": { + "column": "url" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "awarded-grants", + "name": "awarded-grants", + "description": "STRABLE dataset 'awarded-grants'. Task: regression (wide). Target column: 'Financial Assistance'. Original source: HRSA.", + "field": [ + { + "@type": "cr:Field", + "@id": "awarded-grants/Award_Year", + "name": "Award Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Award Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Financial_Assistance", + "name": "Financial Assistance", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Financial Assistance" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grantee_Address", + "name": "Grantee Address", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grantee Address" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grantee_City", + "name": "Grantee City", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grantee City" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grantee_County_Description", + "name": "Grantee County Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grantee County Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grantee_County_Name", + "name": "Grantee County Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grantee County Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grantee_Name", + "name": "Grantee Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grantee Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grantee_Region_Code", + "name": "Grantee Region Code", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grantee Region Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/HRSA_Region", + "name": "HRSA Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "HRSA Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grantee_State_Abbreviation", + "name": "Grantee State Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grantee State Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/State_Name", + "name": "State Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "State Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grantee_ZIP_Code", + "name": "Grantee ZIP Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grantee ZIP Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grant_Activity_Code", + "name": "Grant Activity Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grant Activity Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grant_Number", + "name": "Grant Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grant Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grant_Serial_Number", + "name": "Grant Serial Number", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grant Serial Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Project_Period_Start_Date", + "name": "Project Period Start Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Project Period Start Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Project_Period_Start_Date_Text_String", + "name": "Project Period Start Date Text String", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Project Period Start Date Text String" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grant_Project_Period_End_Date", + "name": "Grant Project Period End Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grant Project Period End Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grant_Project_Period_End_Date_Text", + "name": "Grant Project Period End Date Text", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grant Project Period End Date Text" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/HRSA_Program_Area_Code", + "name": "HRSA Program Area Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "HRSA Program Area Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/HRSA_Program_Area_Name", + "name": "HRSA Program Area Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "HRSA Program Area Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Complete_County_Name", + "name": "Complete County Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Complete County Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grant_Program_Name", + "name": "Grant Program Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grant Program Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Congressional_District_Name", + "name": "Congressional District Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Congressional District Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Congressional_District_Number", + "name": "Congressional District Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Congressional District Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/HHS_Region_Number", + "name": "HHS Region Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "HHS Region Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/U.S._Congressional_Representative_Name", + "name": "U.S. Congressional Representative Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "U.S. Congressional Representative Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/State_and_County_Federal_Information_Processing_Standard_Code", + "name": "State and County Federal Information Processing Standard Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "State and County Federal Information Processing Standard Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/State_FIPS_Code", + "name": "State FIPS Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "State FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/U.S._-_Mexico_Border_100_Kilometer_Indicator", + "name": "U.S. - Mexico Border 100 Kilometer Indicator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "U.S. - Mexico Border 100 Kilometer Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/U.S._-_Mexico_Border_County_Indicator", + "name": "U.S. - Mexico Border County Indicator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "U.S. - Mexico Border County Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Name_of_U.S._Senator_Number_One", + "name": "Name of U.S. Senator Number One", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Name of U.S. Senator Number One" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Name_of_U.S._Senator_Number_Two", + "name": "Name of U.S. Senator Number Two", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Name of U.S. Senator Number Two" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Uniform_Data_System_Grant_Program_Description", + "name": "Uniform Data System Grant Program Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Uniform Data System Grant Program Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Grantee_Type_Description", + "name": "Grantee Type Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Grantee Type Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/DUNS_Number", + "name": "DUNS Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "DUNS Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Unique_Entity_Identifier", + "name": "Unique Entity Identifier", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Unique Entity Identifier" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/CCN", + "name": "CCN", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "CCN" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Geocoding_Artifact_Address_Primary_X_Coordinate", + "name": "Geocoding Artifact Address Primary X Coordinate", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Geocoding Artifact Address Primary X Coordinate" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Geocoding_Artifact_Address_Primary_Y_Coordinate", + "name": "Geocoding Artifact Address Primary Y Coordinate", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Geocoding Artifact Address Primary Y Coordinate" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Data_Warehouse_Record_Create_Date", + "name": "Data Warehouse Record Create Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Data Warehouse Record Create Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "awarded-grants/Data_Warehouse_Record_Create_Date_Text", + "name": "Data Warehouse Record Create Date Text", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-awarded-grants" + }, + "extract": { + "column": "Data Warehouse Record Create Date Text" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "beer-ratings", + "name": "beer-ratings", + "description": "STRABLE dataset 'beer-ratings'. Task: regression (wide). Target column: 'review_overall'. Original source: BeerAdvocate.com.", + "field": [ + { + "@type": "cr:Field", + "@id": "beer-ratings/Name", + "name": "Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Style", + "name": "Style", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Style" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Brewery", + "name": "Brewery", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Brewery" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Beer_Name_Full", + "name": "Beer Name (Full)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Beer Name (Full)" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Description", + "name": "Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/ABV", + "name": "ABV", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "ABV" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Min_IBU", + "name": "Min IBU", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Min IBU" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Max_IBU", + "name": "Max IBU", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Max IBU" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Astringency", + "name": "Astringency", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Astringency" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Body", + "name": "Body", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Body" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Alcohol", + "name": "Alcohol", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Alcohol" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Bitter", + "name": "Bitter", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Bitter" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Sweet", + "name": "Sweet", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Sweet" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Sour", + "name": "Sour", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Sour" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Salty", + "name": "Salty", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Salty" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Fruits", + "name": "Fruits", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Fruits" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Hoppy", + "name": "Hoppy", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Hoppy" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Spices", + "name": "Spices", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Spices" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/Malty", + "name": "Malty", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "Malty" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/review_overall", + "name": "review_overall", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "review_overall" + } + } + }, + { + "@type": "cr:Field", + "@id": "beer-ratings/number_of_reviews", + "name": "number_of_reviews", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-beer-ratings" + }, + "extract": { + "column": "number_of_reviews" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "broadband-availability", + "name": "broadband-availability", + "description": "STRABLE dataset 'broadband-availability'. Task: regression (wide). Target column: 'Population for whom broadband available, 2019 (%)'. Original source: Institute of Museum and Library Services.", + "field": [ + { + "@type": "cr:Field", + "@id": "broadband-availability/GEO_ID", + "name": "GEO_ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "GEO_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/FIPS_State", + "name": "FIPS_State", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "FIPS_State" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/FIPS_County", + "name": "FIPS_County", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "FIPS_County" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/County", + "name": "County", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "County" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Stabr", + "name": "Stabr", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Stabr" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Population_2019", + "name": "Population_2019", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Population_2019" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Unemployment_rate_2019", + "name": "Unemployment rate 2019", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Unemployment rate 2019" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Percent_w_o_Health_insurance", + "name": "Percent w/o Health insurance", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Percent w/o Health insurance" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/MOE__%_w_o_health_ins.", + "name": "MOE, % w/o health ins.", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "MOE, % w/o health ins." + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Poverty_Rate_%", + "name": "Poverty Rate (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Poverty Rate (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/MOE__Poverty_Rate_%", + "name": "MOE, Poverty Rate (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "MOE, Poverty Rate (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Percent_received_SNAP_2018", + "name": "Percent received SNAP (2018)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Percent received SNAP (2018)" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/MOE_SNAP", + "name": "MOE SNAP", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "MOE SNAP" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Percent_with_no_home_computer_2018", + "name": "Percent with no home computer (2018)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Percent with no home computer (2018)" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/MOE_No_Computer", + "name": "MOE No Computer", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "MOE No Computer" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Percent_with_no_home_Internet_2018", + "name": "Percent with no home Internet (2018)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Percent with no home Internet (2018)" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/MOE_no_Internet", + "name": "MOE no Internet", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "MOE no Internet" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Percent_with_home_Broadband_2018", + "name": "Percent with home Broadband (2018)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Percent with home Broadband (2018)" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/MOE_Broadband", + "name": "MOE Broadband", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "MOE Broadband" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Number_of_Broadband_providers_2019", + "name": "Number of Broadband providers (2019)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Number of Broadband providers (2019)" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Population_for_whom_broadband_available__2019_%", + "name": "Population for whom broadband available, 2019 (%)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Population for whom broadband available, 2019 (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "broadband-availability/Lowest_broadband_cost_per_month__2019_$", + "name": "Lowest broadband cost per month, 2019 ($)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-broadband-availability" + }, + "extract": { + "column": "Lowest broadband cost per month, 2019 ($)" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "california-houses", + "name": "california-houses", + "description": "STRABLE dataset 'california-houses'. Task: regression (wide). Target column: 'Total interior livable area'. Original source: kaggle.", + "field": [ + { + "@type": "cr:Field", + "@id": "california-houses/Id", + "name": "Id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Id" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Address", + "name": "Address", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Address" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Sold_Price", + "name": "Sold Price", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Sold Price" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Summary", + "name": "Summary", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Summary" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Type", + "name": "Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Year_built", + "name": "Year built", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Year built" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Heating", + "name": "Heating", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Heating" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Cooling", + "name": "Cooling", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Cooling" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Parking", + "name": "Parking", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Parking" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Lot", + "name": "Lot", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Lot" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Bedrooms", + "name": "Bedrooms", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Bedrooms" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Bathrooms", + "name": "Bathrooms", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Bathrooms" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Full_bathrooms", + "name": "Full bathrooms", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Full bathrooms" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Total_interior_livable_area", + "name": "Total interior livable area", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Total interior livable area" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Total_spaces", + "name": "Total spaces", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Total spaces" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Garage_spaces", + "name": "Garage spaces", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Garage spaces" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Region", + "name": "Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Elementary_School", + "name": "Elementary School", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Elementary School" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Elementary_School_Score", + "name": "Elementary School Score", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Elementary School Score" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Elementary_School_Distance", + "name": "Elementary School Distance", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Elementary School Distance" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Middle_School", + "name": "Middle School", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Middle School" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Middle_School_Score", + "name": "Middle School Score", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Middle School Score" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Middle_School_Distance", + "name": "Middle School Distance", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Middle School Distance" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/High_School", + "name": "High School", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "High School" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/High_School_Score", + "name": "High School Score", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "High School Score" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/High_School_Distance", + "name": "High School Distance", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "High School Distance" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Flooring", + "name": "Flooring", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Flooring" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Heating_features", + "name": "Heating features", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Heating features" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Cooling_features", + "name": "Cooling features", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Cooling features" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Appliances_included", + "name": "Appliances included", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Appliances included" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Laundry_features", + "name": "Laundry features", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Laundry features" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Parking_features", + "name": "Parking features", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Parking features" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Tax_assessed_value", + "name": "Tax assessed value", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Tax assessed value" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Annual_tax_amount", + "name": "Annual tax amount", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Annual tax amount" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Listed_On", + "name": "Listed On", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Listed On" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Listed_Price", + "name": "Listed Price", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Listed Price" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Last_Sold_On", + "name": "Last Sold On", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Last Sold On" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Last_Sold_Price", + "name": "Last Sold Price", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Last Sold Price" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/City", + "name": "City", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "City" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/Zip", + "name": "Zip", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "Zip" + } + } + }, + { + "@type": "cr:Field", + "@id": "california-houses/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-california-houses" + }, + "extract": { + "column": "State" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "child-adult-healthcare-quality", + "name": "child-adult-healthcare-quality", + "description": "STRABLE dataset 'child-adult-healthcare-quality'. Task: regression (wide). Target column: 'State Rate'. Original source: Medicaid.", + "field": [ + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Domain", + "name": "Domain", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Domain" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Reporting_Program", + "name": "Reporting Program", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Reporting Program" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Measure_Name", + "name": "Measure Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Measure Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Measure_Abbreviation", + "name": "Measure Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Measure Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Measure_Type", + "name": "Measure Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Measure Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Rate_Definition", + "name": "Rate Definition", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Rate Definition" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Population", + "name": "Population", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Population" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Methodology", + "name": "Methodology", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Methodology" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/State_Rate", + "name": "State Rate", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "State Rate" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Number_of_States_Reporting", + "name": "Number of States Reporting", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Number of States Reporting" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Source", + "name": "Source", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Source" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Rate_Used_in_Calculating_State_Mean_and_Median", + "name": "Rate Used in Calculating State Mean and Median", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Rate Used in Calculating State Mean and Median" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/Core_Set_Year", + "name": "Core Set Year", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "Core Set Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "child-adult-healthcare-quality/State_Specific_Comments", + "name": "State Specific Comments", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-child-adult-healthcare-quality" + }, + "extract": { + "column": "State Specific Comments" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "china-overseas-finance-inventory", + "name": "china-overseas-finance-inventory", + "description": "STRABLE dataset 'china-overseas-finance-inventory'. Task: regression (wide). Target column: 'installed_capacity'. Original source: world-resource-institute.", + "field": [ + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/unique_id", + "name": "unique_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "unique_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/power_plant_name", + "name": "power_plant_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "power_plant_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/country", + "name": "country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "country" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/country_iso3c", + "name": "country_iso3c", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "country_iso3c" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/region", + "name": "region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "region" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/subregion", + "name": "subregion", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "subregion" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/province", + "name": "province", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "province" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/city", + "name": "city", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "city" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/installed_capacity", + "name": "installed_capacity", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "installed_capacity" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/commissioning_year", + "name": "commissioning_year", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "commissioning_year" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/primary_fuel", + "name": "primary_fuel", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "primary_fuel" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/latitude", + "name": "latitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/longitude", + "name": "longitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/investment_type", + "name": "investment_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "investment_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/investment_cofinanced_bu", + "name": "investment_cofinanced_bu", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "investment_cofinanced_bu" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/debt_investment_averaged", + "name": "debt_investment_averaged", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "debt_investment_averaged" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/debt_investment_weighted", + "name": "debt_investment_weighted", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "debt_investment_weighted" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/equity_investment_weighted", + "name": "equity_investment_weighted", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "equity_investment_weighted" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/total_investment_amount", + "name": "total_investment_amount", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "total_investment_amount" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/equity_investor_name_1", + "name": "equity_investor_name_1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "equity_investor_name_1" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/equity_investor_amount_1", + "name": "equity_investor_amount_1", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "equity_investor_amount_1" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/equity_investor_name_2", + "name": "equity_investor_name_2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "equity_investor_name_2" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/equity_investor_amount_2", + "name": "equity_investor_amount_2", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "equity_investor_amount_2" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/equity_investment_type", + "name": "equity_investment_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "equity_investment_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/equity_investment_year", + "name": "equity_investment_year", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "equity_investment_year" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/parent_company_of_investor", + "name": "parent_company_of_investor", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "parent_company_of_investor" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/SOE_or_POE", + "name": "SOE_or_POE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "SOE_or_POE" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/debt_investment_year", + "name": "debt_investment_year", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "debt_investment_year" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/debt_investment_amount", + "name": "debt_investment_amount", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "debt_investment_amount" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/number_of_lenders", + "name": "number_of_lenders", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "number_of_lenders" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/bank_of_china", + "name": "bank_of_china", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "bank_of_china" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/china_development_bank", + "name": "china_development_bank", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "china_development_bank" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/export_import_bank_of_china", + "name": "export_import_bank_of_china", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "export_import_bank_of_china" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/industrial_and_commercial_bank_of_china", + "name": "industrial_and_commercial_bank_of_china", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "industrial_and_commercial_bank_of_china" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/china_construction_bank", + "name": "china_construction_bank", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "china_construction_bank" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/bank_of_communications", + "name": "bank_of_communications", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "bank_of_communications" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/agricultural_bank_of_china", + "name": "agricultural_bank_of_china", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "agricultural_bank_of_china" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/china_minsheng_banking_corp", + "name": "china_minsheng_banking_corp", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "china_minsheng_banking_corp" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/china_co-financing_fund_for_latin_america_and_the_caribbean", + "name": "china_co-financing_fund_for_latin_america_and_the_caribbean", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "china_co-financing_fund_for_latin_america_and_the_caribbean" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/compid", + "name": "compid", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "compid" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/unit_id", + "name": "unit_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "unit_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/location_id.x", + "name": "location_id.x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "location_id.x" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/gppd_id", + "name": "gppd_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "gppd_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/fdi_id", + "name": "fdi_id", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "fdi_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/rma_id", + "name": "rma_id", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "rma_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/bu_id", + "name": "bu_id", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "bu_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/sais_id", + "name": "sais_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "sais_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/iad_id", + "name": "iad_id", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "iad_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/r_id", + "name": "r_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "r_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/ij_id", + "name": "ij_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "ij_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "china-overseas-finance-inventory/cgp_id", + "name": "cgp_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-china-overseas-finance-inventory" + }, + "extract": { + "column": "cgp_id" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "chocolate-bar-ratings", + "name": "chocolate-bar-ratings", + "description": "STRABLE dataset 'chocolate-bar-ratings'. Task: m-classification (wide). Target column: 'Rating'. Original source: flavorsofcacao.com.", + "field": [ + { + "@type": "cr:Field", + "@id": "chocolate-bar-ratings/Company_Manufacturer", + "name": "Company (Manufacturer)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-chocolate-bar-ratings" + }, + "extract": { + "column": "Company (Manufacturer)" + } + } + }, + { + "@type": "cr:Field", + "@id": "chocolate-bar-ratings/Company_Location", + "name": "Company Location", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-chocolate-bar-ratings" + }, + "extract": { + "column": "Company Location" + } + } + }, + { + "@type": "cr:Field", + "@id": "chocolate-bar-ratings/Review_Date", + "name": "Review Date", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-chocolate-bar-ratings" + }, + "extract": { + "column": "Review Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "chocolate-bar-ratings/Country_of_Bean_Origin", + "name": "Country of Bean Origin", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-chocolate-bar-ratings" + }, + "extract": { + "column": "Country of Bean Origin" + } + } + }, + { + "@type": "cr:Field", + "@id": "chocolate-bar-ratings/Specific_Bean_Origin_or_Bar_Name", + "name": "Specific Bean Origin or Bar Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-chocolate-bar-ratings" + }, + "extract": { + "column": "Specific Bean Origin or Bar Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "chocolate-bar-ratings/Cocoa_Percent", + "name": "Cocoa Percent", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-chocolate-bar-ratings" + }, + "extract": { + "column": "Cocoa Percent" + } + } + }, + { + "@type": "cr:Field", + "@id": "chocolate-bar-ratings/Ingredients", + "name": "Ingredients", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-chocolate-bar-ratings" + }, + "extract": { + "column": "Ingredients" + } + } + }, + { + "@type": "cr:Field", + "@id": "chocolate-bar-ratings/Most_Memorable_Characteristics", + "name": "Most Memorable Characteristics", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-chocolate-bar-ratings" + }, + "extract": { + "column": "Most Memorable Characteristics" + } + } + }, + { + "@type": "cr:Field", + "@id": "chocolate-bar-ratings/Rating", + "name": "Rating", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-chocolate-bar-ratings" + }, + "extract": { + "column": "Rating" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "clear-corpus", + "name": "clear-corpus", + "description": "STRABLE dataset 'clear-corpus'. Task: regression (wide). Target column: 'BT Easiness'. Original source: commonlit.org.", + "field": [ + { + "@type": "cr:Field", + "@id": "clear-corpus/ID", + "name": "ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Author", + "name": "Author", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Author" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Title", + "name": "Title", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Title" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Anthology", + "name": "Anthology", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Anthology" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/URL", + "name": "URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "URL" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Source", + "name": "Source", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Source" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Pub_Year", + "name": "Pub Year", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Pub Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Category", + "name": "Category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Category" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Location", + "name": "Location", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Location" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/License", + "name": "License", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "License" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/MPAA_Max", + "name": "MPAA Max", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "MPAA Max" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/MPAA_#Max", + "name": "MPAA #Max", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "MPAA #Max" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/MPAA_#Avg", + "name": "MPAA #Avg", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "MPAA #Avg" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Excerpt", + "name": "Excerpt", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Excerpt" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Google_WC", + "name": "Google WC", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Google WC" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Joon_WC_v1", + "name": "Joon WC v1", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Joon WC v1" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/British_WC", + "name": "British WC", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "British WC" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/British_Words", + "name": "British Words", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "British Words" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Sentence_Count_v1", + "name": "Sentence Count v1", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Sentence Count v1" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Sentence_Count_v2", + "name": "Sentence Count v2", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Sentence Count v2" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Paragraphs", + "name": "Paragraphs", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Paragraphs" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/BT_Easiness", + "name": "BT Easiness", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "BT Easiness" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Flesch-Reading-Ease", + "name": "Flesch-Reading-Ease", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Flesch-Reading-Ease" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Flesch-Kincaid-Grade-Level", + "name": "Flesch-Kincaid-Grade-Level", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Flesch-Kincaid-Grade-Level" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/Automated_Readability_Index", + "name": "Automated Readability Index", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "Automated Readability Index" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/SMOG_Readability", + "name": "SMOG Readability", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "SMOG Readability" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/New_Dale-Chall_Readability_Formula", + "name": "New Dale-Chall Readability Formula", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "New Dale-Chall Readability Formula" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/CAREC", + "name": "CAREC", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "CAREC" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/CAREC_M", + "name": "CAREC_M", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "CAREC_M" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/CARES", + "name": "CARES", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "CARES" + } + } + }, + { + "@type": "cr:Field", + "@id": "clear-corpus/CML2RI", + "name": "CML2RI", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-clear-corpus" + }, + "extract": { + "column": "CML2RI" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "cohort-default-rate", + "name": "cohort-default-rate", + "description": "STRABLE dataset 'cohort-default-rate'. Task: b-classification (wide). Target column: 'Average or Greater than 30'. Original source: FSA.", + "field": [ + { + "@type": "cr:Field", + "@id": "cohort-default-rate/School_Code", + "name": "School Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "School Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/Name", + "name": "Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/Address", + "name": "Address", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "Address" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/City", + "name": "City", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "City" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/State_Desc", + "name": "State Desc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "State Desc" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/Zip_Code", + "name": "Zip Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "Zip Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/Zip_Ext", + "name": "Zip Ext", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "Zip Ext" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/Prog_Length", + "name": "Prog Length", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "Prog Length" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/School_Type", + "name": "School Type", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "School Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/Ethnic_Code", + "name": "Ethnic Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "Ethnic Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/Cong_Dis", + "name": "Cong Dis", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "Cong Dis" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/Region", + "name": "Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "cohort-default-rate/Average_or_Greater_than_30", + "name": "Average or Greater than 30", + "description": "Target column. Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-cohort-default-rate" + }, + "extract": { + "column": "Average or Greater than 30" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "college-creditcard-marketing", + "name": "college-creditcard-marketing", + "description": "STRABLE dataset 'college-creditcard-marketing'. Task: regression (wide). Target column: 'PAYMENTS_BY_ISSUER'. Original source: Consumer-Financial-Protection-Bureau.", + "field": [ + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/REPORTING_YEAR", + "name": "REPORTING_YEAR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "REPORTING_YEAR" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/INSTITUTION_OR_ORGANIZATION", + "name": "INSTITUTION_OR_ORGANIZATION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "INSTITUTION_OR_ORGANIZATION" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/TYPE_OF__INSTITUTION_OR_ORGANIZATION", + "name": "TYPE_OF _INSTITUTION_OR_ORGANIZATION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "TYPE_OF _INSTITUTION_OR_ORGANIZATION" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/CREDIT_CARD_ISSUER", + "name": "CREDIT_CARD_ISSUER", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "CREDIT_CARD_ISSUER" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/STATUS", + "name": "STATUS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "STATUS" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/IN_EFFECT_AS_OF_BEGINNING_OF_NEXT_YEAR", + "name": "IN_EFFECT_AS_OF_BEGINNING_OF_NEXT_YEAR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "IN_EFFECT_AS_OF_BEGINNING_OF_NEXT_YEAR" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/TOTAL_OPEN_ACCOUNTS_AS_OF_END_OF_REPORTING_YEAR", + "name": "TOTAL_OPEN_ACCOUNTS_AS_OF_END_OF_REPORTING_YEAR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "TOTAL_OPEN_ACCOUNTS_AS_OF_END_OF_REPORTING_YEAR" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/PAYMENTS_BY_ISSUER", + "name": "PAYMENTS_BY_ISSUER", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "PAYMENTS_BY_ISSUER" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/NEW_ACCOUNTS_OPENED_IN_REPORTING_YEAR", + "name": "NEW_ACCOUNTS_OPENED_IN_REPORTING_YEAR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "NEW_ACCOUNTS_OPENED_IN_REPORTING_YEAR" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/OPEID", + "name": "OPEID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "OPEID" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-creditcard-marketing/UNIVERSITY_NAME", + "name": "UNIVERSITY_NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-creditcard-marketing" + }, + "extract": { + "column": "UNIVERSITY_NAME" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "college-deposit-product-marketing", + "name": "college-deposit-product-marketing", + "description": "STRABLE dataset 'college-deposit-product-marketing'. Task: regression (wide). Target column: 'TOTAL_ACTIVE_ACCOUNTS_'. Original source: Consumer-Financial-Protection-Bureau.", + "field": [ + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/AWARD_YEAR", + "name": "AWARD_YEAR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "AWARD_YEAR" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/INSTITUTION_NAME", + "name": "INSTITUTION_NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "INSTITUTION_NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/REPORTING_AS", + "name": "REPORTING_AS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "REPORTING_AS" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/SYSTEM_AFFILIATION", + "name": "SYSTEM_AFFILIATION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "SYSTEM_AFFILIATION" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/ISSUER", + "name": "ISSUER", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "ISSUER" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/TOTAL_ACTIVE_ACCOUNTS_", + "name": "TOTAL_ACTIVE_ACCOUNTS_", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "TOTAL_ACTIVE_ACCOUNTS_" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/ANNUAL_MEAN_LINKED_ACCOUNT_COSTS_INCURRED", + "name": "ANNUAL_MEAN_LINKED_ACCOUNT_COSTS_INCURRED", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "ANNUAL_MEAN_LINKED_ACCOUNT_COSTS_INCURRED" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/ANNUAL_MEDIAN_LINKED_ACCOUNT_COSTS_INCURRED", + "name": "ANNUAL_MEDIAN_LINKED_ACCOUNT_COSTS_INCURRED", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "ANNUAL_MEDIAN_LINKED_ACCOUNT_COSTS_INCURRED" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/TOTAL_MONETARY_CONSIDERATION_FROM_ISSUER_TO_INSTITUTION", + "name": "TOTAL_MONETARY_CONSIDERATION_FROM_ISSUER_TO_INSTITUTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "TOTAL_MONETARY_CONSIDERATION_FROM_ISSUER_TO_INSTITUTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/TOTAL_MONETARY_CONSIDERATION_FROM_INSTITUTION_TO_ISSUER", + "name": "TOTAL_MONETARY_CONSIDERATION_FROM_INSTITUTION_TO_ISSUER", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "TOTAL_MONETARY_CONSIDERATION_FROM_INSTITUTION_TO_ISSUER" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/SCHOOL_TYPE", + "name": "SCHOOL_TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "SCHOOL_TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/UNIQUE_ID_OPEID", + "name": "UNIQUE_ID_(OPEID)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "UNIQUE_ID_(OPEID)" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/TOTAL_ENROLLMENT", + "name": "TOTAL_ENROLLMENT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "TOTAL_ENROLLMENT" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/MSI_TYPE", + "name": "MSI_TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "MSI_TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/CASH_MANAGEMENT_DISCLOSURE_URL", + "name": "CASH_MANAGEMENT_DISCLOSURE_URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "CASH_MANAGEMENT_DISCLOSURE_URL" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/ACCOUNT_TERM_DISCLOSURE_URL", + "name": "ACCOUNT_TERM_DISCLOSURE_URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "ACCOUNT_TERM_DISCLOSURE_URL" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/PARTNERSHIP_AGREEMENT_URL", + "name": "PARTNERSHIP_AGREEMENT_URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "PARTNERSHIP_AGREEMENT_URL" + } + } + }, + { + "@type": "cr:Field", + "@id": "college-deposit-product-marketing/DATE_ACCESSED_BY_CFPB", + "name": "DATE_ACCESSED_BY_CFPB", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-college-deposit-product-marketing" + }, + "extract": { + "column": "DATE_ACCESSED_BY_CFPB" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "colleges-and-universities", + "name": "colleges-and-universities", + "description": "STRABLE dataset 'colleges-and-universities'. Task: regression (wide). Target column: 'RATIO_ENROLL_EMP'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "colleges-and-universities/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/IPEDSID", + "name": "IPEDSID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "IPEDSID" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/ZIP", + "name": "ZIP", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/ZIP4", + "name": "ZIP4", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "ZIP4" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/TELEPHONE", + "name": "TELEPHONE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "TELEPHONE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/TYPE", + "name": "TYPE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/STATUS", + "name": "STATUS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "STATUS" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/POPULATION", + "name": "POPULATION", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "POPULATION" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/COUNTY", + "name": "COUNTY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "COUNTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/COUNTYFIPS", + "name": "COUNTYFIPS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "COUNTYFIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/COUNTRY", + "name": "COUNTRY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "COUNTRY" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/LATITUDE", + "name": "LATITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "LATITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/LONGITUDE", + "name": "LONGITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "LONGITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/NAICS_CODE", + "name": "NAICS_CODE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "NAICS_CODE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/NAICS_DESC", + "name": "NAICS_DESC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "NAICS_DESC" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/SOURCE", + "name": "SOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "SOURCE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/SOURCEDATE", + "name": "SOURCEDATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "SOURCEDATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/VAL_METHOD", + "name": "VAL_METHOD", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "VAL_METHOD" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/VAL_DATE", + "name": "VAL_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "VAL_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/WEBSITE", + "name": "WEBSITE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "WEBSITE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/STFIPS", + "name": "STFIPS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "STFIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/COFIPS", + "name": "COFIPS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "COFIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/SECTOR", + "name": "SECTOR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "SECTOR" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/LEVEL", + "name": "LEVEL", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "LEVEL" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/HI_OFFER", + "name": "HI_OFFER", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "HI_OFFER" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/DEG_GRANT", + "name": "DEG_GRANT", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "DEG_GRANT" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/LOCALE", + "name": "LOCALE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "LOCALE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/CLOSE_DATE", + "name": "CLOSE_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "CLOSE_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/ALIAS", + "name": "ALIAS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "ALIAS" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/SIZE_SET", + "name": "SIZE_SET", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "SIZE_SET" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/INST_SIZE", + "name": "INST_SIZE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "INST_SIZE" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/HOUSING", + "name": "HOUSING", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "HOUSING" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/DORM_CAP", + "name": "DORM_CAP", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "DORM_CAP" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/SHELTER_ID", + "name": "SHELTER_ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "SHELTER_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "y" + } + } + }, + { + "@type": "cr:Field", + "@id": "colleges-and-universities/RATIO_ENROLL_EMP", + "name": "RATIO_ENROLL_EMP", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-colleges-and-universities" + }, + "extract": { + "column": "RATIO_ENROLL_EMP" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "commitments-in-trust-funds", + "name": "commitments-in-trust-funds", + "description": "STRABLE dataset 'commitments-in-trust-funds'. Task: regression (wide). Target column: 'New Commitments (US$)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Trust_Fund", + "name": "Trust Fund", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Trust Fund" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Trust_Fund_name", + "name": "Trust Fund name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Trust Fund name" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Trust_Fund_status", + "name": "Trust Fund status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Trust Fund status" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Execution_Type", + "name": "Execution Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Execution Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Trustee", + "name": "Trustee", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Trustee" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Trustee_Status", + "name": "Trustee Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Trustee Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Trustee_Name", + "name": "Trustee Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Trustee Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Fund_Classification", + "name": "Fund Classification", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Fund Classification" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Program_group", + "name": "Program group", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Program group" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/Fiscal_year", + "name": "Fiscal year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "Fiscal year" + } + } + }, + { + "@type": "cr:Field", + "@id": "commitments-in-trust-funds/New_Commitments_US$", + "name": "New Commitments (US$)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-commitments-in-trust-funds" + }, + "extract": { + "column": "New Commitments (US$)" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "community-banking_wide", + "name": "community-banking_wide", + "description": "STRABLE dataset 'community-banking_wide'. Task: regression (wide). Target column: 'LOANTOASSET'. Original source: Federal-Deposit-Insurance-Corporation.", + "field": [ + { + "@type": "cr:Field", + "@id": "community-banking_wide/Id", + "name": "Id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "Id" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/NAMEHCR", + "name": "NAMEHCR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "NAMEHCR" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/RSSDHCR", + "name": "RSSDHCR", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "RSSDHCR" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/EXCL_SPECIALTY", + "name": "EXCL_SPECIALTY", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "EXCL_SPECIALTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/EXCL_FOREIGN", + "name": "EXCL_FOREIGN", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "EXCL_FOREIGN" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/EXCL_NOCORE", + "name": "EXCL_NOCORE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "EXCL_NOCORE" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/EXCL_NOLOANS", + "name": "EXCL_NOLOANS", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "EXCL_NOLOANS" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/EXCL_CREDIT", + "name": "EXCL_CREDIT", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "EXCL_CREDIT" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/CERT", + "name": "CERT", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "CERT" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/NAMEFULL", + "name": "NAMEFULL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "NAMEFULL" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/CB", + "name": "CB", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "CB" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/STALP", + "name": "STALP", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "STALP" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/ZIP", + "name": "ZIP", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/STCNTY", + "name": "STCNTY", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "STCNTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/CALLYM", + "name": "CALLYM", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "CALLYM" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/YEAR", + "name": "YEAR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "YEAR" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/FORASSET", + "name": "FORASSET", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "FORASSET" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/LOANTOASSET", + "name": "LOANTOASSET", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "LOANTOASSET" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/CORERATIO", + "name": "CORERATIO", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "CORERATIO" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/MAX_DEPOSITS", + "name": "MAX_DEPOSITS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "MAX_DEPOSITS" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/OFFICE_COUNT", + "name": "OFFICE_COUNT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "OFFICE_COUNT" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/LARGE_CBSAS", + "name": "LARGE_CBSAS", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "LARGE_CBSAS" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/STATE_COUNT", + "name": "STATE_COUNT", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "STATE_COUNT" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/BUSINESS_LINE", + "name": "BUSINESS_LINE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "BUSINESS_LINE" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/MEETS_CORE", + "name": "MEETS_CORE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "MEETS_CORE" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/MEETS_DEPOSITS", + "name": "MEETS_DEPOSITS", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "MEETS_DEPOSITS" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/MEETS_OFFICES", + "name": "MEETS_OFFICES", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "MEETS_OFFICES" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/MEETS_LRGMSA", + "name": "MEETS_LRGMSA", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "MEETS_LRGMSA" + } + } + }, + { + "@type": "cr:Field", + "@id": "community-banking_wide/MEETS_STATES", + "name": "MEETS_STATES", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-community-banking_wide" + }, + "extract": { + "column": "MEETS_STATES" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "conflict-events_wide", + "name": "conflict-events_wide", + "description": "STRABLE dataset 'conflict-events_wide'. Task: regression (wide). Target column: 'fatalities'. Original source: OHCA.", + "field": [ + { + "@type": "cr:Field", + "@id": "conflict-events_wide/location_code", + "name": "location_code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "location_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/provider_admin1_name", + "name": "provider_admin1_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "provider_admin1_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/provider_admin2_name", + "name": "provider_admin2_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "provider_admin2_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/admin1_code", + "name": "admin1_code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "admin1_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/admin1_name", + "name": "admin1_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "admin1_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/admin2_code", + "name": "admin2_code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "admin2_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/admin2_name", + "name": "admin2_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "admin2_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/event_type", + "name": "event_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "event_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/dataset_hdx_id", + "name": "dataset_hdx_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "dataset_hdx_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/resource_hdx_id", + "name": "resource_hdx_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "resource_hdx_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/warning", + "name": "warning", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "warning" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/events", + "name": "events", + "description": "Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "events" + } + } + }, + { + "@type": "cr:Field", + "@id": "conflict-events_wide/fatalities", + "name": "fatalities", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-conflict-events_wide" + }, + "extract": { + "column": "fatalities" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "contract-awards-investment-project-financing", + "name": "contract-awards-investment-project-financing", + "description": "STRABLE dataset 'contract-awards-investment-project-financing'. Task: regression (wide). Target column: 'Supplier Contract Amount (USD)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/As_of_Date", + "name": "As of Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "As of Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Fiscal_Year", + "name": "Fiscal Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Fiscal Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Region", + "name": "Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Borrower_Country___Economy", + "name": "Borrower Country / Economy", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Borrower Country / Economy" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Project_ID", + "name": "Project ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Project ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Project_Name", + "name": "Project Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Project Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Project_Global_Practice", + "name": "Project Global Practice", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Project Global Practice" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Procurement_Category", + "name": "Procurement Category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Procurement Category" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Procurement_Method", + "name": "Procurement Method", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Procurement Method" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Contract_Number", + "name": "Contract Number", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Contract Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Contract_Description", + "name": "Contract Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Contract Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Borrower_Contract_Reference_Number", + "name": "Borrower Contract Reference Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Borrower Contract Reference Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Contract_Signing_Date", + "name": "Contract Signing Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Contract Signing Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Supplier", + "name": "Supplier", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Supplier" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Supplier_Country___Economy", + "name": "Supplier Country / Economy", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Supplier Country / Economy" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Borrower_Country___Economy_Code", + "name": "Borrower Country / Economy Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Borrower Country / Economy Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/WB_Contract_Number", + "name": "WB Contract Number", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "WB Contract Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Supplier_Country___Economy_Code", + "name": "Supplier Country / Economy Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Supplier Country / Economy Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Supplier_Contract_Amount_USD", + "name": "Supplier Contract Amount (USD)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Supplier Contract Amount (USD)" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Review_type", + "name": "Review type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Review type" + } + } + }, + { + "@type": "cr:Field", + "@id": "contract-awards-investment-project-financing/Supplier_ID", + "name": "Supplier ID", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-contract-awards-investment-project-financing" + }, + "extract": { + "column": "Supplier ID" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "contributions-to-financial-intermediary-funds", + "name": "contributions-to-financial-intermediary-funds", + "description": "STRABLE dataset 'contributions-to-financial-intermediary-funds'. Task: regression (wide). Target column: 'Amount in USD'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Fund_Name", + "name": "Fund Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Fund Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Donor_Name", + "name": "Donor Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Donor Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Donor_Country_Code", + "name": "Donor Country Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Donor Country Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Receipt_Type", + "name": "Receipt Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Receipt Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Receipt_Quarter", + "name": "Receipt Quarter", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Receipt Quarter" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Calendar_Year", + "name": "Calendar Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Calendar Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Receipt_Currency", + "name": "Receipt Currency", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Receipt Currency" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Contribution_Type", + "name": "Contribution Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Contribution Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Sub_Account", + "name": "Sub Account", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Sub Account" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Amount_in_USD", + "name": "Amount in USD", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Amount in USD" + } + } + }, + { + "@type": "cr:Field", + "@id": "contributions-to-financial-intermediary-funds/Sector_Theme", + "name": "Sector/Theme", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-contributions-to-financial-intermediary-funds" + }, + "extract": { + "column": "Sector/Theme" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "corporate-procurement-contract-awards", + "name": "corporate-procurement-contract-awards", + "description": "STRABLE dataset 'corporate-procurement-contract-awards'. Task: regression (wide). Target column: 'Contract Award Amount (USD)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Award_Date", + "name": "Award Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Award Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Quarter_and_Fiscal_Year", + "name": "Quarter and Fiscal Year", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Quarter and Fiscal Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Commodity_Category", + "name": "Commodity Category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Commodity Category" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Contract_Description", + "name": "Contract Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Contract Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/WBG_Organization", + "name": "WBG Organization", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "WBG Organization" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Selection_Number", + "name": "Selection Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Selection Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Supplier", + "name": "Supplier", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Supplier" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Supplier_Country___Economy", + "name": "Supplier Country / Economy", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Supplier Country / Economy" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Supplier_Country___Economy_Code", + "name": "Supplier Country / Economy Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Supplier Country / Economy Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Contract_Award_Amount_USD", + "name": "Contract Award Amount (USD)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Contract Award Amount (USD)" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/Fund_Source", + "name": "Fund Source", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "Fund Source" + } + } + }, + { + "@type": "cr:Field", + "@id": "corporate-procurement-contract-awards/VPU_description", + "name": "VPU description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-corporate-procurement-contract-awards" + }, + "extract": { + "column": "VPU description" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "cosmetic-event", + "name": "cosmetic-event", + "description": "STRABLE dataset 'cosmetic-event'. Task: m-classification (wide). Target column: 'outcomes'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "cosmetic-event/report_number", + "name": "report_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "report_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/outcomes", + "name": "outcomes", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "outcomes" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/age", + "name": "age", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "age" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/age_unit", + "name": "age_unit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "age_unit" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/gender", + "name": "gender", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "gender" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/event_date", + "name": "event_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "event_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/latest_received_date", + "name": "latest_received_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "latest_received_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/reactions", + "name": "reactions", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "reactions" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/report_type", + "name": "report_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "report_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/initial_received_date", + "name": "initial_received_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "initial_received_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/report_version", + "name": "report_version", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "report_version" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/products", + "name": "products", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "products" + } + } + }, + { + "@type": "cr:Field", + "@id": "cosmetic-event/legacy_report_id", + "name": "legacy_report_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-cosmetic-event" + }, + "extract": { + "column": "legacy_report_id" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "covid-clinical-trials", + "name": "covid-clinical-trials", + "description": "STRABLE dataset 'covid-clinical-trials'. Task: regression (wide). Target column: 'days_to_complete'. Original source: ClinicalTrials.gov.", + "field": [ + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Rank", + "name": "Rank", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Rank" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/NCT_Number", + "name": "NCT Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "NCT Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Title", + "name": "Title", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Title" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Acronym", + "name": "Acronym", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Acronym" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Status", + "name": "Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Study_Results", + "name": "Study Results", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Study Results" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Conditions", + "name": "Conditions", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Conditions" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Interventions", + "name": "Interventions", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Interventions" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Outcome_Measures", + "name": "Outcome Measures", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Outcome Measures" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Sponsor_Collaborators", + "name": "Sponsor/Collaborators", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Sponsor/Collaborators" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Gender", + "name": "Gender", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Gender" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Age", + "name": "Age", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Age" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Phases", + "name": "Phases", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Phases" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Enrollment", + "name": "Enrollment", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Enrollment" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Funded_Bys", + "name": "Funded Bys", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Funded Bys" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Study_Type", + "name": "Study Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Study Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Study_Designs", + "name": "Study Designs", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Study Designs" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Other_IDs", + "name": "Other IDs", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Other IDs" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Primary_Completion_Date", + "name": "Primary Completion Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Primary Completion Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/First_Posted", + "name": "First Posted", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "First Posted" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Results_First_Posted", + "name": "Results First Posted", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Results First Posted" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Last_Update_Posted", + "name": "Last Update Posted", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Last Update Posted" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Locations", + "name": "Locations", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Locations" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/Study_Documents", + "name": "Study Documents", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "Study Documents" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/URL", + "name": "URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "URL" + } + } + }, + { + "@type": "cr:Field", + "@id": "covid-clinical-trials/days_to_complete", + "name": "days_to_complete", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-covid-clinical-trials" + }, + "extract": { + "column": "days_to_complete" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "device-classification", + "name": "device-classification", + "description": "STRABLE dataset 'device-classification'. Task: m-classification (wide). Target column: 'device_class'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "device-classification/third_party_flag", + "name": "third_party_flag", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "third_party_flag" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-classification/life_sustain_support_flag", + "name": "life_sustain_support_flag", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "life_sustain_support_flag" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-classification/gmp_exempt_flag", + "name": "gmp_exempt_flag", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "gmp_exempt_flag" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-classification/summary_malfunction_reporting", + "name": "summary_malfunction_reporting", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "summary_malfunction_reporting" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-classification/product_code", + "name": "product_code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "product_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-classification/review_panel", + "name": "review_panel", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "review_panel" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-classification/device_name", + "name": "device_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "device_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-classification/device_class", + "name": "device_class", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "device_class" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-classification/definition", + "name": "definition", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "definition" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-classification/implant_flag", + "name": "implant_flag", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-classification" + }, + "extract": { + "column": "implant_flag" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "device-covid19serology", + "name": "device-covid19serology", + "description": "STRABLE dataset 'device-covid19serology'. Task: b-classification (wide). Target column: 'antibody_truth'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "device-covid19serology/lot_number", + "name": "lot_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "lot_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/manufacturer", + "name": "manufacturer", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "manufacturer" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/antibody_truth", + "name": "antibody_truth", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "antibody_truth" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/panel", + "name": "panel", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "panel" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/date_performed", + "name": "date_performed", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "date_performed" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/evaluation_id", + "name": "evaluation_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "evaluation_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/sample_no", + "name": "sample_no", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "sample_no" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/control", + "name": "control", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "control" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/iga_result", + "name": "iga_result", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "iga_result" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/pan_result", + "name": "pan_result", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "pan_result" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-covid19serology/device", + "name": "device", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-covid19serology" + }, + "extract": { + "column": "device" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "device-pma", + "name": "device-pma", + "description": "STRABLE dataset 'device-pma'. Task: b-classification (wide). Target column: 'decision_code'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "device-pma/pma_number", + "name": "pma_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "pma_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/applicant", + "name": "applicant", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "applicant" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/street_1", + "name": "street_1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "street_1" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/street_2", + "name": "street_2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "street_2" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/city", + "name": "city", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "city" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/state", + "name": "state", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "state" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/zip", + "name": "zip", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "zip" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/zip_ext", + "name": "zip_ext", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "zip_ext" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/generic_name", + "name": "generic_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "generic_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/trade_name", + "name": "trade_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "trade_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/product_code", + "name": "product_code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "product_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/advisory_committee", + "name": "advisory_committee", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "advisory_committee" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/advisory_committee_description", + "name": "advisory_committee_description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "advisory_committee_description" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/expedited_review_flag", + "name": "expedited_review_flag", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "expedited_review_flag" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/date_received", + "name": "date_received", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "date_received" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/decision_date", + "name": "decision_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "decision_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/docket_number", + "name": "docket_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "docket_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/decision_code", + "name": "decision_code", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "decision_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/openfda", + "name": "openfda", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "openfda" + } + } + }, + { + "@type": "cr:Field", + "@id": "device-pma/fed_reg_notice_date", + "name": "fed_reg_notice_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-device-pma" + }, + "extract": { + "column": "fed_reg_notice_date" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "disbursements-in-trust-funds", + "name": "disbursements-in-trust-funds", + "description": "STRABLE dataset 'disbursements-in-trust-funds'. Task: regression (wide). Target column: 'Cash Disbursements (US$)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Trust_Fund", + "name": "Trust Fund", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Trust Fund" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Trust_Fund_name", + "name": "Trust Fund name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Trust Fund name" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Trust_Fund_status", + "name": "Trust Fund status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Trust Fund status" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Trustee", + "name": "Trustee", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Trustee" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Trustee_Status", + "name": "Trustee Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Trustee Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Trustee_name", + "name": "Trustee name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Trustee name" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Fund_Classification", + "name": "Fund Classification", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Fund Classification" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Program_Group", + "name": "Program Group", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Program Group" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Execution_Type", + "name": "Execution Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Execution Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Fiscal_year", + "name": "Fiscal year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Fiscal year" + } + } + }, + { + "@type": "cr:Field", + "@id": "disbursements-in-trust-funds/Cash_Disbursements_US$", + "name": "Cash Disbursements (US$)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-disbursements-in-trust-funds" + }, + "extract": { + "column": "Cash Disbursements (US$)" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "discretionary-grant", + "name": "discretionary-grant", + "description": "STRABLE dataset 'discretionary-grant'. Task: regression (wide). Target column: 'AwardTotal'. Original source: Institute of Museum and Library Services.", + "field": [ + { + "@type": "cr:Field", + "@id": "discretionary-grant/LogNumber", + "name": "LogNumber", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "LogNumber" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/Institution", + "name": "Institution", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "Institution" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/Program", + "name": "Program", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "Program" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/ProgramType", + "name": "ProgramType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "ProgramType" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/ProjectTitle", + "name": "ProjectTitle", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "ProjectTitle" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/ProjectType", + "name": "ProjectType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "ProjectType" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/AwardDate", + "name": "AwardDate", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "AwardDate" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/InstAddr1", + "name": "InstAddr1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "InstAddr1" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/InstAddr2", + "name": "InstAddr2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "InstAddr2" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/InstAddr3", + "name": "InstAddr3", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "InstAddr3" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/InstCity", + "name": "InstCity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "InstCity" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/InstState", + "name": "InstState", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "InstState" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/InstZip", + "name": "InstZip", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "InstZip" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/AwardTotal", + "name": "AwardTotal", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "AwardTotal" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/Prefix", + "name": "Prefix", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "Prefix" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/FirstName", + "name": "FirstName", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "FirstName" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/LastName", + "name": "LastName", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "LastName" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/OrgType", + "name": "OrgType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "OrgType" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/FiscalYear", + "name": "FiscalYear", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "FiscalYear" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/OrgUnit", + "name": "OrgUnit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "OrgUnit" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/OUAddr1", + "name": "OUAddr1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "OUAddr1" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/OUAddr2", + "name": "OUAddr2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "OUAddr2" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/OUAddr3", + "name": "OUAddr3", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "OUAddr3" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/OUCity", + "name": "OUCity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "OUCity" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/OUState", + "name": "OUState", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "OUState" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/OUZip", + "name": "OUZip", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "OUZip" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/Latitude", + "name": "Latitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "Latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/Longitude", + "name": "Longitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "Longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/FIPSState", + "name": "FIPSState", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "FIPSState" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/FIPSCounty", + "name": "FIPSCounty", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "FIPSCounty" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/CensusTract", + "name": "CensusTract", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "CensusTract" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/CensusBlock", + "name": "CensusBlock", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "CensusBlock" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/FIPSMCDCode", + "name": "FIPSMCDCode", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "FIPSMCDCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/FIPSPlaceCode", + "name": "FIPSPlaceCode", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "FIPSPlaceCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/CBSACode", + "name": "CBSACode", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "CBSACode" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/MetroDivisionCode", + "name": "MetroDivisionCode", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "MetroDivisionCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "discretionary-grant/Description", + "name": "Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-discretionary-grant" + }, + "extract": { + "column": "Description" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "drug-drugsfda", + "name": "drug-drugsfda", + "description": "STRABLE dataset 'drug-drugsfda'. Task: b-classification (wide). Target column: 'marketing_status'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "drug-drugsfda/submissions", + "name": "submissions", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-drugsfda" + }, + "extract": { + "column": "submissions" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-drugsfda/application_number", + "name": "application_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-drugsfda" + }, + "extract": { + "column": "application_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-drugsfda/sponsor_name", + "name": "sponsor_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-drugsfda" + }, + "extract": { + "column": "sponsor_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-drugsfda/reference_drug", + "name": "reference_drug", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-drugsfda" + }, + "extract": { + "column": "reference_drug" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-drugsfda/strengths", + "name": "strengths", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-drugsfda" + }, + "extract": { + "column": "strengths" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-drugsfda/brand_name", + "name": "brand_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-drugsfda" + }, + "extract": { + "column": "brand_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-drugsfda/dosage_form", + "name": "dosage_form", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-drugsfda" + }, + "extract": { + "column": "dosage_form" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-drugsfda/marketing_status", + "name": "marketing_status", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-drugsfda" + }, + "extract": { + "column": "marketing_status" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "drug-enforcement", + "name": "drug-enforcement", + "description": "STRABLE dataset 'drug-enforcement'. Task: m-classification (wide). Target column: 'classification'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "drug-enforcement/status", + "name": "status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "status" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/city", + "name": "city", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "city" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/state", + "name": "state", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "state" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/country", + "name": "country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "country" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/classification", + "name": "classification", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "classification" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/application_number", + "name": "application_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "application_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/brand_name", + "name": "brand_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "brand_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/generic_name", + "name": "generic_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "generic_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/manufacturer_name", + "name": "manufacturer_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "manufacturer_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/product_ndc", + "name": "product_ndc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "product_ndc" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/product_type", + "name": "product_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "product_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/route", + "name": "route", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "route" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/substance_name", + "name": "substance_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "substance_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/rxcui", + "name": "rxcui", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "rxcui" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/spl_id", + "name": "spl_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "spl_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/spl_set_id", + "name": "spl_set_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "spl_set_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/package_ndc", + "name": "package_ndc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "package_ndc" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/nui", + "name": "nui", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "nui" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/pharm_class_pe", + "name": "pharm_class_pe", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "pharm_class_pe" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/pharm_class_epc", + "name": "pharm_class_epc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "pharm_class_epc" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/unii", + "name": "unii", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "unii" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/upc", + "name": "upc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "upc" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/pharm_class_cs", + "name": "pharm_class_cs", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "pharm_class_cs" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/pharm_class_moa", + "name": "pharm_class_moa", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "pharm_class_moa" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/original_packager_product_ndc", + "name": "original_packager_product_ndc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "original_packager_product_ndc" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/event_id", + "name": "event_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "event_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/recalling_firm", + "name": "recalling_firm", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "recalling_firm" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/address_1", + "name": "address_1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "address_1" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/address_2", + "name": "address_2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "address_2" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/postal_code", + "name": "postal_code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "postal_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/voluntary_mandated", + "name": "voluntary_mandated", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "voluntary_mandated" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/initial_firm_notification", + "name": "initial_firm_notification", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "initial_firm_notification" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/distribution_pattern", + "name": "distribution_pattern", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "distribution_pattern" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/recall_number", + "name": "recall_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "recall_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/product_description", + "name": "product_description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "product_description" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/product_quantity", + "name": "product_quantity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "product_quantity" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/reason_for_recall", + "name": "reason_for_recall", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "reason_for_recall" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/recall_initiation_date", + "name": "recall_initiation_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "recall_initiation_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/center_classification_date", + "name": "center_classification_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "center_classification_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/report_date", + "name": "report_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "report_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/code_info", + "name": "code_info", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "code_info" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-enforcement/termination_date", + "name": "termination_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-enforcement" + }, + "extract": { + "column": "termination_date" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "drug-ndc", + "name": "drug-ndc", + "description": "STRABLE dataset 'drug-ndc'. Task: m-classification (wide). Target column: 'dea_schedule'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "drug-ndc/product_ndc", + "name": "product_ndc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "product_ndc" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/generic_name", + "name": "generic_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "generic_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/labeler_name", + "name": "labeler_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "labeler_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/brand_name", + "name": "brand_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "brand_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/active_ingredients", + "name": "active_ingredients", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "active_ingredients" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/finished", + "name": "finished", + "description": "Original dtype: bool.", + "dataType": "sc:Boolean", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "finished" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/packaging", + "name": "packaging", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "packaging" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/listing_expiration_date", + "name": "listing_expiration_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "listing_expiration_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/openfda", + "name": "openfda", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "openfda" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/marketing_category", + "name": "marketing_category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "marketing_category" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/dosage_form", + "name": "dosage_form", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "dosage_form" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/spl_id", + "name": "spl_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "spl_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/product_type", + "name": "product_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "product_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/route", + "name": "route", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "route" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/marketing_start_date", + "name": "marketing_start_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "marketing_start_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/product_id", + "name": "product_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "product_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/application_number", + "name": "application_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "application_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/brand_name_base", + "name": "brand_name_base", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "brand_name_base" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/marketing_end_date", + "name": "marketing_end_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "marketing_end_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/pharm_class", + "name": "pharm_class", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "pharm_class" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/dea_schedule", + "name": "dea_schedule", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "dea_schedule" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-ndc/brand_name_suffix", + "name": "brand_name_suffix", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-ndc" + }, + "extract": { + "column": "brand_name_suffix" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "drug-shortages", + "name": "drug-shortages", + "description": "STRABLE dataset 'drug-shortages'. Task: m-classification (wide). Target column: 'availability'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "drug-shortages/initial_posting_date", + "name": "initial_posting_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "initial_posting_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-shortages/package_ndc", + "name": "package_ndc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "package_ndc" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-shortages/generic_name", + "name": "generic_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "generic_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-shortages/contact_info", + "name": "contact_info", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "contact_info" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-shortages/openfda", + "name": "openfda", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "openfda" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-shortages/therapeutic_category", + "name": "therapeutic_category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "therapeutic_category" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-shortages/dosage_form", + "name": "dosage_form", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "dosage_form" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-shortages/presentation", + "name": "presentation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "presentation" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-shortages/company_name", + "name": "company_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "company_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "drug-shortages/availability", + "name": "availability", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-drug-shortages" + }, + "extract": { + "column": "availability" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "electric-generating-plants", + "name": "electric-generating-plants", + "description": "STRABLE dataset 'electric-generating-plants'. Task: regression (wide). Target column: 'NET_GEN'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "electric-generating-plants/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/PLANT_CODE", + "name": "PLANT_CODE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "PLANT_CODE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/ZIP", + "name": "ZIP", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/TELEPHONE", + "name": "TELEPHONE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "TELEPHONE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/TYPE", + "name": "TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/COUNTY", + "name": "COUNTY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "COUNTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/COUNTYFIPS", + "name": "COUNTYFIPS", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "COUNTYFIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/LATITUDE", + "name": "LATITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "LATITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/LONGITUDE", + "name": "LONGITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "LONGITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/NAICS_CODE", + "name": "NAICS_CODE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "NAICS_CODE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/NAICS_DESC", + "name": "NAICS_DESC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "NAICS_DESC" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/SOURCE", + "name": "SOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "SOURCE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/SOURCEDATE", + "name": "SOURCEDATE", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "SOURCEDATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/VAL_METHOD", + "name": "VAL_METHOD", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "VAL_METHOD" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/VAL_DATE", + "name": "VAL_DATE", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "VAL_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/WEBSITE", + "name": "WEBSITE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "WEBSITE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/OPERATOR", + "name": "OPERATOR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "OPERATOR" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/OPERAT_ID", + "name": "OPERAT_ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "OPERAT_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/GEN_UNITS", + "name": "GEN_UNITS", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "GEN_UNITS" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/PLAN_UNIT", + "name": "PLAN_UNIT", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "PLAN_UNIT" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/RETIR_UNIT", + "name": "RETIR_UNIT", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "RETIR_UNIT" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/PRIM_FUEL", + "name": "PRIM_FUEL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "PRIM_FUEL" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/SEC_FUEL", + "name": "SEC_FUEL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "SEC_FUEL" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/COAL_USED", + "name": "COAL_USED", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "COAL_USED" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/NGAS_USED", + "name": "NGAS_USED", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "NGAS_USED" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/OIL_USED", + "name": "OIL_USED", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "OIL_USED" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/NET_GEN", + "name": "NET_GEN", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "NET_GEN" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/SUB_1", + "name": "SUB_1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "SUB_1" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/SUB_2", + "name": "SUB_2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "SUB_2" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/LINES", + "name": "LINES", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "LINES" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/SOURCE_LAT", + "name": "SOURCE_LAT", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "SOURCE_LAT" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/SOURC_LONG", + "name": "SOURC_LONG", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "SOURC_LONG" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-generating-plants/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-generating-plants" + }, + "extract": { + "column": "y" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "electric-retail-service-territories", + "name": "electric-retail-service-territories", + "description": "STRABLE dataset 'electric-retail-service-territories'. Task: regression (wide). Target column: 'TOTAL_MWH'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/ID", + "name": "ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/ZIP", + "name": "ZIP", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/TELEPHONE", + "name": "TELEPHONE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "TELEPHONE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/TYPE", + "name": "TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/SOURCE", + "name": "SOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "SOURCE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/VAL_DATE", + "name": "VAL_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "VAL_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/WEBSITE", + "name": "WEBSITE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "WEBSITE" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/REGULATED", + "name": "REGULATED", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "REGULATED" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/CNTRL_AREA", + "name": "CNTRL_AREA", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "CNTRL_AREA" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/PLAN_AREA", + "name": "PLAN_AREA", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "PLAN_AREA" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/HOLDING_CO", + "name": "HOLDING_CO", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "HOLDING_CO" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/NET_EX", + "name": "NET_EX", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "NET_EX" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/TOTAL_MWH", + "name": "TOTAL_MWH", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "TOTAL_MWH" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/Shape__Area", + "name": "Shape__Area", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "Shape__Area" + } + } + }, + { + "@type": "cr:Field", + "@id": "electric-retail-service-territories/Shape__Length", + "name": "Shape__Length", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-electric-retail-service-territories" + }, + "extract": { + "column": "Shape__Length" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "external-clinician-dashboard", + "name": "external-clinician-dashboard", + "description": "STRABLE dataset 'external-clinician-dashboard'. Task: regression (wide). Target column: 'Score'. Original source: HRSA.", + "field": [ + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/ProgramAbbr", + "name": "ProgramAbbr", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "ProgramAbbr" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/ObligationEndFiscalYear", + "name": "ObligationEndFiscalYear", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "ObligationEndFiscalYear" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/YearsObligated", + "name": "YearsObligated", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "YearsObligated" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/NHSCSiteType", + "name": "NHSCSiteType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "NHSCSiteType" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/NCSiteType", + "name": "NCSiteType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "NCSiteType" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/SiteCity", + "name": "SiteCity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "SiteCity" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/SiteCounty", + "name": "SiteCounty", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "SiteCounty" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/SiteState", + "name": "SiteState", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "SiteState" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/ClinicianDisciplineDesc", + "name": "ClinicianDisciplineDesc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "ClinicianDisciplineDesc" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/ClinicianSpecialtyDesc", + "name": "ClinicianSpecialtyDesc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "ClinicianSpecialtyDesc" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/FieldOfPractice", + "name": "FieldOfPractice", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "FieldOfPractice" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/CurrentCity", + "name": "CurrentCity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "CurrentCity" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/CurrentState", + "name": "CurrentState", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "CurrentState" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/CurrentCountyName", + "name": "CurrentCountyName", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "CurrentCountyName" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/Score", + "name": "Score", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "Score" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/DisciplineType", + "name": "DisciplineType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "DisciplineType" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/CommunityRank", + "name": "CommunityRank", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "CommunityRank" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/IsRural", + "name": "IsRural", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "IsRural" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/InMCTA", + "name": "InMCTA", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "InMCTA" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/SiteCongDistName", + "name": "SiteCongDistName", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "SiteCongDistName" + } + } + }, + { + "@type": "cr:Field", + "@id": "external-clinician-dashboard/CurrentCongDistName", + "name": "CurrentCongDistName", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-external-clinician-dashboard" + }, + "extract": { + "column": "CurrentCongDistName" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "financial-intermediary-funds-cash-transfers", + "name": "financial-intermediary-funds-cash-transfers", + "description": "STRABLE dataset 'financial-intermediary-funds-cash-transfers'. Task: regression (wide). Target column: 'Amount in USD'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-cash-transfers/Fund_Name", + "name": "Fund Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-cash-transfers" + }, + "extract": { + "column": "Fund Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-cash-transfers/Principal_Recipient", + "name": "Principal Recipient", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-cash-transfers" + }, + "extract": { + "column": "Principal Recipient" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-cash-transfers/Transfer_Quarter", + "name": "Transfer Quarter", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-cash-transfers" + }, + "extract": { + "column": "Transfer Quarter" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-cash-transfers/Calendar_Year", + "name": "Calendar Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-cash-transfers" + }, + "extract": { + "column": "Calendar Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-cash-transfers/Amount_in_USD", + "name": "Amount in USD", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-cash-transfers" + }, + "extract": { + "column": "Amount in USD" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-cash-transfers/Sector_Theme", + "name": "Sector/Theme", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-cash-transfers" + }, + "extract": { + "column": "Sector/Theme" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "financial-intermediary-funds-commitments", + "name": "financial-intermediary-funds-commitments", + "description": "STRABLE dataset 'financial-intermediary-funds-commitments'. Task: regression (wide). Target column: 'Amount in USD'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-commitments/Fund_Name", + "name": "Fund Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-commitments" + }, + "extract": { + "column": "Fund Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-commitments/Principal_Recipient", + "name": "Principal Recipient", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-commitments" + }, + "extract": { + "column": "Principal Recipient" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-commitments/Approval_Quarter", + "name": "Approval Quarter", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-commitments" + }, + "extract": { + "column": "Approval Quarter" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-commitments/Calendar_Year", + "name": "Calendar Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-commitments" + }, + "extract": { + "column": "Calendar Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-commitments/Amount_in_USD", + "name": "Amount in USD", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-commitments" + }, + "extract": { + "column": "Amount in USD" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-commitments/Financial_Product", + "name": "Financial Product", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-commitments" + }, + "extract": { + "column": "Financial Product" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-commitments/Sector_Theme", + "name": "Sector/Theme", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-commitments" + }, + "extract": { + "column": "Sector/Theme" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "financial-intermediary-funds-funding-decisions", + "name": "financial-intermediary-funds-funding-decisions", + "description": "STRABLE dataset 'financial-intermediary-funds-funding-decisions'. Task: regression (wide). Target column: 'Amount in USD'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Fund_Name", + "name": "Fund Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Fund Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Use_Code", + "name": "Use Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Use Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Country_Beneficiary", + "name": "Country Beneficiary", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Country Beneficiary" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Recipient", + "name": "Recipient", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Recipient" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Sub_Account", + "name": "Sub Account", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Sub Account" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Approval_Quarter", + "name": "Approval Quarter", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Approval Quarter" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Calendar_Year", + "name": "Calendar Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Calendar Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Amount_in_USD", + "name": "Amount in USD", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Amount in USD" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Financial_Product", + "name": "Financial Product", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Financial Product" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-intermediary-funds-funding-decisions/Sector_Theme", + "name": "Sector/Theme", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-intermediary-funds-funding-decisions" + }, + "extract": { + "column": "Sector/Theme" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "financial-management", + "name": "financial-management", + "description": "STRABLE dataset 'financial-management'. Task: regression (wide). Target column: 'State Share'. Original source: Medicaid.", + "field": [ + { + "@type": "cr:Field", + "@id": "financial-management/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-management" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-management/Program", + "name": "Program", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-management" + }, + "extract": { + "column": "Program" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-management/Service_Category", + "name": "Service Category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-management" + }, + "extract": { + "column": "Service Category" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-management/Federal_Share", + "name": "Federal Share", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-financial-management" + }, + "extract": { + "column": "Federal Share" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-management/Federal_Share_Medicaid", + "name": "Federal Share Medicaid", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-financial-management" + }, + "extract": { + "column": "Federal Share Medicaid" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-management/Federal_Share_ARRA", + "name": "Federal Share ARRA", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-financial-management" + }, + "extract": { + "column": "Federal Share ARRA" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-management/Federal_Share_BIPP", + "name": "Federal Share BIPP", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-financial-management" + }, + "extract": { + "column": "Federal Share BIPP" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-management/State_Share", + "name": "State Share", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-management" + }, + "extract": { + "column": "State Share" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-management/Location", + "name": "Location", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-management" + }, + "extract": { + "column": "Location" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "financial-product-complaint", + "name": "financial-product-complaint", + "description": "STRABLE dataset 'financial-product-complaint'. Task: m-classification (wide). Target column: 'Company response to consumer'. Original source: Consumer-Financial-Protection-Bureau.", + "field": [ + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Date_received", + "name": "Date received", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Date received" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Product", + "name": "Product", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Product" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Sub-product", + "name": "Sub-product", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Sub-product" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Issue", + "name": "Issue", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Issue" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Sub-issue", + "name": "Sub-issue", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Sub-issue" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Consumer_complaint_narrative", + "name": "Consumer complaint narrative", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Consumer complaint narrative" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Company_public_response", + "name": "Company public response", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Company public response" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Company", + "name": "Company", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Company" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/ZIP_code", + "name": "ZIP code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "ZIP code" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Tags", + "name": "Tags", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Tags" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Consumer_consent_provided?", + "name": "Consumer consent provided?", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Consumer consent provided?" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Submitted_via", + "name": "Submitted via", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Submitted via" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Date_sent_to_company", + "name": "Date sent to company", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Date sent to company" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Company_response_to_consumer", + "name": "Company response to consumer", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Company response to consumer" + } + } + }, + { + "@type": "cr:Field", + "@id": "financial-product-complaint/Complaint_ID", + "name": "Complaint ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-financial-product-complaint" + }, + "extract": { + "column": "Complaint ID" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "first-time-nadac-rates", + "name": "first-time-nadac-rates", + "description": "STRABLE dataset 'first-time-nadac-rates'. Task: regression (wide). Target column: 'NADAC Rate'. Original source: Medicaid.", + "field": [ + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/Drug_Product", + "name": "Drug Product", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "Drug Product" + } + } + }, + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/Brief_Indication_Description", + "name": "Brief Indication/Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "Brief Indication/Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/Drug_Class", + "name": "Drug Class", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "Drug Class" + } + } + }, + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/Package_Size", + "name": "Package Size", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "Package Size" + } + } + }, + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/NCPDP_Billing_Unit_Standard", + "name": "NCPDP Billing Unit Standard", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "NCPDP Billing Unit Standard" + } + } + }, + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/NADAC_Rate", + "name": "NADAC Rate", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "NADAC Rate" + } + } + }, + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/Number_of_Active_NDCs_Within_The_RateGroup_That_Are_On_The_Covered_Outpatient_Drug_File", + "name": "Number of Active NDCs Within The RateGroup That Are On The Covered Outpatient Drug File", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "Number of Active NDCs Within The RateGroup That Are On The Covered Outpatient Drug File" + } + } + }, + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/Primary_Reason_Code", + "name": "Primary Reason Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "Primary Reason Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/As_of_Date", + "name": "As of Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "As of Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "first-time-nadac-rates/Classification_for_Rate_Setting", + "name": "Classification for Rate Setting", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-first-time-nadac-rates" + }, + "extract": { + "column": "Classification for Rate Setting" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "food-enforcement", + "name": "food-enforcement", + "description": "STRABLE dataset 'food-enforcement'. Task: m-classification (wide). Target column: 'classification'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "food-enforcement/status", + "name": "status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "status" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/city", + "name": "city", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "city" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/state", + "name": "state", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "state" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/country", + "name": "country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "country" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/classification", + "name": "classification", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "classification" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/event_id", + "name": "event_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "event_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/recalling_firm", + "name": "recalling_firm", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "recalling_firm" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/address_1", + "name": "address_1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "address_1" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/address_2", + "name": "address_2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "address_2" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/postal_code", + "name": "postal_code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "postal_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/voluntary_mandated", + "name": "voluntary_mandated", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "voluntary_mandated" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/initial_firm_notification", + "name": "initial_firm_notification", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "initial_firm_notification" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/distribution_pattern", + "name": "distribution_pattern", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "distribution_pattern" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/recall_number", + "name": "recall_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "recall_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/product_description", + "name": "product_description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "product_description" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/product_quantity", + "name": "product_quantity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "product_quantity" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/reason_for_recall", + "name": "reason_for_recall", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "reason_for_recall" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/recall_initiation_date", + "name": "recall_initiation_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "recall_initiation_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/center_classification_date", + "name": "center_classification_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "center_classification_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/report_date", + "name": "report_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "report_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/code_info", + "name": "code_info", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "code_info" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-enforcement/termination_date", + "name": "termination_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-enforcement" + }, + "extract": { + "column": "termination_date" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "food-event", + "name": "food-event", + "description": "STRABLE dataset 'food-event'. Task: m-classification (wide). Target column: 'outcomes'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "food-event/report_number", + "name": "report_number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-event" + }, + "extract": { + "column": "report_number" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-event/outcomes", + "name": "outcomes", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-event" + }, + "extract": { + "column": "outcomes" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-event/date_created", + "name": "date_created", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-event" + }, + "extract": { + "column": "date_created" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-event/reactions", + "name": "reactions", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-event" + }, + "extract": { + "column": "reactions" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-event/date_started", + "name": "date_started", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-event" + }, + "extract": { + "column": "date_started" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-event/age", + "name": "age", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-event" + }, + "extract": { + "column": "age" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-event/age_unit", + "name": "age_unit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-event" + }, + "extract": { + "column": "age_unit" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-event/gender", + "name": "gender", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-event" + }, + "extract": { + "column": "gender" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-event/products", + "name": "products", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-event" + }, + "extract": { + "column": "products" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "food-prices_wide", + "name": "food-prices_wide", + "description": "STRABLE dataset 'food-prices_wide'. Task: regression (wide). Target column: 'usdprice'. Original source: OHCA.", + "field": [ + { + "@type": "cr:Field", + "@id": "food-prices_wide/countryiso3", + "name": "countryiso3", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "countryiso3" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/admin1", + "name": "admin1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "admin1" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/admin2", + "name": "admin2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "admin2" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/market", + "name": "market", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "market" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/market_id", + "name": "market_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "market_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/latitude", + "name": "latitude", + "description": "Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/longitude", + "name": "longitude", + "description": "Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/category", + "name": "category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "category" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/commodity", + "name": "commodity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "commodity" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/commodity_id", + "name": "commodity_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "commodity_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/unit", + "name": "unit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "unit" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/priceflag", + "name": "priceflag", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "priceflag" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/pricetype", + "name": "pricetype", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "pricetype" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/currency", + "name": "currency", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "currency" + } + } + }, + { + "@type": "cr:Field", + "@id": "food-prices_wide/usdprice", + "name": "usdprice", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-food-prices_wide" + }, + "extract": { + "column": "usdprice" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "foreign-gift-and-contract", + "name": "foreign-gift-and-contract", + "description": "STRABLE dataset 'foreign-gift-and-contract'. Task: regression (wide). Target column: 'Amount'. Original source: FSA.", + "field": [ + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/OPEID", + "name": "OPEID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "OPEID" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/School_Name", + "name": "School Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "School Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Transaction_Type", + "name": "Transaction Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Transaction Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Foreign_Government_Source", + "name": "Foreign Government Source", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Foreign Government Source" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Attribution_Country", + "name": "Attribution Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Attribution Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Amount", + "name": "Amount", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Amount" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Receipt_Date", + "name": "Receipt Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Receipt Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Contract_Start_Date", + "name": "Contract Start Date", + "description": "Original dtype: timestamp[us].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Contract Start Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Contract_End_Date", + "name": "Contract End Date", + "description": "Original dtype: timestamp[us].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Contract End Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Restricted_Transaction_Foreign_Government_Legal_Name", + "name": "Restricted Transaction Foreign Government Legal Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Restricted Transaction Foreign Government Legal Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Restricted_Transaction_Foreign_Government_Name", + "name": "Restricted Transaction Foreign Government Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Restricted Transaction Foreign Government Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Restricted_Transaction_Description", + "name": "Restricted Transaction Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Restricted Transaction Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Institution_Owned_by_Foreign_Source", + "name": "Institution Owned by Foreign Source", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Institution Owned by Foreign Source" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Foreign_Source_Owner_Name", + "name": "Foreign Source Owner Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Foreign Source Owner Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Foreign_Source_Ownership_Date", + "name": "Foreign Source Ownership Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Foreign Source Ownership Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Changes_Due_to_Foreign_Source_Owner", + "name": "Changes Due to Foreign Source Owner", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Changes Due to Foreign Source Owner" + } + } + }, + { + "@type": "cr:Field", + "@id": "foreign-gift-and-contract/Legacy", + "name": "Legacy", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-foreign-gift-and-contract" + }, + "extract": { + "column": "Legacy" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "fts-funding", + "name": "fts-funding", + "description": "STRABLE dataset 'fts-funding'. Task: regression (wide). Target column: 'amountUSD'. Original source: OHCA.", + "field": [ + { + "@type": "cr:Field", + "@id": "fts-funding/date", + "name": "date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "date" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/budgetYear", + "name": "budgetYear", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "budgetYear" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/description", + "name": "description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "description" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/amountUSD", + "name": "amountUSD", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "amountUSD" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/srcOrganization", + "name": "srcOrganization", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "srcOrganization" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/srcOrganizationTypes", + "name": "srcOrganizationTypes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "srcOrganizationTypes" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/srcLocations", + "name": "srcLocations", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "srcLocations" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/srcUsageYearStart", + "name": "srcUsageYearStart", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "srcUsageYearStart" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/srcUsageYearEnd", + "name": "srcUsageYearEnd", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "srcUsageYearEnd" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destPlan", + "name": "destPlan", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destPlan" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destPlanCode", + "name": "destPlanCode", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destPlanCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destPlanId", + "name": "destPlanId", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destPlanId" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destOrganization", + "name": "destOrganization", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destOrganization" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destOrganizationTypes", + "name": "destOrganizationTypes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destOrganizationTypes" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destGlobalClusters", + "name": "destGlobalClusters", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destGlobalClusters" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destLocations", + "name": "destLocations", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destLocations" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destProject", + "name": "destProject", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destProject" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destProjectCode", + "name": "destProjectCode", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destProjectCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destEmergency", + "name": "destEmergency", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destEmergency" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destUsageYearStart", + "name": "destUsageYearStart", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destUsageYearStart" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/destUsageYearEnd", + "name": "destUsageYearEnd", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "destUsageYearEnd" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/contributionType", + "name": "contributionType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "contributionType" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/method", + "name": "method", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "method" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/boundary", + "name": "boundary", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "boundary" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/status", + "name": "status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "status" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/firstReportedDate", + "name": "firstReportedDate", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "firstReportedDate" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/decisionDate", + "name": "decisionDate", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "decisionDate" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/keywords", + "name": "keywords", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "keywords" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/originalCurrency", + "name": "originalCurrency", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "originalCurrency" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/exchangeRate", + "name": "exchangeRate", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "exchangeRate" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/id", + "name": "id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "id" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/refCode", + "name": "refCode", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "refCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/createdAt", + "name": "createdAt", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "createdAt" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/updatedAt", + "name": "updatedAt", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "updatedAt" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-funding/funding_type", + "name": "funding_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-funding" + }, + "extract": { + "column": "funding_type" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "fts-requirement-and-funding", + "name": "fts-requirement-and-funding", + "description": "STRABLE dataset 'fts-requirement-and-funding'. Task: regression (wide). Target column: 'funding'. Original source: OHCA.", + "field": [ + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/countryCode", + "name": "countryCode", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "countryCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/id", + "name": "id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "id" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/name", + "name": "name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "name" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/code", + "name": "code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "code" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/startDate", + "name": "startDate", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "startDate" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/endDate", + "name": "endDate", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "endDate" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/year", + "name": "year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "year" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/clusterCode", + "name": "clusterCode", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "clusterCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/cluster", + "name": "cluster", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "cluster" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/requirements", + "name": "requirements", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "requirements" + } + } + }, + { + "@type": "cr:Field", + "@id": "fts-requirement-and-funding/funding", + "name": "funding", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-fts-requirement-and-funding" + }, + "extract": { + "column": "funding" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "gainful-employment", + "name": "gainful-employment", + "description": "STRABLE dataset 'gainful-employment'. Task: regression (wide). Target column: 'Debt-to-Earnings Annual Rate'. Original source: FSA.", + "field": [ + { + "@type": "cr:Field", + "@id": "gainful-employment/Institution_Code_six-digit_OPEID", + "name": "Institution Code (six-digit OPEID)", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "Institution Code (six-digit OPEID)" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/Institution_Name", + "name": "Institution Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "Institution Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/City", + "name": "City", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "City" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/Zip", + "name": "Zip", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "Zip" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/Institution_Type", + "name": "Institution Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "Institution Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/CIP_Code", + "name": "CIP Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "CIP Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/CIP_Name", + "name": "CIP Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "CIP Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/Credential_Level", + "name": "Credential Level", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "Credential Level" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/Debt-to-Earnings_Annual_Rate", + "name": "Debt-to-Earnings Annual Rate", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "Debt-to-Earnings Annual Rate" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/Debt-to-Earnings_Discretionary_Income_Rate_Pass_Fail_Zone", + "name": "Debt-to-Earnings Discretionary Income Rate Pass/Fail/Zone", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "Debt-to-Earnings Discretionary Income Rate Pass/Fail/Zone" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/Debt-to-Earnings_Transitional_Rate_Pass_Fail_Zone", + "name": "Debt-to-Earnings Transitional Rate Pass/Fail/Zone", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "Debt-to-Earnings Transitional Rate Pass/Fail/Zone" + } + } + }, + { + "@type": "cr:Field", + "@id": "gainful-employment/Debt-to-Earnings_Transitional_Discretionary_Income_Rate_Pass_Fail_Zone", + "name": "Debt-to-Earnings Transitional Discretionary Income Rate Pass/Fail/Zone", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-gainful-employment" + }, + "extract": { + "column": "Debt-to-Earnings Transitional Discretionary Income Rate Pass/Fail/Zone" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "global-dams-database", + "name": "global-dams-database", + "description": "STRABLE dataset 'global-dams-database'. Task: regression (wide). Target column: 'Res_capacityM3'. Original source: energydata.info.", + "field": [ + { + "@type": "cr:Field", + "@id": "global-dams-database/Country", + "name": "Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/ISO", + "name": "ISO", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "ISO" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Sec_cntry", + "name": "Sec_cntry", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Sec_cntry" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Name", + "name": "Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/AltDamName", + "name": "AltDamName", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "AltDamName" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Purpose", + "name": "Purpose", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Purpose" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Admin_unit", + "name": "Admin_unit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Admin_unit" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Near_city", + "name": "Near_city", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Near_city" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/River", + "name": "River", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "River" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Main_basin", + "name": "Main_basin", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Main_basin" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Sub_basin", + "name": "Sub_basin", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Sub_basin" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Status", + "name": "Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/PVOUT", + "name": "PVOUT", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "PVOUT" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/PotentialPVSurface", + "name": "PotentialPVSurface", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "PotentialPVSurface" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/PV_InstalledCapacity", + "name": "PV_InstalledCapacity", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "PV_InstalledCapacity" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/PV_SpaCapacity", + "name": "PV_SpaCapacity", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "PV_SpaCapacity" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Dam_hgt", + "name": "Dam_hgt", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Dam_hgt" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Res_capacityM3", + "name": "Res_capacityM3", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Res_capacityM3" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Res_area_km2", + "name": "Res_area_km2", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Res_area_km2" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/HPP_Install_Cap", + "name": "HPP_Install_Cap", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "HPP_Install_Cap" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Transm_exist", + "name": "Transm_exist", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Transm_exist" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Transm_length", + "name": "Transm_length", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Transm_length" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Transm_plan", + "name": "Transm_plan", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Transm_plan" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Proj_type", + "name": "Proj_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Proj_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Lifecycle", + "name": "Lifecycle", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Lifecycle" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Storage_ty", + "name": "Storage_ty", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Storage_ty" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Linked_prj", + "name": "Linked_prj", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Linked_prj" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Proj_cost", + "name": "Proj_cost", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Proj_cost" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Proj_statu", + "name": "Proj_statu", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Proj_statu" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Study_stat", + "name": "Study_stat", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Study_stat" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/YEAR", + "name": "YEAR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "YEAR" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Yr_recents", + "name": "Yr_recents", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Yr_recents" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Comission_", + "name": "Comission_", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Comission_" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Ann_firm_g", + "name": "Ann_firm_g", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Ann_firm_g" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Ann_tot_ge", + "name": "Ann_tot_ge", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Ann_tot_ge" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Prox_irrig", + "name": "Prox_irrig", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Prox_irrig" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Size_irrig", + "name": "Size_irrig", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Size_irrig" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Owner", + "name": "Owner", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Owner" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Autom_EMS_", + "name": "Autom_EMS_", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Autom_EMS_" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/PrivateOwn", + "name": "PrivateOwn", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "PrivateOwn" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Feed_in_ta", + "name": "Feed_in_ta", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Feed_in_ta" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Feed_in__1", + "name": "Feed_in__1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Feed_in__1" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Guaranteed", + "name": "Guaranteed", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Guaranteed" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Competitiv", + "name": "Competitiv", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Competitiv" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Winning_bi", + "name": "Winning_bi", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Winning_bi" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/OtherFisca", + "name": "OtherFisca", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "OtherFisca" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Prioritize", + "name": "Prioritize", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Prioritize" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Priority_d", + "name": "Priority_d", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Priority_d" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Compensati", + "name": "Compensati", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Compensati" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Compensa_1", + "name": "Compensa_1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Compensa_1" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Gov_guaran", + "name": "Gov_guaran", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Gov_guaran" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Regulatory", + "name": "Regulatory", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Regulatory" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Download", + "name": "Download", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Download" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Long__res_", + "name": "Long__res_", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Long__res_" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Lat__res_", + "name": "Lat__res_", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Lat__res_" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Database", + "name": "Database", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Database" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-dams-database/Notes", + "name": "Notes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-dams-database" + }, + "extract": { + "column": "Notes" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "global-power-plant", + "name": "global-power-plant", + "description": "STRABLE dataset 'global-power-plant'. Task: regression (wide). Target column: 'capacity_mw'. Original source: world-resource-institute.", + "field": [ + { + "@type": "cr:Field", + "@id": "global-power-plant/country", + "name": "country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "country" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/country_long", + "name": "country_long", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "country_long" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/name", + "name": "name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "name" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/gppd_idnr", + "name": "gppd_idnr", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "gppd_idnr" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/capacity_mw", + "name": "capacity_mw", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "capacity_mw" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/latitude", + "name": "latitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/longitude", + "name": "longitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/primary_fuel", + "name": "primary_fuel", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "primary_fuel" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/other_fuel1", + "name": "other_fuel1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "other_fuel1" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/other_fuel2", + "name": "other_fuel2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "other_fuel2" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/other_fuel3", + "name": "other_fuel3", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "other_fuel3" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/commissioning_year", + "name": "commissioning_year", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "commissioning_year" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/owner", + "name": "owner", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "owner" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/source", + "name": "source", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "source" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/url", + "name": "url", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "url" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/geolocation_source", + "name": "geolocation_source", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "geolocation_source" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/wepp_id", + "name": "wepp_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "wepp_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/year_of_capacity_data", + "name": "year_of_capacity_data", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "year_of_capacity_data" + } + } + }, + { + "@type": "cr:Field", + "@id": "global-power-plant/generation_data_source", + "name": "generation_data_source", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-global-power-plant" + }, + "extract": { + "column": "generation_data_source" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "grant", + "name": "grant", + "description": "STRABLE dataset 'grant'. Task: regression (wide). Target column: 'Federal Funds'. Original source: Institute of Museum and Library Services.", + "field": [ + { + "@type": "cr:Field", + "@id": "grant/Log_Number", + "name": "Log Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "Log Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "grant/Description", + "name": "Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "grant/Supplement_Indicator", + "name": "Supplement Indicator", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "Supplement Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "grant/Institution", + "name": "Institution", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "Institution" + } + } + }, + { + "@type": "cr:Field", + "@id": "grant/Fiscal_Year", + "name": "Fiscal Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "Fiscal Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "grant/Program", + "name": "Program", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "Program" + } + } + }, + { + "@type": "cr:Field", + "@id": "grant/Federal_Funds", + "name": "Federal Funds", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "Federal Funds" + } + } + }, + { + "@type": "cr:Field", + "@id": "grant/Funding_Office", + "name": "Funding Office", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "Funding Office" + } + } + }, + { + "@type": "cr:Field", + "@id": "grant/City", + "name": "City", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "City" + } + } + }, + { + "@type": "cr:Field", + "@id": "grant/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-grant" + }, + "extract": { + "column": "State" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "health-professional-shortage-areas", + "name": "health-professional-shortage-areas", + "description": "STRABLE dataset 'health-professional-shortage-areas'. Task: regression (wide). Target column: 'HPSA Score'. Original source: HRSA.", + "field": [ + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Name", + "name": "HPSA Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_ID", + "name": "HPSA ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Designation_Type", + "name": "Designation Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Designation Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Discipline_Class", + "name": "HPSA Discipline Class", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Discipline Class" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Score", + "name": "HPSA Score", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Score" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Primary_State_Abbreviation", + "name": "Primary State Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Primary State Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Designation_Date", + "name": "HPSA Designation Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Designation Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Designation_Last_Update_Date", + "name": "HPSA Designation Last Update Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Designation Last Update Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Metropolitan_Indicator", + "name": "Metropolitan Indicator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Metropolitan Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Geography_Identification_Number", + "name": "HPSA Geography Identification Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Geography Identification Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Degree_of_Shortage", + "name": "HPSA Degree of Shortage", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Degree of Shortage" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_FTE", + "name": "HPSA FTE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA FTE" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Designation_Population", + "name": "HPSA Designation Population", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Designation Population" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/%_of_Population_Below_100%_Poverty", + "name": "% of Population Below 100% Poverty", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "% of Population Below 100% Poverty" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Formal_Ratio", + "name": "HPSA Formal Ratio", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Formal Ratio" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Population_Type", + "name": "HPSA Population Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Population Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Rural_Status", + "name": "Rural Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Rural Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Longitude", + "name": "Longitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Latitude", + "name": "Latitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/BHCMIS_Organization_Identification_Number", + "name": "BHCMIS Organization Identification Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "BHCMIS Organization Identification Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Common_County_Name", + "name": "Common County Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Common County Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Common_Postal_Code", + "name": "Common Postal Code", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Common Postal Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Common_Region_Name", + "name": "Common Region Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Common Region Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Common_State_Abbreviation", + "name": "Common State Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Common State Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Common_State_County_FIPS_Code", + "name": "Common State County FIPS Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Common State County FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Common_State_FIPS_Code", + "name": "Common State FIPS Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Common State FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Common_State_Name", + "name": "Common State Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Common State Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/County_Equivalent_Name", + "name": "County Equivalent Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "County Equivalent Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/County_or_County_Equivalent_Federal_Information_Processing_Standard_Code", + "name": "County or County Equivalent Federal Information Processing Standard Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "County or County Equivalent Federal Information Processing Standard Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Discipline_Class_Number", + "name": "Discipline Class Number", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Discipline Class Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Address", + "name": "HPSA Address", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Address" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_City", + "name": "HPSA City", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA City" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Component_Name", + "name": "HPSA Component Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Component Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Component_Source_Identification_Number", + "name": "HPSA Component Source Identification Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Component Source Identification Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Component_State_Abbreviation", + "name": "HPSA Component State Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Component State Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Component_Type_Code", + "name": "HPSA Component Type Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Component Type Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Component_Type_Description", + "name": "HPSA Component Type Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Component Type Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Designation_Population_Type_Description", + "name": "HPSA Designation Population Type Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Designation Population Type Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Estimated_Served_Population", + "name": "HPSA Estimated Served Population", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Estimated Served Population" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Estimated_Underserved_Population", + "name": "HPSA Estimated Underserved Population", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Estimated Underserved Population" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Metropolitan_Indicator_Code", + "name": "HPSA Metropolitan Indicator Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Metropolitan Indicator Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Population_Type_Code", + "name": "HPSA Population Type Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Population Type Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Postal_Code", + "name": "HPSA Postal Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Postal Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Provider_Ratio_Goal", + "name": "HPSA Provider Ratio Goal", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Provider Ratio Goal" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Shortage", + "name": "HPSA Shortage", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Shortage" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/HPSA_Type_Code", + "name": "HPSA Type Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "HPSA Type Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Primary_State_FIPS_Code", + "name": "Primary State FIPS Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Primary State FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Primary_State_Name", + "name": "Primary State Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Primary State Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Provider_Type", + "name": "Provider Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Provider Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/Rural_Status_Code", + "name": "Rural Status Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "Rural Status Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/State_Abbreviation", + "name": "State Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "State Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/State_and_County_Federal_Information_Processing_Standard_Code", + "name": "State and County Federal Information Processing Standard Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "State and County Federal Information Processing Standard Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/State_FIPS_Code", + "name": "State FIPS Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "State FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/State_Name", + "name": "State Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "State Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/U.S._-_Mexico_Border_100_Kilometer_Indicator", + "name": "U.S. - Mexico Border 100 Kilometer Indicator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "U.S. - Mexico Border 100 Kilometer Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/U.S._-_Mexico_Border_County_Indicator", + "name": "U.S. - Mexico Border County Indicator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "U.S. - Mexico Border County Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "health-professional-shortage-areas/PC_MCTA_Score", + "name": "PC MCTA Score", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-health-professional-shortage-areas" + }, + "extract": { + "column": "PC MCTA Score" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "historic-perimeters-wildfires", + "name": "historic-perimeters-wildfires", + "description": "STRABLE dataset 'historic-perimeters-wildfires'. Task: regression (wide). Target column: 'gisacres'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/agency", + "name": "agency", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "agency" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/comments", + "name": "comments", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "comments" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/mapmethod", + "name": "mapmethod", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "mapmethod" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/datecurrent", + "name": "datecurrent", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "datecurrent" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/uniquefireidentifier", + "name": "uniquefireidentifier", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "uniquefireidentifier" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/fireyear", + "name": "fireyear", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "fireyear" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/incidentname", + "name": "incidentname", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "incidentname" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/pooownerunit", + "name": "pooownerunit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "pooownerunit" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/perimeterdatetime", + "name": "perimeterdatetime", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "perimeterdatetime" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/gisacres", + "name": "gisacres", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "gisacres" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/complexname", + "name": "complexname", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "complexname" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/firecode", + "name": "firecode", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "firecode" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/complexparentirwinid", + "name": "complexparentirwinid", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "complexparentirwinid" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/pooresponsibleunit", + "name": "pooresponsibleunit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "pooresponsibleunit" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/state", + "name": "state", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "state" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/inciwebid", + "name": "inciwebid", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "inciwebid" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/localincidentidentifier", + "name": "localincidentidentifier", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "localincidentidentifier" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/irwinid", + "name": "irwinid", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "irwinid" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/incomplex", + "name": "incomplex", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "incomplex" + } + } + }, + { + "@type": "cr:Field", + "@id": "historic-perimeters-wildfires/complexfirecode", + "name": "complexfirecode", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historic-perimeters-wildfires" + }, + "extract": { + "column": "complexfirecode" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "historical-earthquake-locations", + "name": "historical-earthquake-locations", + "description": "STRABLE dataset 'historical-earthquake-locations'. Task: m-classification (wide). Target column: 'Damage Description (total)'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Year", + "name": "Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Month", + "name": "Month", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Month" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Day", + "name": "Day", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Day" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Hour", + "name": "Hour", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Hour" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Minute", + "name": "Minute", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Minute" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Second", + "name": "Second", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Second" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Date_YYYY_MM_DD", + "name": "Date (YYYY/MM/DD)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Date (YYYY/MM/DD)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Latitude", + "name": "Latitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Longitude", + "name": "Longitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Location_Name", + "name": "Location Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Location Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Area", + "name": "Area", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Area" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Country", + "name": "Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Region_Code", + "name": "Region Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Region Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Region", + "name": "Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Earthquake_Depth", + "name": "Earthquake Depth", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Earthquake Depth" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/EQ_MAG_UNK", + "name": "EQ_MAG_UNK", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "EQ_MAG_UNK" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/EQ_MAG_MB", + "name": "EQ_MAG_MB", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "EQ_MAG_MB" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/EQ_MAG_MS", + "name": "EQ_MAG_MS", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "EQ_MAG_MS" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/EQ_MAG_MW", + "name": "EQ_MAG_MW", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "EQ_MAG_MW" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/EQ_MAG_ML", + "name": "EQ_MAG_ML", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "EQ_MAG_ML" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/EQ_MAG_MFA", + "name": "EQ_MAG_MFA", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "EQ_MAG_MFA" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Earthquake_Magnitude", + "name": "Earthquake Magnitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Earthquake Magnitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Earthquake_Magnitude_Rank", + "name": "Earthquake Magnitude Rank", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Earthquake Magnitude Rank" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Intensity", + "name": "Intensity", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Intensity" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Deaths", + "name": "Deaths", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Deaths" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Deaths_Amount_Order", + "name": "Deaths Amount Order", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Deaths Amount Order" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Deaths_Description", + "name": "Deaths Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Deaths Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Injuries", + "name": "Injuries", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Injuries" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Injuries_Amount_Order", + "name": "Injuries Amount Order", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Injuries Amount Order" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Injuries_Description", + "name": "Injuries Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Injuries Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Missing", + "name": "Missing", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Missing" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Missing_Amount_Order", + "name": "Missing Amount Order", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Missing Amount Order" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Missing_Description", + "name": "Missing Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Missing Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Destroyed", + "name": "Houses Destroyed", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Destroyed" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Amount_Order", + "name": "Houses Amount Order", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Amount Order" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Destroyed_Description", + "name": "Houses Destroyed Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Destroyed Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Damaged", + "name": "Houses Damaged", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Damaged" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Damaged_Amount_Order", + "name": "Houses Damaged Amount Order", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Damaged Amount Order" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Damaged_Description", + "name": "Houses Damaged Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Damaged Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Damage_Description_total", + "name": "Damage Description (total)", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Damage Description (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Deaths_total", + "name": "Deaths (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Deaths (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Deaths_Amount_Order_total", + "name": "Deaths Amount Order (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Deaths Amount Order (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Deaths_Description_total", + "name": "Deaths Description (total)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Deaths Description (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Injuries_total", + "name": "Injuries (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Injuries (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Injuries_Amount_Order_total", + "name": "Injuries Amount Order (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Injuries Amount Order (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Injuries_Description_total", + "name": "Injuries Description (total)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Injuries Description (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Missing_total", + "name": "Missing (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Missing (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Missing_Amount_Order_total", + "name": "Missing Amount Order (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Missing Amount Order (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Missing_Description_total", + "name": "Missing Description (total)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Missing Description (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Destroyed_total", + "name": "Houses Destroyed (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Destroyed (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Amount_Order_total", + "name": "Houses Amount Order (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Amount Order (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Destroyed_Description_total", + "name": "Houses Destroyed Description (total)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Destroyed Description (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Damaged_total", + "name": "Houses Damaged (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Damaged (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Damaged_Amount_Order_total", + "name": "Houses Damaged Amount Order (total)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Damaged Amount Order (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Houses_Damaged_Description_total", + "name": "Houses Damaged Description (total)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Houses Damaged Description (total)" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/Comments", + "name": "Comments", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "Comments" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/URL", + "name": "URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "URL" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/ID", + "name": "ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/DRAWING_ORDER", + "name": "DRAWING_ORDER", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "DRAWING_ORDER" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-earthquake-locations/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-earthquake-locations" + }, + "extract": { + "column": "y" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "historical-volcanic-locations", + "name": "historical-volcanic-locations", + "description": "STRABLE dataset 'historical-volcanic-locations'. Task: m-classification (wide). Target column: 'DEATHS_TOTAL_DESCRIPTION'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/YEAR", + "name": "YEAR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "YEAR" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/MO", + "name": "MO", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "MO" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/DAY", + "name": "DAY", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "DAY" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/VEI", + "name": "VEI", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "VEI" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/VOL_ID", + "name": "VOL_ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "VOL_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/COMMENTS", + "name": "COMMENTS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "COMMENTS" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/DAMAGE_MILLIONS_DOLLARS", + "name": "DAMAGE_MILLIONS_DOLLARS", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "DAMAGE_MILLIONS_DOLLARS" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/DAMAGE_AMOUNT_ORDER", + "name": "DAMAGE_AMOUNT_ORDER", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "DAMAGE_AMOUNT_ORDER" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/DAMAGE_DESCRIPTION", + "name": "DAMAGE_DESCRIPTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "DAMAGE_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/INJURIES", + "name": "INJURIES", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "INJURIES" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/INJURIES_AMOUNT_ORDER", + "name": "INJURIES_AMOUNT_ORDER", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "INJURIES_AMOUNT_ORDER" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/INJURIES_DESCRIPTION", + "name": "INJURIES_DESCRIPTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "INJURIES_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/MISSING", + "name": "MISSING", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "MISSING" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/MISSING_AMOUNT_ORDER", + "name": "MISSING_AMOUNT_ORDER", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "MISSING_AMOUNT_ORDER" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/MISSING_DESCRIPTION", + "name": "MISSING_DESCRIPTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "MISSING_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/HOUSES_DESTROYED", + "name": "HOUSES_DESTROYED", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "HOUSES_DESTROYED" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/HOUSES_AMOUNT_ORDER", + "name": "HOUSES_AMOUNT_ORDER", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "HOUSES_AMOUNT_ORDER" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/HOUSES_DESCRIPTION", + "name": "HOUSES_DESCRIPTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "HOUSES_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/DAMAGE_MILLIONS_DOLLARS_TOTAL", + "name": "DAMAGE_MILLIONS_DOLLARS_TOTAL", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "DAMAGE_MILLIONS_DOLLARS_TOTAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/DAMAGE_AMOUNT_ORDER_TOTAL", + "name": "DAMAGE_AMOUNT_ORDER_TOTAL", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "DAMAGE_AMOUNT_ORDER_TOTAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/DAMAGE_TOTAL_DESCRIPTION", + "name": "DAMAGE_TOTAL_DESCRIPTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "DAMAGE_TOTAL_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/DEATHS_TOTAL_DESCRIPTION", + "name": "DEATHS_TOTAL_DESCRIPTION", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "DEATHS_TOTAL_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/INJURIES_TOTAL", + "name": "INJURIES_TOTAL", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "INJURIES_TOTAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/INJURIES_AMOUNT_ORDER_TOTAL", + "name": "INJURIES_AMOUNT_ORDER_TOTAL", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "INJURIES_AMOUNT_ORDER_TOTAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/INJURIES_TOTAL_DESCRIPTION", + "name": "INJURIES_TOTAL_DESCRIPTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "INJURIES_TOTAL_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/MISSING_TOTAL", + "name": "MISSING_TOTAL", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "MISSING_TOTAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/MISSING_AMOUNT_ORDER_TOTAL", + "name": "MISSING_AMOUNT_ORDER_TOTAL", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "MISSING_AMOUNT_ORDER_TOTAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/MISSING_TOTAL_DESCRIPTION", + "name": "MISSING_TOTAL_DESCRIPTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "MISSING_TOTAL_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/HOUSES_DESTROYED_TOTAL", + "name": "HOUSES_DESTROYED_TOTAL", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "HOUSES_DESTROYED_TOTAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/HOUSES_AMOUNT_ORDER_TOTAL", + "name": "HOUSES_AMOUNT_ORDER_TOTAL", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "HOUSES_AMOUNT_ORDER_TOTAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/HOUSES_TOTAL_DESCRIPTION", + "name": "HOUSES_TOTAL_DESCRIPTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "HOUSES_TOTAL_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/VALIDITY", + "name": "VALIDITY", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "VALIDITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/NUM", + "name": "NUM", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "NUM" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/LOCATION", + "name": "LOCATION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "LOCATION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/LATITUDE", + "name": "LATITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "LATITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/LONGITUDE", + "name": "LONGITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "LONGITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/ELEVATION", + "name": "ELEVATION", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "ELEVATION" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/MORPHOLOGY", + "name": "MORPHOLOGY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "MORPHOLOGY" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/STATUS", + "name": "STATUS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "STATUS" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/TIME_ERUPT", + "name": "TIME_ERUPT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "TIME_ERUPT" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/COUNTRY", + "name": "COUNTRY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "COUNTRY" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/NUM_SLIDES", + "name": "NUM_SLIDES", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "NUM_SLIDES" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/SIG_ID", + "name": "SIG_ID", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "SIG_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/TSU_ID", + "name": "TSU_ID", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "TSU_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/HAZ_EVENT_ID", + "name": "HAZ_EVENT_ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "HAZ_EVENT_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/ID", + "name": "ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "historical-volcanic-locations/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-historical-volcanic-locations" + }, + "extract": { + "column": "y" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "hospitals", + "name": "hospitals", + "description": "STRABLE dataset 'hospitals'. Task: regression (wide). Target column: 'BEDS'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "hospitals/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/ID", + "name": "ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/ZIP", + "name": "ZIP", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/ZIP4", + "name": "ZIP4", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "ZIP4" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/TELEPHONE", + "name": "TELEPHONE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "TELEPHONE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/TYPE", + "name": "TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/STATUS", + "name": "STATUS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "STATUS" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/COUNTY", + "name": "COUNTY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "COUNTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/COUNTYFIPS", + "name": "COUNTYFIPS", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "COUNTYFIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/COUNTRY", + "name": "COUNTRY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "COUNTRY" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/LATITUDE", + "name": "LATITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "LATITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/LONGITUDE", + "name": "LONGITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "LONGITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/NAICS_CODE", + "name": "NAICS_CODE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "NAICS_CODE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/NAICS_DESC", + "name": "NAICS_DESC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "NAICS_DESC" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/SOURCE", + "name": "SOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "SOURCE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/SOURCEDATE", + "name": "SOURCEDATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "SOURCEDATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/VAL_METHOD", + "name": "VAL_METHOD", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "VAL_METHOD" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/VAL_DATE", + "name": "VAL_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "VAL_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/WEBSITE", + "name": "WEBSITE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "WEBSITE" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/STATE_ID", + "name": "STATE_ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "STATE_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/ALT_NAME", + "name": "ALT_NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "ALT_NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/ST_FIPS", + "name": "ST_FIPS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "ST_FIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/OWNER", + "name": "OWNER", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "OWNER" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/BEDS", + "name": "BEDS", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "BEDS" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/TRAUMA", + "name": "TRAUMA", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "TRAUMA" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/HELIPAD", + "name": "HELIPAD", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "HELIPAD" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "hospitals/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hospitals" + }, + "extract": { + "column": "y" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "hypertension-control-wide", + "name": "hypertension-control-wide", + "description": "STRABLE dataset 'hypertension-control-wide'. Task: b-classification (wide). Target column: 'Estimated Percentage of Patients with Controlled Blood Pressure'. Original source: HRSA.", + "field": [ + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grant_Number", + "name": "Grant Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grant Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Health_Center_Name", + "name": "Health Center Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Health Center Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/NHCI_Awardee", + "name": "NHCI Awardee", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "NHCI Awardee" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Estimated_Percentage_of_Patients_with_Controlled_Blood_Pressure", + "name": "Estimated Percentage of Patients with Controlled Blood Pressure", + "description": "Target column. Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Estimated Percentage of Patients with Controlled Blood Pressure" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Financial_Assistance", + "name": "Financial Assistance", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Financial Assistance" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grantee_Address", + "name": "Grantee Address", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grantee Address" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grantee_City", + "name": "Grantee City", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grantee City" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grantee_County_Description", + "name": "Grantee County Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grantee County Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grantee_County_Name", + "name": "Grantee County Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grantee County Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grantee_Name", + "name": "Grantee Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grantee Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grantee_Region_Code", + "name": "Grantee Region Code", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grantee Region Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/HRSA_Region", + "name": "HRSA Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "HRSA Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grantee_State_Abbreviation", + "name": "Grantee State Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grantee State Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/State_Name", + "name": "State Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "State Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grantee_ZIP_Code", + "name": "Grantee ZIP Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grantee ZIP Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grant_Serial_Number", + "name": "Grant Serial Number", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grant Serial Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Project_Period_Start_Date", + "name": "Project Period Start Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Project Period Start Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Project_Period_Start_Date_Text_String", + "name": "Project Period Start Date Text String", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Project Period Start Date Text String" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grant_Project_Period_End_Date", + "name": "Grant Project Period End Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grant Project Period End Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grant_Project_Period_End_Date_Text", + "name": "Grant Project Period End Date Text", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grant Project Period End Date Text" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Complete_County_Name", + "name": "Complete County Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Complete County Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Congressional_District_Name", + "name": "Congressional District Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Congressional District Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Congressional_District_Number", + "name": "Congressional District Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Congressional District Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/HHS_Region_Number", + "name": "HHS Region Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "HHS Region Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/U.S._Congressional_Representative_Name", + "name": "U.S. Congressional Representative Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "U.S. Congressional Representative Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/State_and_County_Federal_Information_Processing_Standard_Code", + "name": "State and County Federal Information Processing Standard Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "State and County Federal Information Processing Standard Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/State_FIPS_Code", + "name": "State FIPS Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "State FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/U.S._-_Mexico_Border_100_Kilometer_Indicator", + "name": "U.S. - Mexico Border 100 Kilometer Indicator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "U.S. - Mexico Border 100 Kilometer Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/U.S._-_Mexico_Border_County_Indicator", + "name": "U.S. - Mexico Border County Indicator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "U.S. - Mexico Border County Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Name_of_U.S._Senator_Number_One", + "name": "Name of U.S. Senator Number One", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Name of U.S. Senator Number One" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Name_of_U.S._Senator_Number_Two", + "name": "Name of U.S. Senator Number Two", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Name of U.S. Senator Number Two" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Grantee_Type_Description", + "name": "Grantee Type Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Grantee Type Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/DUNS_Number", + "name": "DUNS Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "DUNS Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Unique_Entity_Identifier", + "name": "Unique Entity Identifier", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Unique Entity Identifier" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/CCN", + "name": "CCN", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "CCN" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Geocoding_Artifact_Address_Primary_X_Coordinate", + "name": "Geocoding Artifact Address Primary X Coordinate", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Geocoding Artifact Address Primary X Coordinate" + } + } + }, + { + "@type": "cr:Field", + "@id": "hypertension-control-wide/Geocoding_Artifact_Address_Primary_Y_Coordinate", + "name": "Geocoding Artifact Address Primary Y Coordinate", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-hypertension-control-wide" + }, + "extract": { + "column": "Geocoding Artifact Address Primary Y Coordinate" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "ibrd-statement-loans-guarantees", + "name": "ibrd-statement-loans-guarantees", + "description": "STRABLE dataset 'ibrd-statement-loans-guarantees'. Task: regression (wide). Target column: 'Original Principal Amount (US$)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Loan_Number", + "name": "Loan Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Loan Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Region", + "name": "Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Country___Economy_Code", + "name": "Country / Economy Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Country / Economy Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Country___Economy", + "name": "Country / Economy", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Country / Economy" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Borrower", + "name": "Borrower", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Borrower" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Guarantor_Country___Economy_Code", + "name": "Guarantor Country / Economy Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Guarantor Country / Economy Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Guarantor", + "name": "Guarantor", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Guarantor" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Loan_Type", + "name": "Loan Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Loan Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Loan_Status", + "name": "Loan Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Loan Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Interest_Rate", + "name": "Interest Rate", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Interest Rate" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Project_ID", + "name": "Project ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Project ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Project_Name", + "name": "Project Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Project Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Original_Principal_Amount_US$", + "name": "Original Principal Amount (US$)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Original Principal Amount (US$)" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/First_Repayment_Date", + "name": "First Repayment Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "First Repayment Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Last_Repayment_Date", + "name": "Last Repayment Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Last Repayment Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Agreement_Signing_Date", + "name": "Agreement Signing Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Agreement Signing Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Board_Approval_Date", + "name": "Board Approval Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Board Approval Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Effective_Date_Most_Recent", + "name": "Effective Date (Most Recent)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Effective Date (Most Recent)" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Closed_Date_Most_Recent", + "name": "Closed Date (Most Recent)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Closed Date (Most Recent)" + } + } + }, + { + "@type": "cr:Field", + "@id": "ibrd-statement-loans-guarantees/Last_Disbursement_Date", + "name": "Last Disbursement Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ibrd-statement-loans-guarantees" + }, + "extract": { + "column": "Last Disbursement Date" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "ida-statement-credits-grants-guarantees", + "name": "ida-statement-credits-grants-guarantees", + "description": "STRABLE dataset 'ida-statement-credits-grants-guarantees'. Task: regression (wide). Target column: 'Original Principal Amount (US$)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/End_of_Period", + "name": "End of Period", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "End of Period" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Credit_Number", + "name": "Credit Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Credit Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Region", + "name": "Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Country___Economy_Code", + "name": "Country / Economy Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Country / Economy Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Country___Economy", + "name": "Country / Economy", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Country / Economy" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Borrower", + "name": "Borrower", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Borrower" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Credit_Status", + "name": "Credit Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Credit Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Service_Charge_Rate", + "name": "Service Charge Rate", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Service Charge Rate" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Currency_of_Commitment", + "name": "Currency of Commitment", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Currency of Commitment" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Project_ID", + "name": "Project ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Project ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Project_Name", + "name": "Project Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Project Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Original_Principal_Amount_US$", + "name": "Original Principal Amount (US$)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Original Principal Amount (US$)" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/First_Repayment_Date", + "name": "First Repayment Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "First Repayment Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Last_Repayment_Date", + "name": "Last Repayment Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Last Repayment Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Agreement_Signing_Date", + "name": "Agreement Signing Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Agreement Signing Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Board_Approval_Date", + "name": "Board Approval Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Board Approval Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Effective_Date_Most_Recent", + "name": "Effective Date (Most Recent)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Effective Date (Most Recent)" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Closed_Date_Most_Recent", + "name": "Closed Date (Most Recent)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Closed Date (Most Recent)" + } + } + }, + { + "@type": "cr:Field", + "@id": "ida-statement-credits-grants-guarantees/Last_Disbursement_Date", + "name": "Last Disbursement Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ida-statement-credits-grants-guarantees" + }, + "extract": { + "column": "Last Disbursement Date" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "ifc-advisory-services-projects", + "name": "ifc-advisory-services-projects", + "description": "STRABLE dataset 'ifc-advisory-services-projects'. Task: regression (wide). Target column: 'Estimated Total Budget ($)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/Disclosure_Date", + "name": "Disclosure Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "Disclosure Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/Project_Number", + "name": "Project Number", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "Project Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/Project_Name", + "name": "Project Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "Project Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/Project_URL", + "name": "Project URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "Project URL" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/Country", + "name": "Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/IFC_Country_Code", + "name": "IFC Country Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "IFC Country Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/IFC_Region", + "name": "IFC Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "IFC Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/Business_Line", + "name": "Business Line", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "Business Line" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/Estimated_Total_Budget_$", + "name": "Estimated Total Budget ($)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "Estimated Total Budget ($)" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/Status", + "name": "Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/IFC_Approval_Date", + "name": "IFC Approval Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "IFC Approval Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/Projected_Start_Date", + "name": "Projected Start Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "Projected Start Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-advisory-services-projects/WB_Country_Code", + "name": "WB Country Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-advisory-services-projects" + }, + "extract": { + "column": "WB Country Code" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "ifc-investment-service-projects", + "name": "ifc-investment-service-projects", + "description": "STRABLE dataset 'ifc-investment-service-projects'. Task: regression (wide). Target column: 'Total IFC investment as approved by Board(Million - USD)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Date_Disclosed", + "name": "Date Disclosed", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Date Disclosed" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Project_Name", + "name": "Project Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Project Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Document_Type", + "name": "Document Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Document Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Project_Number", + "name": "Project Number", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Project Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Project_Url", + "name": "Project Url", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Project Url" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Product_Line", + "name": "Product Line", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Product Line" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Company_Name", + "name": "Company Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Company Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Country", + "name": "Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/IFC_Country_Code", + "name": "IFC Country Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "IFC Country Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Industry", + "name": "Industry", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Industry" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Environmental_Category", + "name": "Environmental Category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Environmental Category" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Department", + "name": "Department", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Department" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Status", + "name": "Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Projected_Board_Date", + "name": "Projected Board Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Projected Board Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/IFC_Approval_Date", + "name": "IFC Approval Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "IFC Approval Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/IFC_Signed_Date", + "name": "IFC Signed Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "IFC Signed Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/IFC_Invested_Date", + "name": "IFC Invested Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "IFC Invested Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/Total_IFC_investment_as_approved_by_BoardMillion_-_USD", + "name": "Total IFC investment as approved by Board(Million - USD)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "Total IFC investment as approved by Board(Million - USD)" + } + } + }, + { + "@type": "cr:Field", + "@id": "ifc-investment-service-projects/WB_Country_Code", + "name": "WB Country Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ifc-investment-service-projects" + }, + "extract": { + "column": "WB Country Code" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "industry-payments-entity", + "name": "industry-payments-entity", + "description": "STRABLE dataset 'industry-payments-entity'. Task: regression (wide). Target column: 'entityPayment'. Original source: energydata.info.", + "field": [ + { + "@type": "cr:Field", + "@id": "industry-payments-entity/sourceID", + "name": "sourceID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-entity" + }, + "extract": { + "column": "sourceID" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-entity/reportingCompany", + "name": "reportingCompany", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-entity" + }, + "extract": { + "column": "reportingCompany" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-entity/reportYear", + "name": "reportYear", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-entity" + }, + "extract": { + "column": "reportYear" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-entity/entityCountry", + "name": "entityCountry", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-entity" + }, + "extract": { + "column": "entityCountry" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-entity/entityName", + "name": "entityName", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-entity" + }, + "extract": { + "column": "entityName" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-entity/paymentType", + "name": "paymentType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-entity" + }, + "extract": { + "column": "paymentType" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-entity/entityPayment", + "name": "entityPayment", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-entity" + }, + "extract": { + "column": "entityPayment" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-entity/nrgiNotes", + "name": "nrgiNotes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-entity" + }, + "extract": { + "column": "nrgiNotes" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-entity/notes", + "name": "notes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-entity" + }, + "extract": { + "column": "notes" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "industry-payments-project", + "name": "industry-payments-project", + "description": "STRABLE dataset 'industry-payments-project'. Task: regression (wide). Target column: 'projectPayment'. Original source: energydata.info.", + "field": [ + { + "@type": "cr:Field", + "@id": "industry-payments-project/sourceID", + "name": "sourceID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-project" + }, + "extract": { + "column": "sourceID" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-project/reportingCompany", + "name": "reportingCompany", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-project" + }, + "extract": { + "column": "reportingCompany" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-project/reportYear", + "name": "reportYear", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-project" + }, + "extract": { + "column": "reportYear" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-project/projectCountry", + "name": "projectCountry", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-project" + }, + "extract": { + "column": "projectCountry" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-project/projectName", + "name": "projectName", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-project" + }, + "extract": { + "column": "projectName" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-project/paymentType", + "name": "paymentType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-project" + }, + "extract": { + "column": "paymentType" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-project/projectPayment", + "name": "projectPayment", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-project" + }, + "extract": { + "column": "projectPayment" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-project/nrgiNotes", + "name": "nrgiNotes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-project" + }, + "extract": { + "column": "nrgiNotes" + } + } + }, + { + "@type": "cr:Field", + "@id": "industry-payments-project/notes", + "name": "notes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-industry-payments-project" + }, + "extract": { + "column": "notes" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "insurance-company-complaints", + "name": "insurance-company-complaints", + "description": "STRABLE dataset 'insurance-company-complaints'. Task: regression (wide). Target column: 'Recovery'. Original source: data.ct.gov.", + "field": [ + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/Company", + "name": "Company", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "Company" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/File_No.", + "name": "File No.", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "File No." + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/Opened", + "name": "Opened", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "Opened" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/Closed", + "name": "Closed", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "Closed" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/Coverage", + "name": "Coverage", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "Coverage" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/SubCoverage", + "name": "SubCoverage", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "SubCoverage" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/Reason", + "name": "Reason", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "Reason" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/SubReason", + "name": "SubReason", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "SubReason" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/Disposition", + "name": "Disposition", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "Disposition" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/Conclusion", + "name": "Conclusion", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "Conclusion" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/Recovery", + "name": "Recovery", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "Recovery" + } + } + }, + { + "@type": "cr:Field", + "@id": "insurance-company-complaints/Status", + "name": "Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-insurance-company-complaints" + }, + "extract": { + "column": "Status" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "journal-ranking_wide", + "name": "journal-ranking_wide", + "description": "STRABLE dataset 'journal-ranking_wide'. Task: regression (wide). Target column: 'H index'. Original source: SCIMAGO.", + "field": [ + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Sourceid", + "name": "Sourceid", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Sourceid" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Title", + "name": "Title", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Title" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Type", + "name": "Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Issn", + "name": "Issn", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Issn" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/H_index", + "name": "H index", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "H index" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Total_Refs.", + "name": "Total Refs.", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Total Refs." + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Overton", + "name": "Overton", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Overton" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/SDG", + "name": "SDG", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "SDG" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Country", + "name": "Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Region", + "name": "Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Publisher", + "name": "Publisher", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Publisher" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Coverage", + "name": "Coverage", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Coverage" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Categories", + "name": "Categories", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Categories" + } + } + }, + { + "@type": "cr:Field", + "@id": "journal-ranking_wide/Areas", + "name": "Areas", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-journal-ranking_wide" + }, + "extract": { + "column": "Areas" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "kickstarter-projects", + "name": "kickstarter-projects", + "description": "STRABLE dataset 'kickstarter-projects'. Task: b-classification (wide). Target column: 'status'. Original source: webrobots.io.", + "field": [ + { + "@type": "cr:Field", + "@id": "kickstarter-projects/id", + "name": "id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "id" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/name", + "name": "name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "name" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/currency", + "name": "currency", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "currency" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/main_category", + "name": "main_category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "main_category" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/sub_category", + "name": "sub_category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "sub_category" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/launched_at", + "name": "launched_at", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "launched_at" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/deadline", + "name": "deadline", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "deadline" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/duration", + "name": "duration", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "duration" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/goal_usd", + "name": "goal_usd", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "goal_usd" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/city", + "name": "city", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "city" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/state", + "name": "state", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "state" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/country", + "name": "country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "country" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/blurb_length", + "name": "blurb_length", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "blurb_length" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/name_length", + "name": "name_length", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "name_length" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/status", + "name": "status", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "status" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/start_month", + "name": "start_month", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "start_month" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/end_month", + "name": "end_month", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "end_month" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/start_Q", + "name": "start_Q", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "start_Q" + } + } + }, + { + "@type": "cr:Field", + "@id": "kickstarter-projects/end_Q", + "name": "end_Q", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-kickstarter-projects" + }, + "extract": { + "column": "end_Q" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "lending-club-loan", + "name": "lending-club-loan", + "description": "STRABLE dataset 'lending-club-loan'. Task: b-classification (wide). Target column: 'loan_status'. Original source: lendingclub.com.", + "field": [ + { + "@type": "cr:Field", + "@id": "lending-club-loan/id", + "name": "id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "id" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/member_id", + "name": "member_id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "member_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/loan_amnt", + "name": "loan_amnt", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "loan_amnt" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/funded_amnt", + "name": "funded_amnt", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "funded_amnt" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/funded_amnt_inv", + "name": "funded_amnt_inv", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "funded_amnt_inv" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/term", + "name": "term", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "term" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/int_rate", + "name": "int_rate", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "int_rate" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/installment", + "name": "installment", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "installment" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/grade", + "name": "grade", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "grade" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/sub_grade", + "name": "sub_grade", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "sub_grade" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/emp_title", + "name": "emp_title", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "emp_title" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/emp_length", + "name": "emp_length", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "emp_length" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/home_ownership", + "name": "home_ownership", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "home_ownership" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/annual_inc", + "name": "annual_inc", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "annual_inc" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/verification_status", + "name": "verification_status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "verification_status" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/issue_d", + "name": "issue_d", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "issue_d" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/loan_status", + "name": "loan_status", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "loan_status" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/url", + "name": "url", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "url" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/desc", + "name": "desc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "desc" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/purpose", + "name": "purpose", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "purpose" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/title", + "name": "title", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "title" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/zip_code", + "name": "zip_code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "zip_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/addr_state", + "name": "addr_state", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "addr_state" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/dti", + "name": "dti", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "dti" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/delinq_2yrs", + "name": "delinq_2yrs", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "delinq_2yrs" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/earliest_cr_line", + "name": "earliest_cr_line", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "earliest_cr_line" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/inq_last_6mths", + "name": "inq_last_6mths", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "inq_last_6mths" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/mths_since_last_record", + "name": "mths_since_last_record", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "mths_since_last_record" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/open_acc", + "name": "open_acc", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "open_acc" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/pub_rec", + "name": "pub_rec", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "pub_rec" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/revol_bal", + "name": "revol_bal", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "revol_bal" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/revol_util", + "name": "revol_util", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "revol_util" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/total_acc", + "name": "total_acc", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "total_acc" + } + } + }, + { + "@type": "cr:Field", + "@id": "lending-club-loan/pub_rec_bankruptcies", + "name": "pub_rec_bankruptcies", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-lending-club-loan" + }, + "extract": { + "column": "pub_rec_bankruptcies" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "local-government-renewable-action", + "name": "local-government-renewable-action", + "description": "STRABLE dataset 'local-government-renewable-action'. Task: regression (wide). Target column: 'Size of Purchase (MW)'. Original source: world-resource-institute.", + "field": [ + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Ref._No.", + "name": "Ref. No.", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Ref. No." + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Buyer_Name", + "name": "Buyer Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Buyer Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/City_Latitude", + "name": "City Latitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "City Latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/City_Longitude", + "name": "City Longitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "City Longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/ISO_or_FERC_Region", + "name": "ISO or FERC Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "ISO or FERC Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Announcement_Year", + "name": "Announcement Year", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Announcement Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Announcement_Year_or_Operations_Year_if_Announcement_Year_unavailable", + "name": "Announcement Year (or Operations Year if Announcement Year unavailable)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Announcement Year (or Operations Year if Announcement Year unavailable)" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Announcement_Date", + "name": "Announcement Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Announcement Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Technology", + "name": "Technology", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Technology" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Transaction_Type", + "name": "Transaction Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Transaction Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Size_of_Purchase_MW", + "name": "Size of Purchase (MW)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Size of Purchase (MW)" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/DC_AC", + "name": "DC/AC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "DC/AC" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Contract_Length_Year", + "name": "Contract Length (Year)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Contract Length (Year)" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Energy_Price_in_Year_1_$_MWh", + "name": "Energy Price in Year 1 ($/MWh)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Energy Price in Year 1 ($/MWh)" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Utility_Name", + "name": "Utility Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Utility Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Utility_Type", + "name": "Utility Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Utility Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Developer_Name", + "name": "Developer Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Developer Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Project_Name", + "name": "Project Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Project Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Project_Location", + "name": "Project Location", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Project Location" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Project_State", + "name": "Project State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Project State" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Operation_Start_Year", + "name": "Operation Start Year", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Operation Start Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Estimated_Annual_Generation_MWh", + "name": "Estimated Annual Generation (MWh)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Estimated Annual Generation (MWh)" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Source_1", + "name": "Source 1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Source 1" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Source_2", + "name": "Source 2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Source 2" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Source_3", + "name": "Source 3", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Source 3" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Source_4", + "name": "Source 4", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Source 4" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Source_5", + "name": "Source 5", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Source 5" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-government-renewable-action/Notes", + "name": "Notes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-government-renewable-action" + }, + "extract": { + "column": "Notes" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "local-law-enforcements", + "name": "local-law-enforcements", + "description": "STRABLE dataset 'local-law-enforcements'. Task: regression (wide). Target column: 'number_of_officers'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "local-law-enforcements/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/ID", + "name": "ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/ZIP", + "name": "ZIP", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/ZIP4", + "name": "ZIP4", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "ZIP4" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/TELEPHONE", + "name": "TELEPHONE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "TELEPHONE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/TYPE", + "name": "TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/COUNTY", + "name": "COUNTY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "COUNTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/COUNTYFIPS", + "name": "COUNTYFIPS", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "COUNTYFIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/LATITUDE", + "name": "LATITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "LATITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/LONGITUDE", + "name": "LONGITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "LONGITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/SOURCE", + "name": "SOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "SOURCE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/SOURCEDATE", + "name": "SOURCEDATE", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "SOURCEDATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/VAL_METHOD", + "name": "VAL_METHOD", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "VAL_METHOD" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/VAL_DATE", + "name": "VAL_DATE", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "VAL_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/WEBSITE", + "name": "WEBSITE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "WEBSITE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/CI_ID", + "name": "CI_ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "CI_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/CSLLEA08ID", + "name": "CSLLEA08ID", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "CSLLEA08ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/SUBTYPE1", + "name": "SUBTYPE1", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "SUBTYPE1" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/SUBTYPE2", + "name": "SUBTYPE2", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "SUBTYPE2" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/TRIBAL", + "name": "TRIBAL", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "TRIBAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/NUMPRE", + "name": "NUMPRE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "NUMPRE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/NUMFIXSUB", + "name": "NUMFIXSUB", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "NUMFIXSUB" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/NUMMOBILE", + "name": "NUMMOBILE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "NUMMOBILE" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/FTCIV", + "name": "FTCIV", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "FTCIV" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/PTCIV", + "name": "PTCIV", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "PTCIV" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "y" + } + } + }, + { + "@type": "cr:Field", + "@id": "local-law-enforcements/number_of_officers", + "name": "number_of_officers", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-local-law-enforcements" + }, + "extract": { + "column": "number_of_officers" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "managed-care-enrollment", + "name": "managed-care-enrollment", + "description": "STRABLE dataset 'managed-care-enrollment'. Task: regression (wide). Target column: 'Total Enrollment'. Original source: Medicaid.", + "field": [ + { + "@type": "cr:Field", + "@id": "managed-care-enrollment/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-managed-care-enrollment" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "managed-care-enrollment/Notes", + "name": "Notes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-managed-care-enrollment" + }, + "extract": { + "column": "Notes" + } + } + }, + { + "@type": "cr:Field", + "@id": "managed-care-enrollment/Program_Name", + "name": "Program Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-managed-care-enrollment" + }, + "extract": { + "column": "Program Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "managed-care-enrollment/Plan_Name", + "name": "Plan Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-managed-care-enrollment" + }, + "extract": { + "column": "Plan Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "managed-care-enrollment/Geographic_Region", + "name": "Geographic Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-managed-care-enrollment" + }, + "extract": { + "column": "Geographic Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "managed-care-enrollment/Total_Enrollment", + "name": "Total Enrollment", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-managed-care-enrollment" + }, + "extract": { + "column": "Total Enrollment" + } + } + }, + { + "@type": "cr:Field", + "@id": "managed-care-enrollment/Year", + "name": "Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-managed-care-enrollment" + }, + "extract": { + "column": "Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "managed-care-enrollment/Parent_Organization", + "name": "Parent Organization", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-managed-care-enrollment" + }, + "extract": { + "column": "Parent Organization" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "media-ranking_wide", + "name": "media-ranking_wide", + "description": "STRABLE dataset 'media-ranking_wide'. Task: regression (wide). Target column: 'Overall'. Original source: SCIMAGO.", + "field": [ + { + "@type": "cr:Field", + "@id": "media-ranking_wide/Media", + "name": "Media", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-media-ranking_wide" + }, + "extract": { + "column": "Media" + } + } + }, + { + "@type": "cr:Field", + "@id": "media-ranking_wide/Domain", + "name": "Domain", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-media-ranking_wide" + }, + "extract": { + "column": "Domain" + } + } + }, + { + "@type": "cr:Field", + "@id": "media-ranking_wide/Country", + "name": "Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-media-ranking_wide" + }, + "extract": { + "column": "Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "media-ranking_wide/Region", + "name": "Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-media-ranking_wide" + }, + "extract": { + "column": "Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "media-ranking_wide/Language", + "name": "Language", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-media-ranking_wide" + }, + "extract": { + "column": "Language" + } + } + }, + { + "@type": "cr:Field", + "@id": "media-ranking_wide/Typology", + "name": "Typology", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-media-ranking_wide" + }, + "extract": { + "column": "Typology" + } + } + }, + { + "@type": "cr:Field", + "@id": "media-ranking_wide/Overall", + "name": "Overall", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-media-ranking_wide" + }, + "extract": { + "column": "Overall" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "medically-underserved-areas-populations", + "name": "medically-underserved-areas-populations", + "description": "STRABLE dataset 'medically-underserved-areas-populations'. Task: regression (wide). Target column: 'IMU Score'. Original source: HRSA.", + "field": [ + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/MUA_P_ID", + "name": "MUA/P ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "MUA/P ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/MUA_P_Area_Code", + "name": "MUA/P Area Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "MUA/P Area Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/MUA_P_Service_Area_Name", + "name": "MUA/P Service Area Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "MUA/P Service Area Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Designation_Type_Code", + "name": "Designation Type Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Designation Type Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Designation_Type", + "name": "Designation Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Designation Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/MUA_P_Status_Code", + "name": "MUA/P Status Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "MUA/P Status Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/MUA_P_Status_Description", + "name": "MUA/P Status Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "MUA/P Status Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Designation_Date", + "name": "Designation Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Designation Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/MUA_P_Designation_Date_String", + "name": "MUA/P Designation Date String", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "MUA/P Designation Date String" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/MUA_P_Update_Date", + "name": "MUA/P Update Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "MUA/P Update Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/MUA_P_Update_Date_String", + "name": "MUA/P Update Date String", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "MUA/P Update Date String" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Medically_Underserved_Area_Population_MUA_P_Withdrawal_Date", + "name": "Medically Underserved Area/Population (MUA/P) Withdrawal Date", + "description": "Original dtype: timestamp[ns].", + "dataType": "sc:Date", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Medically Underserved Area/Population (MUA/P) Withdrawal Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Medically_Underserved_Area_Population_MUA_P_Withdrawal_Date_in_Text_Format", + "name": "Medically Underserved Area/Population (MUA/P) Withdrawal Date in Text Format", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Medically Underserved Area/Population (MUA/P) Withdrawal Date in Text Format" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Break_in_Designation", + "name": "Break in Designation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Break in Designation" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/IMU_Score", + "name": "IMU Score", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "IMU Score" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/MUA_P_Population_Type_Code", + "name": "MUA/P Population Type Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "MUA/P Population Type Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Population_Type", + "name": "Population Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Population Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Medically_Underserved_Area_Population_MUA_P_Component_Geographic_Name", + "name": "Medically Underserved Area/Population (MUA/P) Component Geographic Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Medically Underserved Area/Population (MUA/P) Component Geographic Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Medically_Underserved_Area_Population_MUA_P_Component_Geographic_Type_Code", + "name": "Medically Underserved Area/Population (MUA/P) Component Geographic Type Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Medically Underserved Area/Population (MUA/P) Component Geographic Type Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Medically_Underserved_Area_Population_MUA_P_Component_Geographic_Type_Description", + "name": "Medically Underserved Area/Population (MUA/P) Component Geographic Type Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Medically Underserved Area/Population (MUA/P) Component Geographic Type Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/HHS_Region_Code", + "name": "HHS Region Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "HHS Region Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/HHS_Region_Name", + "name": "HHS Region Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "HHS Region Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/State_FIPS_Code", + "name": "State FIPS Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "State FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/State_Name", + "name": "State Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "State Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/State_Abbreviation", + "name": "State Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "State Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/State_and_County_Federal_Information_Processing_Standard_Code", + "name": "State and County Federal Information Processing Standard Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "State and County Federal Information Processing Standard Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/County_or_County_Equivalent_Federal_Information_Processing_Standard_Code", + "name": "County or County Equivalent Federal Information Processing Standard Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "County or County Equivalent Federal Information Processing Standard Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Complete_County_Name", + "name": "Complete County Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Complete County Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/County_Equivalent_Name", + "name": "County Equivalent Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "County Equivalent Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/County_Description", + "name": "County Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "County Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/County_Subdivision_Name", + "name": "County Subdivision Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "County Subdivision Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/County_Subdivision_FIPS_Code", + "name": "County Subdivision FIPS Code", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "County Subdivision FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Census_Tract", + "name": "Census Tract", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Census Tract" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Rural_Status_Code", + "name": "Rural Status Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Rural Status Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Rural_Status_Description", + "name": "Rural Status Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Rural Status Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/U.S._-_Mexico_Border_100_Kilometer_Indicator", + "name": "U.S. - Mexico Border 100 Kilometer Indicator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "U.S. - Mexico Border 100 Kilometer Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/U.S._-_Mexico_Border_County_Indicator", + "name": "U.S. - Mexico Border County Indicator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "U.S. - Mexico Border County Indicator" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Designation_Population_in_a_Medically_Underserved_Area_Population_MUA_P", + "name": "Designation Population in a Medically Underserved Area/Population (MUA/P)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Designation Population in a Medically Underserved Area/Population (MUA/P)" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Medically_Underserved_Area_Population_MUA_P_Total_Resident_Civilian_Population", + "name": "Medically Underserved Area/Population (MUA/P) Total Resident Civilian Population", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Medically Underserved Area/Population (MUA/P) Total Resident Civilian Population" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Primary_HHS_Region_Code", + "name": "Primary HHS Region Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Primary HHS Region Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Primary_HHS_Region_Name", + "name": "Primary HHS Region Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Primary HHS Region Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Primary_State_FIPS_Code", + "name": "Primary State FIPS Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Primary State FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Primary_State_Abbreviation", + "name": "Primary State Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Primary State Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Primary_State_Name", + "name": "Primary State Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Primary State Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Common_Region_Code", + "name": "Common Region Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Common Region Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Common_Region_Name", + "name": "Common Region Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Common Region Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Common_State_Name", + "name": "Common State Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Common State Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Common_State_Abbreviation", + "name": "Common State Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Common State Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Common_State_FIPS_Code", + "name": "Common State FIPS Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Common State FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Common_State_County_FIPS_Code", + "name": "Common State County FIPS Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Common State County FIPS Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "medically-underserved-areas-populations/Common_County_Name", + "name": "Common County Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medically-underserved-areas-populations" + }, + "extract": { + "column": "Common County Name" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "medicines", + "name": "medicines", + "description": "STRABLE dataset 'medicines'. Task: b-classification (wide). Target column: 'Medicine status'. Original source: European-Medicines-Agency.", + "field": [ + { + "@type": "cr:Field", + "@id": "medicines/Category", + "name": "Category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Category" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Name_of_medicine", + "name": "Name of medicine", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Name of medicine" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/EMA_product_number", + "name": "EMA product number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "EMA product number" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Medicine_status", + "name": "Medicine status", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Medicine status" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Opinion_status", + "name": "Opinion status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Opinion status" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/International_non-proprietary_name_INN___common_name", + "name": "International non-proprietary name (INN) / common name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "International non-proprietary name (INN) / common name" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Active_substance", + "name": "Active substance", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Active substance" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Therapeutic_area_MeSH", + "name": "Therapeutic area (MeSH)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Therapeutic area (MeSH)" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Species_veterinary", + "name": "Species (veterinary)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Species (veterinary)" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Patient_safety", + "name": "Patient safety", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Patient safety" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/ATC_code_human", + "name": "ATC code (human)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "ATC code (human)" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/ATCvet_code_veterinary", + "name": "ATCvet code (veterinary)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "ATCvet code (veterinary)" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Pharmacotherapeutic_group_human", + "name": "Pharmacotherapeutic group (human)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Pharmacotherapeutic group (human)" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Pharmacotherapeutic_group_veterinary", + "name": "Pharmacotherapeutic group (veterinary)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Pharmacotherapeutic group (veterinary)" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Therapeutic_indication", + "name": "Therapeutic indication", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Therapeutic indication" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Accelerated_assessment", + "name": "Accelerated assessment", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Accelerated assessment" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Additional_monitoring", + "name": "Additional monitoring", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Additional monitoring" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Advanced_therapy", + "name": "Advanced therapy", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Advanced therapy" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Biosimilar", + "name": "Biosimilar", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Biosimilar" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Conditional_approval", + "name": "Conditional approval", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Conditional approval" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Exceptional_circumstances", + "name": "Exceptional circumstances", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Exceptional circumstances" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Generic_or_hybrid", + "name": "Generic or hybrid", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Generic or hybrid" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Orphan_medicine", + "name": "Orphan medicine", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Orphan medicine" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/PRIME:_priority_medicine", + "name": "PRIME: priority medicine", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "PRIME: priority medicine" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Marketing_authorisation_developer___applicant___holder", + "name": "Marketing authorisation developer / applicant / holder", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Marketing authorisation developer / applicant / holder" + } + } + }, + { + "@type": "cr:Field", + "@id": "medicines/Medicine_URL", + "name": "Medicine URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-medicines" + }, + "extract": { + "column": "Medicine URL" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "mercari", + "name": "mercari", + "description": "STRABLE dataset 'mercari'. Task: regression (wide). Target column: 'price'. Original source: mercari.com.", + "field": [ + { + "@type": "cr:Field", + "@id": "mercari/train_id", + "name": "train_id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-mercari" + }, + "extract": { + "column": "train_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "mercari/name", + "name": "name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mercari" + }, + "extract": { + "column": "name" + } + } + }, + { + "@type": "cr:Field", + "@id": "mercari/item_condition_id", + "name": "item_condition_id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-mercari" + }, + "extract": { + "column": "item_condition_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "mercari/category_name", + "name": "category_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mercari" + }, + "extract": { + "column": "category_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "mercari/brand_name", + "name": "brand_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mercari" + }, + "extract": { + "column": "brand_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "mercari/price", + "name": "price", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mercari" + }, + "extract": { + "column": "price" + } + } + }, + { + "@type": "cr:Field", + "@id": "mercari/shipping", + "name": "shipping", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-mercari" + }, + "extract": { + "column": "shipping" + } + } + }, + { + "@type": "cr:Field", + "@id": "mercari/item_description", + "name": "item_description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mercari" + }, + "extract": { + "column": "item_description" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "meta-critic_whisky", + "name": "meta-critic_whisky", + "description": "STRABLE dataset 'meta-critic_whisky'. Task: regression (wide). Target column: 'Meta Critic'. Original source: whiskyanalysis.com.", + "field": [ + { + "@type": "cr:Field", + "@id": "meta-critic_whisky/Whisky", + "name": "Whisky", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-meta-critic_whisky" + }, + "extract": { + "column": "Whisky" + } + } + }, + { + "@type": "cr:Field", + "@id": "meta-critic_whisky/Meta_Critic", + "name": "Meta Critic", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-meta-critic_whisky" + }, + "extract": { + "column": "Meta Critic" + } + } + }, + { + "@type": "cr:Field", + "@id": "meta-critic_whisky/Cost", + "name": "Cost", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-meta-critic_whisky" + }, + "extract": { + "column": "Cost" + } + } + }, + { + "@type": "cr:Field", + "@id": "meta-critic_whisky/Class", + "name": "Class", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-meta-critic_whisky" + }, + "extract": { + "column": "Class" + } + } + }, + { + "@type": "cr:Field", + "@id": "meta-critic_whisky/Super_Cluster", + "name": "Super Cluster", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-meta-critic_whisky" + }, + "extract": { + "column": "Super Cluster" + } + } + }, + { + "@type": "cr:Field", + "@id": "meta-critic_whisky/Cluster", + "name": "Cluster", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-meta-critic_whisky" + }, + "extract": { + "column": "Cluster" + } + } + }, + { + "@type": "cr:Field", + "@id": "meta-critic_whisky/Country", + "name": "Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-meta-critic_whisky" + }, + "extract": { + "column": "Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "meta-critic_whisky/Type", + "name": "Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-meta-critic_whisky" + }, + "extract": { + "column": "Type" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "michelin-ratings", + "name": "michelin-ratings", + "description": "STRABLE dataset 'michelin-ratings'. Task: m-classification (wide). Target column: 'awardFor'. Original source: Michelin.", + "field": [ + { + "@type": "cr:Field", + "@id": "michelin-ratings/streetAddress", + "name": "streetAddress", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "streetAddress" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/addressLocality", + "name": "addressLocality", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "addressLocality" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/postalCode", + "name": "postalCode", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "postalCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/addressCountry", + "name": "addressCountry", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "addressCountry" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/addressRegion", + "name": "addressRegion", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "addressRegion" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/name", + "name": "name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "name" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/datePublished", + "name": "datePublished", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "datePublished" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/description", + "name": "description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "description" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/telephone", + "name": "telephone", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "telephone" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/knowsLanguage", + "name": "knowsLanguage", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "knowsLanguage" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/acceptsReservations", + "name": "acceptsReservations", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "acceptsReservations" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/servesCuisine", + "name": "servesCuisine", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "servesCuisine" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/currenciesAccepted", + "name": "currenciesAccepted", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "currenciesAccepted" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/paymentAccepted", + "name": "paymentAccepted", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "paymentAccepted" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/priceRange", + "name": "priceRange", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "priceRange" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/latitude", + "name": "latitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/longitude", + "name": "longitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "michelin-ratings/awardFor", + "name": "awardFor", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-michelin-ratings" + }, + "extract": { + "column": "awardFor" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "miga-issued-projects", + "name": "miga-issued-projects", + "description": "STRABLE dataset 'miga-issued-projects'. Task: regression (wide). Target column: 'Gross Issued Amount (US$)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Issued_FY", + "name": "Issued FY", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Issued FY" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Project_ID", + "name": "Project ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Project ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Project_Name", + "name": "Project Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Project Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Host_Country", + "name": "Host Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Host Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Host_Country_Code", + "name": "Host Country Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Host Country Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Host_Region", + "name": "Host Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Host Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Host_Region_Code", + "name": "Host Region Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Host Region Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Business_Sector", + "name": "Business Sector", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Business Sector" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Product_Line", + "name": "Product Line", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Product Line" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Gross_Issued_Amount_US$", + "name": "Gross Issued Amount (US$)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Gross Issued Amount (US$)" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Project_Start_Date", + "name": "Project Start Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Project Start Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Project_Expiration_Date", + "name": "Project Expiration Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Project Expiration Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Project_Links", + "name": "Project Links", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Project Links" + } + } + }, + { + "@type": "cr:Field", + "@id": "miga-issued-projects/Issued_Proj_Count", + "name": "Issued_Proj_Count", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-miga-issued-projects" + }, + "extract": { + "column": "Issued_Proj_Count" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "mlr-summary-reports", + "name": "mlr-summary-reports", + "description": "STRABLE dataset 'mlr-summary-reports'. Task: regression (wide). Target column: 'Adjusted MLR'. Original source: Medicaid.", + "field": [ + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/Program_Name", + "name": "Program Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "Program Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/Program_Type", + "name": "Program Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "Program Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/Eligibility_Group", + "name": "Eligibility Group", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "Eligibility Group" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/If_Other__Describe_Eligibility_Group", + "name": "If Other, Describe Eligibility Group", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "If Other, Describe Eligibility Group" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/MCO__PIHP__or_PAHP_Name", + "name": "MCO, PIHP, or PAHP Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "MCO, PIHP, or PAHP Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/MLR_Reporting_Period_Start_Date", + "name": "MLR Reporting Period Start Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "MLR Reporting Period Start Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/MLR_Reporting_Period_End_Date", + "name": "MLR Reporting Period End Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "MLR Reporting Period End Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/Report_Year", + "name": "Report Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "Report Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/_MLR_Numerator_", + "name": " MLR Numerator ", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": " MLR Numerator " + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/_MLR_Denominator_", + "name": " MLR Denominator ", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": " MLR Denominator " + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/State-Reported_Member_Months", + "name": "State-Reported Member Months", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "State-Reported Member Months" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/Adjusted_MLR", + "name": "Adjusted MLR", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": "Adjusted MLR" + } + } + }, + { + "@type": "cr:Field", + "@id": "mlr-summary-reports/_Remittance_Dollar_Amount_for_MLR_Reporting_Period_", + "name": " Remittance Dollar Amount for MLR Reporting Period ", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mlr-summary-reports" + }, + "extract": { + "column": " Remittance Dollar Amount for MLR Reporting Period " + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "mobile-home-parks", + "name": "mobile-home-parks", + "description": "STRABLE dataset 'mobile-home-parks'. Task: m-classification (wide). Target column: 'SIZE'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "mobile-home-parks/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/MHPID", + "name": "MHPID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "MHPID" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/ZIP", + "name": "ZIP", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/TELEPHONE", + "name": "TELEPHONE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "TELEPHONE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/TYPE", + "name": "TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/STATUS", + "name": "STATUS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "STATUS" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/COUNTY", + "name": "COUNTY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "COUNTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/COUNTYFIPS", + "name": "COUNTYFIPS", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "COUNTYFIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/LATITUDE", + "name": "LATITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "LATITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/LONGITUDE", + "name": "LONGITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "LONGITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/NAICS_CODE", + "name": "NAICS_CODE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "NAICS_CODE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/NAICS_DESC", + "name": "NAICS_DESC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "NAICS_DESC" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/SOURCE", + "name": "SOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "SOURCE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/SOURCEDATE", + "name": "SOURCEDATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "SOURCEDATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/VAL_METHOD", + "name": "VAL_METHOD", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "VAL_METHOD" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/VAL_DATE", + "name": "VAL_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "VAL_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/WEBSITE", + "name": "WEBSITE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "WEBSITE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/UNITS", + "name": "UNITS", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "UNITS" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/SIZE", + "name": "SIZE", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "SIZE" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/REVGEOFLAG", + "name": "REVGEOFLAG", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "REVGEOFLAG" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "mobile-home-parks/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-mobile-home-parks" + }, + "extract": { + "column": "y" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "museums", + "name": "museums", + "description": "STRABLE dataset 'museums'. Task: regression (wide). Target column: 'REVENUE15'. Original source: Institute of Museum and Library Services.", + "field": [ + { + "@type": "cr:Field", + "@id": "museums/MID", + "name": "MID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "MID" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/DISCIPLINE", + "name": "DISCIPLINE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "DISCIPLINE" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/EIN", + "name": "EIN", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "EIN" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/CO_LOC_RES", + "name": "CO_LOC_RES", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "CO_LOC_RES" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/NTEEC", + "name": "NTEEC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "NTEEC" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/DUNS", + "name": "DUNS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "DUNS" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/NAICS", + "name": "NAICS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "NAICS" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/COMMONNAME", + "name": "COMMONNAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "COMMONNAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/LEGALNAME", + "name": "LEGALNAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "LEGALNAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/ALTNAME", + "name": "ALTNAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "ALTNAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/AKADBA", + "name": "AKADBA", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "AKADBA" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/ADSTREET", + "name": "ADSTREET", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "ADSTREET" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/ADCITY", + "name": "ADCITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "ADCITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/ADSTATE", + "name": "ADSTATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "ADSTATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/ADZIP", + "name": "ADZIP", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "ADZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/ADZIP5", + "name": "ADZIP5", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "ADZIP5" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/PHSTREET", + "name": "PHSTREET", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "PHSTREET" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/PHCITY", + "name": "PHCITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "PHCITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/PHSTATE", + "name": "PHSTATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "PHSTATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/PHZIP", + "name": "PHZIP", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "PHZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/PHZIP5", + "name": "PHZIP5", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "PHZIP5" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/PHONE", + "name": "PHONE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "PHONE" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/WEBURL", + "name": "WEBURL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "WEBURL" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/IRS_NAME15", + "name": "IRS_NAME15", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "IRS_NAME15" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/TAXPER15", + "name": "TAXPER15", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "TAXPER15" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/REVENUE15", + "name": "REVENUE15", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "REVENUE15" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/IRS_STREET15", + "name": "IRS_STREET15", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "IRS_STREET15" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/IRS_CITY15", + "name": "IRS_CITY15", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "IRS_CITY15" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/IRS_STATE15", + "name": "IRS_STATE15", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "IRS_STATE15" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/IRS_ZIP15", + "name": "IRS_ZIP15", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "IRS_ZIP15" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/RULEDATE15", + "name": "RULEDATE15", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "RULEDATE15" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/IPEDS", + "name": "IPEDS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "IPEDS" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/INSTNAME", + "name": "INSTNAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "INSTNAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/INSTCITY", + "name": "INSTCITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "INSTCITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/INSTST", + "name": "INSTST", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "INSTST" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/LONGITUDE", + "name": "LONGITUDE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "LONGITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/LATITUDE", + "name": "LATITUDE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "LATITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/AAMREG", + "name": "AAMREG", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "AAMREG" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/BEAREG", + "name": "BEAREG", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "BEAREG" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/LOCALE4", + "name": "LOCALE4", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "LOCALE4" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/FIPSST", + "name": "FIPSST", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "FIPSST" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/FIPSCO", + "name": "FIPSCO", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "FIPSCO" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/GSTREET", + "name": "GSTREET", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "GSTREET" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/GCITY", + "name": "GCITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "GCITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/GSTATE", + "name": "GSTATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "GSTATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/GZIP", + "name": "GZIP", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "GZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/GZIP5", + "name": "GZIP5", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "GZIP5" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/BMF15_F", + "name": "BMF15_F", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "BMF15_F" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/IMLSAD_F", + "name": "IMLSAD_F", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "IMLSAD_F" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/PFND_F", + "name": "PFND_F", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "PFND_F" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/FCT3P_F", + "name": "FCT3P_F", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "FCT3P_F" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/USER_F", + "name": "USER_F", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "USER_F" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/UNI_F", + "name": "UNI_F", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "UNI_F" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/OTHER_F", + "name": "OTHER_F", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "OTHER_F" + } + } + }, + { + "@type": "cr:Field", + "@id": "museums/SOURCE", + "name": "SOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-museums" + }, + "extract": { + "column": "SOURCE" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "national-average-drug-acquisition-cost", + "name": "national-average-drug-acquisition-cost", + "description": "STRABLE dataset 'national-average-drug-acquisition-cost'. Task: regression (wide). Target column: 'NADAC Per Unit'. Original source: Medicaid.", + "field": [ + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/NDC_Description", + "name": "NDC Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "NDC Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/NDC", + "name": "NDC", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "NDC" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/NADAC_Per_Unit", + "name": "NADAC Per Unit", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "NADAC Per Unit" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/Effective_Date", + "name": "Effective Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "Effective Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/Pricing_Unit", + "name": "Pricing Unit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "Pricing Unit" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/OTC", + "name": "OTC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "OTC" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/Explanation_Code", + "name": "Explanation Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "Explanation Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/Classification_for_Rate_Setting", + "name": "Classification for Rate Setting", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "Classification for Rate Setting" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/Corresponding_Generic_Drug_NADAC_Per_Unit", + "name": "Corresponding Generic Drug NADAC Per Unit", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "Corresponding Generic Drug NADAC Per Unit" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/Corresponding_Generic_Drug_Effective_Date", + "name": "Corresponding Generic Drug Effective Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "Corresponding Generic Drug Effective Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "national-average-drug-acquisition-cost/As_of_Date", + "name": "As of Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-national-average-drug-acquisition-cost" + }, + "extract": { + "column": "As of Date" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "oil-natural-gas-platform", + "name": "oil-natural-gas-platform", + "description": "STRABLE dataset 'oil-natural-gas-platform'. Task: regression (wide). Target column: 'WATERDEPTH'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/PLATFRMID", + "name": "PLATFRMID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "PLATFRMID" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/STATUS", + "name": "STATUS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "STATUS" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/SOURCEDATE", + "name": "SOURCEDATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "SOURCEDATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/COMPLEXID", + "name": "COMPLEXID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "COMPLEXID" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/NOSTR", + "name": "NOSTR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "NOSTR" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/OWNER", + "name": "OWNER", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "OWNER" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/OPERNAME", + "name": "OPERNAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "OPERNAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/COMMODITY", + "name": "COMMODITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "COMMODITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/INSTALL", + "name": "INSTALL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "INSTALL" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/REMOVAL", + "name": "REMOVAL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "REMOVAL" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/MANNED24HR", + "name": "MANNED24HR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "MANNED24HR" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/WATERDEPTH", + "name": "WATERDEPTH", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "WATERDEPTH" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/RIGCOUNT", + "name": "RIGCOUNT", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "RIGCOUNT" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/PWRSOURCE", + "name": "PWRSOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "PWRSOURCE" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/PWRGENFLAG", + "name": "PWRGENFLAG", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "PWRGENFLAG" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/OILPRDFLAG", + "name": "OILPRDFLAG", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "OILPRDFLAG" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/GASMTRFLAG", + "name": "GASMTRFLAG", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "GASMTRFLAG" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/COMPREFLAG", + "name": "COMPREFLAG", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "COMPREFLAG" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/COMPRDFLAG", + "name": "COMPRDFLAG", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "COMPRDFLAG" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/HELPRTFLAG", + "name": "HELPRTFLAG", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "HELPRTFLAG" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/BEDCOUNT", + "name": "BEDCOUNT", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "BEDCOUNT" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/BLOCKNO", + "name": "BLOCKNO", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "BLOCKNO" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/LEASENO", + "name": "LEASENO", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "LEASENO" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/AREANUMBER", + "name": "AREANUMBER", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "AREANUMBER" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/REGION", + "name": "REGION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "REGION" + } + } + }, + { + "@type": "cr:Field", + "@id": "oil-natural-gas-platform/GlobalID", + "name": "GlobalID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-oil-natural-gas-platform" + }, + "extract": { + "column": "GlobalID" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "orphan-designations", + "name": "orphan-designations", + "description": "STRABLE dataset 'orphan-designations'. Task: b-classification (wide). Target column: 'Status'. Original source: European-Medicines-Agency.", + "field": [ + { + "@type": "cr:Field", + "@id": "orphan-designations/Medicine_name", + "name": "Medicine name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "Medicine name" + } + } + }, + { + "@type": "cr:Field", + "@id": "orphan-designations/Related_EMA_product_number", + "name": "Related EMA product number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "Related EMA product number" + } + } + }, + { + "@type": "cr:Field", + "@id": "orphan-designations/Active_substance", + "name": "Active substance", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "Active substance" + } + } + }, + { + "@type": "cr:Field", + "@id": "orphan-designations/Date_of_designation___refusal", + "name": "Date of designation / refusal", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "Date of designation / refusal" + } + } + }, + { + "@type": "cr:Field", + "@id": "orphan-designations/Intended_use", + "name": "Intended use", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "Intended use" + } + } + }, + { + "@type": "cr:Field", + "@id": "orphan-designations/EU_designation_number", + "name": "EU designation number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "EU designation number" + } + } + }, + { + "@type": "cr:Field", + "@id": "orphan-designations/Status", + "name": "Status", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "orphan-designations/First_published_date", + "name": "First published date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "First published date" + } + } + }, + { + "@type": "cr:Field", + "@id": "orphan-designations/Last_updated_date", + "name": "Last updated date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "Last updated date" + } + } + }, + { + "@type": "cr:Field", + "@id": "orphan-designations/Orphan_designation_URL", + "name": "Orphan designation URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-orphan-designations" + }, + "extract": { + "column": "Orphan designation URL" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "osha-accidents", + "name": "osha-accidents", + "description": "STRABLE dataset 'osha-accidents'. Task: b-classification (wide). Target column: 'Task Assigned'. Original source: osha.gov.", + "field": [ + { + "@type": "cr:Field", + "@id": "osha-accidents/summary_nr", + "name": "summary_nr", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "summary_nr" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Event_Date", + "name": "Event Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Event Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Abstract_Text", + "name": "Abstract Text", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Abstract Text" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Event_Description", + "name": "Event Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Event Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Event_Keywords", + "name": "Event Keywords", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Event Keywords" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/con_end", + "name": "con_end", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "con_end" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Construction_End_Use", + "name": "Construction End Use", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Construction End Use" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/build_stor", + "name": "build_stor", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "build_stor" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Building_Stories", + "name": "Building Stories", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Building Stories" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/proj_cost", + "name": "proj_cost", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "proj_cost" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Project_Cost", + "name": "Project Cost", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Project Cost" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/proj_type", + "name": "proj_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "proj_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Project_Type", + "name": "Project Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Project Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Degree_of_Injury", + "name": "Degree of Injury", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Degree of Injury" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/nature_of_inj", + "name": "nature_of_inj", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "nature_of_inj" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Nature_of_Injury", + "name": "Nature of Injury", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Nature of Injury" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/part_of_body", + "name": "part_of_body", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "part_of_body" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Part_of_Body", + "name": "Part of Body", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Part of Body" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/event_type", + "name": "event_type", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "event_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Event_type", + "name": "Event type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Event type" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/evn_factor", + "name": "evn_factor", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "evn_factor" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Environmental_Factor", + "name": "Environmental Factor", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Environmental Factor" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/hum_factor", + "name": "hum_factor", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "hum_factor" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Human_Factor", + "name": "Human Factor", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Human Factor" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/Task_Assigned", + "name": "Task Assigned", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "Task Assigned" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/hazsub", + "name": "hazsub", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "hazsub" + } + } + }, + { + "@type": "cr:Field", + "@id": "osha-accidents/fat_cause", + "name": "fat_cause", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-osha-accidents" + }, + "extract": { + "column": "fat_cause" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "paediatric-investigation-plan", + "name": "paediatric-investigation-plan", + "description": "STRABLE dataset 'paediatric-investigation-plan'. Task: m-classification (wide). Target column: 'Decision type'. Original source: European-Medicines-Agency.", + "field": [ + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Decision_number", + "name": "Decision number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Decision number" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/PIP_number", + "name": "PIP number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "PIP number" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Active_substance", + "name": "Active substance", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Active substance" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Invented_name", + "name": "Invented name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Invented name" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Therapeutic_area", + "name": "Therapeutic area", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Therapeutic area" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Pharmaceutical_forms", + "name": "Pharmaceutical forms", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Pharmaceutical forms" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Condition___indication", + "name": "Condition / indication", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Condition / indication" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Routes_of_administration", + "name": "Routes of administration", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Routes of administration" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Decision_type", + "name": "Decision type", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Decision type" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Decision_date", + "name": "Decision date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Decision date" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Compliance_opinion_date", + "name": "Compliance opinion date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Compliance opinion date" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Compliance_procedure_number", + "name": "Compliance procedure number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Compliance procedure number" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Contact_for_public_enquiries", + "name": "Contact for public enquiries", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Contact for public enquiries" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/First_published_date", + "name": "First published date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "First published date" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/Last_updated_date", + "name": "Last updated date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "Last updated date" + } + } + }, + { + "@type": "cr:Field", + "@id": "paediatric-investigation-plan/PIP_URL", + "name": "PIP URL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-paediatric-investigation-plan" + }, + "extract": { + "column": "PIP URL" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "pol-terminal", + "name": "pol-terminal", + "description": "STRABLE dataset 'pol-terminal'. Task: regression (wide). Target column: 'CAPACITY'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "pol-terminal/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/TERM_ID", + "name": "TERM_ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "TERM_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/ZIP", + "name": "ZIP", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/ZIP4", + "name": "ZIP4", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "ZIP4" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/TELEPHONE", + "name": "TELEPHONE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "TELEPHONE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/TYPE", + "name": "TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/STATUS", + "name": "STATUS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "STATUS" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/POPULATION", + "name": "POPULATION", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "POPULATION" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/COUNTY", + "name": "COUNTY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "COUNTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/COUNTYFIPS", + "name": "COUNTYFIPS", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "COUNTYFIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/LATITUDE", + "name": "LATITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "LATITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/LONGITUDE", + "name": "LONGITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "LONGITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/NAICS_CODE", + "name": "NAICS_CODE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "NAICS_CODE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/NAICS_DESC", + "name": "NAICS_DESC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "NAICS_DESC" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/SOURCE", + "name": "SOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "SOURCE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/SOURCEDATE", + "name": "SOURCEDATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "SOURCEDATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/VAL_METHOD", + "name": "VAL_METHOD", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "VAL_METHOD" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/VAL_DATE", + "name": "VAL_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "VAL_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/WEBSITE", + "name": "WEBSITE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "WEBSITE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/EXSTARS_I", + "name": "EXSTARS_I", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "EXSTARS_I" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/OWNER", + "name": "OWNER", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "OWNER" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/OPERATOR", + "name": "OPERATOR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "OPERATOR" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/POSREL", + "name": "POSREL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "POSREL" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/COMMODITY", + "name": "COMMODITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "COMMODITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/CAPACITY", + "name": "CAPACITY", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "CAPACITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/TRUCK_IN", + "name": "TRUCK_IN", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "TRUCK_IN" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/TRUCK_OUT", + "name": "TRUCK_OUT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "TRUCK_OUT" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/PIPE_IN", + "name": "PIPE_IN", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "PIPE_IN" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/PIPE_OUT", + "name": "PIPE_OUT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "PIPE_OUT" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/MARINE_IN", + "name": "MARINE_IN", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "MARINE_IN" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/MARINE_OUT", + "name": "MARINE_OUT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "MARINE_OUT" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/RAIL_IN", + "name": "RAIL_IN", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "RAIL_IN" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/RAIL_OUT", + "name": "RAIL_OUT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "RAIL_OUT" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/ASPHALT", + "name": "ASPHALT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "ASPHALT" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/CHEMICALS", + "name": "CHEMICALS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "CHEMICALS" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/PROPANE", + "name": "PROPANE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "PROPANE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/BUTANE", + "name": "BUTANE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "BUTANE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/REFINED", + "name": "REFINED", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "REFINED" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/ETHANOL", + "name": "ETHANOL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "ETHANOL" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/BIODIESEL", + "name": "BIODIESEL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "BIODIESEL" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/CRUDE_OIL", + "name": "CRUDE_OIL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "CRUDE_OIL" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/JETFUEL", + "name": "JETFUEL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "JETFUEL" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/GASOLINE", + "name": "GASOLINE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "GASOLINE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/DISTILLATE", + "name": "DISTILLATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "DISTILLATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/AVGAS", + "name": "AVGAS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "AVGAS" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/GlobalID", + "name": "GlobalID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "GlobalID" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "pol-terminal/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-pol-terminal" + }, + "extract": { + "column": "y" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "power-plants", + "name": "power-plants", + "description": "STRABLE dataset 'power-plants'. Task: regression (wide). Target column: 'NAMPLT_CAP'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "power-plants/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/ID", + "name": "ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/ZIP", + "name": "ZIP", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/TYPE", + "name": "TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/NAICS_CODE", + "name": "NAICS_CODE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "NAICS_CODE" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/NAICS_DESC", + "name": "NAICS_DESC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "NAICS_DESC" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/PLANT", + "name": "PLANT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "PLANT" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/PLANT_CODE", + "name": "PLANT_CODE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "PLANT_CODE" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/OPERATOR", + "name": "OPERATOR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "OPERATOR" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/OPERAT_ID", + "name": "OPERAT_ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "OPERAT_ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/NAMPLT_CAP", + "name": "NAMPLT_CAP", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "NAMPLT_CAP" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/PRIM_FUEL", + "name": "PRIM_FUEL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "PRIM_FUEL" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/FUEL1_TRAN", + "name": "FUEL1_TRAN", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "FUEL1_TRAN" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/SEC_FUEL", + "name": "SEC_FUEL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "SEC_FUEL" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/FUEL2_TRAN", + "name": "FUEL2_TRAN", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "FUEL2_TRAN" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/PRIM_MVR", + "name": "PRIM_MVR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "PRIM_MVR" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/RUN_DATE", + "name": "RUN_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "RUN_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "power-plants/RET_DATE", + "name": "RET_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-power-plants" + }, + "extract": { + "column": "RET_DATE" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "prepaid-financial-product", + "name": "prepaid-financial-product", + "description": "STRABLE dataset 'prepaid-financial-product'. Task: b-classification (wide). Target column: 'current_status'. Original source: Consumer-Financial-Protection-Bureau.", + "field": [ + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/issuer_name", + "name": "issuer_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "issuer_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/product_name", + "name": "product_name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "product_name" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/product_id", + "name": "product_id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "product_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/agreement_effective_date", + "name": "agreement_effective_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "agreement_effective_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/agreement_id", + "name": "agreement_id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "agreement_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/created_date", + "name": "created_date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "created_date" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/current_status", + "name": "current_status", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "current_status" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/prepaid_product_type", + "name": "prepaid_product_type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "prepaid_product_type" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/program_manager_exists", + "name": "program_manager_exists", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "program_manager_exists" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/program_manager", + "name": "program_manager", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "program_manager" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/other_relevant_parties", + "name": "other_relevant_parties", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "other_relevant_parties" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/path", + "name": "path", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "path" + } + } + }, + { + "@type": "cr:Field", + "@id": "prepaid-financial-product/direct_download", + "name": "direct_download", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prepaid-financial-product" + }, + "extract": { + "column": "direct_download" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "prison-boundaries", + "name": "prison-boundaries", + "description": "STRABLE dataset 'prison-boundaries'. Task: regression (wide). Target column: 'CAPACITY'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "prison-boundaries/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/FACILITYID", + "name": "FACILITYID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "FACILITYID" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/NAME", + "name": "NAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "NAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/STATE", + "name": "STATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "STATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/ZIP", + "name": "ZIP", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/ZIP4", + "name": "ZIP4", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "ZIP4" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/TELEPHONE", + "name": "TELEPHONE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "TELEPHONE" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/TYPE", + "name": "TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/STATUS", + "name": "STATUS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "STATUS" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/COUNTY", + "name": "COUNTY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "COUNTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/COUNTYFIPS", + "name": "COUNTYFIPS", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "COUNTYFIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/COUNTRY", + "name": "COUNTRY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "COUNTRY" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/SOURCE", + "name": "SOURCE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "SOURCE" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/SOURCEDATE", + "name": "SOURCEDATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "SOURCEDATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/VAL_METHOD", + "name": "VAL_METHOD", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "VAL_METHOD" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/VAL_DATE", + "name": "VAL_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "VAL_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/WEBSITE", + "name": "WEBSITE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "WEBSITE" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/SECURELVL", + "name": "SECURELVL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "SECURELVL" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/CAPACITY", + "name": "CAPACITY", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "CAPACITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/Shape__Area", + "name": "Shape__Area", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "Shape__Area" + } + } + }, + { + "@type": "cr:Field", + "@id": "prison-boundaries/Shape__Length", + "name": "Shape__Length", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-prison-boundaries" + }, + "extract": { + "column": "Shape__Length" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "ramen-ratings", + "name": "ramen-ratings", + "description": "STRABLE dataset 'ramen-ratings'. Task: m-classification (wide). Target column: 'Stars'. Original source: theramenrater.com.", + "field": [ + { + "@type": "cr:Field", + "@id": "ramen-ratings/Brand", + "name": "Brand", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ramen-ratings" + }, + "extract": { + "column": "Brand" + } + } + }, + { + "@type": "cr:Field", + "@id": "ramen-ratings/Variety", + "name": "Variety", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ramen-ratings" + }, + "extract": { + "column": "Variety" + } + } + }, + { + "@type": "cr:Field", + "@id": "ramen-ratings/Style", + "name": "Style", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ramen-ratings" + }, + "extract": { + "column": "Style" + } + } + }, + { + "@type": "cr:Field", + "@id": "ramen-ratings/Country", + "name": "Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ramen-ratings" + }, + "extract": { + "column": "Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "ramen-ratings/Stars", + "name": "Stars", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-ramen-ratings" + }, + "extract": { + "column": "Stars" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "rasff_window", + "name": "rasff_window", + "description": "STRABLE dataset 'rasff_window'. Task: m-classification (wide). Target column: 'risk_decision'. Original source: European-Commission.", + "field": [ + { + "@type": "cr:Field", + "@id": "rasff_window/reference", + "name": "reference", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "reference" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/category", + "name": "category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "category" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/type", + "name": "type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "type" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/subject", + "name": "subject", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "subject" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/date", + "name": "date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "date" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/notifying_country", + "name": "notifying_country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "notifying_country" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/classification", + "name": "classification", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "classification" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/risk_decision", + "name": "risk_decision", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "risk_decision" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/distribution", + "name": "distribution", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "distribution" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/forAttention", + "name": "forAttention", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "forAttention" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/forFollowUp", + "name": "forFollowUp", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "forFollowUp" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/operator", + "name": "operator", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "operator" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/origin", + "name": "origin", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "origin" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasff_window/hazards", + "name": "hazards", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasff_window" + }, + "extract": { + "column": "hazards" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "rasnf_notification_list", + "name": "rasnf_notification_list", + "description": "STRABLE dataset 'rasnf_notification_list'. Task: b-classification (wide). Target column: 'num_countries_affected'. Original source: European-Commission.", + "field": [ + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Type_of_alert", + "name": "Type of alert", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Type of alert" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Type", + "name": "Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Alert_number", + "name": "Alert number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Alert number" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Alert_submitted_by", + "name": "Alert submitted by", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Alert submitted by" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Country_of_origin", + "name": "Country of origin", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Country of origin" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Counterfeit", + "name": "Counterfeit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Counterfeit" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Risk_type", + "name": "Risk type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Risk type" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Risk_legal_provision", + "name": "Risk legal provision", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Risk legal provision" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Product", + "name": "Product", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Product" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Name", + "name": "Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Description", + "name": "Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Brand", + "name": "Brand", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Brand" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Category", + "name": "Category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Category" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Type___number_of_model", + "name": "Type / number of model", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Type / number of model" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/OECD_Portal_category", + "name": "OECD Portal category", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "OECD Portal category" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Risk", + "name": "Risk", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Risk" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Compulsory_measures", + "name": "Compulsory measures", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Compulsory measures" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Voluntary_measures", + "name": "Voluntary measures", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Voluntary measures" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Company_recall_page", + "name": "Company recall page", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Company recall page" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/URL_of_Case", + "name": "URL of Case", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "URL of Case" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Barcode", + "name": "Barcode", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Barcode" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Batch_number", + "name": "Batch number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Batch number" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Company_recall_code_**", + "name": "Company recall code (**)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Company recall code (**)" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Production_dates_**", + "name": "Production dates (**)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Production dates (**)" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/Packaging_description", + "name": "Packaging description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "Packaging description" + } + } + }, + { + "@type": "cr:Field", + "@id": "rasnf_notification_list/num_countries_affected", + "name": "num_countries_affected", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-rasnf_notification_list" + }, + "extract": { + "column": "num_countries_affected" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "recipient-executed-grants-commitments-disbursements", + "name": "recipient-executed-grants-commitments-disbursements", + "description": "STRABLE dataset 'recipient-executed-grants-commitments-disbursements'. Task: regression (wide). Target column: 'Disbursements USD (Trust funds)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Beneficiary_Code", + "name": "Beneficiary Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Beneficiary Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Beneficiary_Name", + "name": "Beneficiary Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Beneficiary Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Trustee_Fund_Number", + "name": "Trustee Fund Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Trustee Fund Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Trustee_Fund_Name", + "name": "Trustee Fund Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Trustee Fund Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Grant_Fund_Number", + "name": "Grant Fund Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Grant Fund Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Grant_Fund_Name", + "name": "Grant Fund Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Grant Fund Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Program_Code", + "name": "Program Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Program Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Program_Name", + "name": "Program Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Program Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Fiscal_Year", + "name": "Fiscal Year", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Fiscal Year" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Grant_Commitments_USD", + "name": "Grant Commitments USD", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Grant Commitments USD" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Disbursements_USD_Trust_funds", + "name": "Disbursements USD (Trust funds)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Disbursements USD (Trust funds)" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Grant_Agreement_Date", + "name": "Grant Agreement Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Grant Agreement Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Status", + "name": "Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Project_ID", + "name": "Project ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Project ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "recipient-executed-grants-commitments-disbursements/Project_Description", + "name": "Project Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-recipient-executed-grants-commitments-disbursements" + }, + "extract": { + "column": "Project Description" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "schools", + "name": "schools", + "description": "STRABLE dataset 'schools'. Task: regression (wide). Target column: 'Enrollment_FT_Teachers_Ratio'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "schools/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/NCES_ID", + "name": "NCES ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "NCES ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Name", + "name": "Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Address", + "name": "Address", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Address" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/City", + "name": "City", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "City" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Zip", + "name": "Zip", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Zip" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Zip4", + "name": "Zip4", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Zip4" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Telephone", + "name": "Telephone", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Telephone" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Type", + "name": "Type", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Status", + "name": "Status", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/County", + "name": "County", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "County" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/County_FIPS", + "name": "County FIPS", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "County FIPS" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Latitude", + "name": "Latitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Longitude", + "name": "Longitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Source", + "name": "Source", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Source" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Validation_Method", + "name": "Validation Method", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Validation Method" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Validation_Date", + "name": "Validation Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Validation Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Website", + "name": "Website", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Website" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Level", + "name": "Level", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Level" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Start_Grade", + "name": "Start Grade", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Start Grade" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/End_Grade", + "name": "End Grade", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "End Grade" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Shelter_ID", + "name": "Shelter ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Shelter ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "y" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/District_ID", + "name": "District ID", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "District ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "schools/Enrollment_FT_Teachers_Ratio", + "name": "Enrollment_FT_Teachers_Ratio", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-schools" + }, + "extract": { + "column": "Enrollment_FT_Teachers_Ratio" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "sf-building-permits", + "name": "sf-building-permits", + "description": "STRABLE dataset 'sf-building-permits'. Task: regression (wide). Target column: 'time_to_approve'. Original source: data.sfgov.org.", + "field": [ + { + "@type": "cr:Field", + "@id": "sf-building-permits/Permit_Number", + "name": "Permit Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Permit Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Permit_Type", + "name": "Permit Type", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Permit Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Permit_Type_Definition", + "name": "Permit Type Definition", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Permit Type Definition" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Permit_Creation_Date", + "name": "Permit Creation Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Permit Creation Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Block", + "name": "Block", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Block" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Lot", + "name": "Lot", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Lot" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Street_Number", + "name": "Street Number", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Street Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Street_Number_Suffix", + "name": "Street Number Suffix", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Street Number Suffix" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Street_Name", + "name": "Street Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Street Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Street_Suffix", + "name": "Street Suffix", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Street Suffix" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Unit", + "name": "Unit", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Unit" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Unit_Suffix", + "name": "Unit Suffix", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Unit Suffix" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Description", + "name": "Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Current_Status", + "name": "Current Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Current Status" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Current_Status_Date", + "name": "Current Status Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Current Status Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Completed_Date", + "name": "Completed Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Completed Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/First_Construction_Document_Date", + "name": "First Construction Document Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "First Construction Document Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Number_of_Existing_Stories", + "name": "Number of Existing Stories", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Number of Existing Stories" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Number_of_Proposed_Stories", + "name": "Number of Proposed Stories", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Number of Proposed Stories" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Permit_Expiration_Date", + "name": "Permit Expiration Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Permit Expiration Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Estimated_Cost", + "name": "Estimated Cost", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Estimated Cost" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Revised_Cost", + "name": "Revised Cost", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Revised Cost" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Existing_Use", + "name": "Existing Use", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Existing Use" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Existing_Units", + "name": "Existing Units", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Existing Units" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Proposed_Use", + "name": "Proposed Use", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Proposed Use" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Proposed_Units", + "name": "Proposed Units", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Proposed Units" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Plansets", + "name": "Plansets", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Plansets" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/TIDF_Compliance", + "name": "TIDF Compliance", + "description": "Original dtype: null.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "TIDF Compliance" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Existing_Construction_Type", + "name": "Existing Construction Type", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Existing Construction Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Existing_Construction_Type_Description", + "name": "Existing Construction Type Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Existing Construction Type Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Proposed_Construction_Type", + "name": "Proposed Construction Type", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Proposed Construction Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Proposed_Construction_Type_Description", + "name": "Proposed Construction Type Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Proposed Construction Type Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Supervisor_District", + "name": "Supervisor District", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Supervisor District" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Neighborhoods_-_Analysis_Boundaries", + "name": "Neighborhoods - Analysis Boundaries", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Neighborhoods - Analysis Boundaries" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Zipcode", + "name": "Zipcode", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Zipcode" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Location", + "name": "Location", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Location" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/Record_ID", + "name": "Record ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "Record ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "sf-building-permits/time_to_approve", + "name": "time_to_approve", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-sf-building-permits" + }, + "extract": { + "column": "time_to_approve" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "summary-of-deposit_wide", + "name": "summary-of-deposit_wide", + "description": "STRABLE dataset 'summary-of-deposit_wide'. Task: regression (wide). Target column: 'DEPSUM'. Original source: Federal-Deposit-Insurance-Corporation.", + "field": [ + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CERT", + "name": "CERT", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CERT" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/NAMEFULL", + "name": "NAMEFULL", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "NAMEFULL" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/ADDRESBR", + "name": "ADDRESBR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "ADDRESBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/UNINUMBR", + "name": "UNINUMBR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "UNINUMBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/STALPBR", + "name": "STALPBR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "STALPBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/ADDRESS", + "name": "ADDRESS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "ADDRESS" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/BKCLASS", + "name": "BKCLASS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "BKCLASS" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CHARTER", + "name": "CHARTER", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CHARTER" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CHRTAGNN", + "name": "CHRTAGNN", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CHRTAGNN" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CHRTAGNT", + "name": "CHRTAGNT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CHRTAGNT" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CITY", + "name": "CITY", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CITY" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CLCODE", + "name": "CLCODE", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CLCODE" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CNTRYNA", + "name": "CNTRYNA", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CNTRYNA" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/DEPSUM", + "name": "DEPSUM", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "DEPSUM" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/DOCKET", + "name": "DOCKET", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "DOCKET" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/FDICDBS", + "name": "FDICDBS", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "FDICDBS" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/FDICNAME", + "name": "FDICNAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "FDICNAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/FED", + "name": "FED", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "FED" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/FEDNAME", + "name": "FEDNAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "FEDNAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/INSURED", + "name": "INSURED", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "INSURED" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/OCCDIST", + "name": "OCCDIST", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "OCCDIST" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/OCCNAME", + "name": "OCCNAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "OCCNAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/REGAGNT", + "name": "REGAGNT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "REGAGNT" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/RSSDID", + "name": "RSSDID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "RSSDID" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/SPECDESC", + "name": "SPECDESC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "SPECDESC" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/SPECGRP", + "name": "SPECGRP", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "SPECGRP" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/STALP", + "name": "STALP", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "STALP" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/STCNTY", + "name": "STCNTY", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "STCNTY" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/STNAME", + "name": "STNAME", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "STNAME" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/UNIT", + "name": "UNIT", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "UNIT" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/ZIP", + "name": "ZIP", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "ZIP" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/BRCENM", + "name": "BRCENM", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "BRCENM" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/BRSERTYP", + "name": "BRSERTYP", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "BRSERTYP" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CBSA_DIV_NAMB", + "name": "CBSA_DIV_NAMB", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CBSA_DIV_NAMB" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CITY2BR", + "name": "CITY2BR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CITY2BR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CITYBR", + "name": "CITYBR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CITYBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CNTRYNAB", + "name": "CNTRYNAB", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CNTRYNAB" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CNTYNAMB", + "name": "CNTYNAMB", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CNTYNAMB" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CNTYNUMB", + "name": "CNTYNUMB", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CNTYNUMB" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CONSOLD", + "name": "CONSOLD", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CONSOLD" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CSABR", + "name": "CSABR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CSABR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CSANAMBR", + "name": "CSANAMBR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CSANAMBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/DIVISIONB", + "name": "DIVISIONB", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "DIVISIONB" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/METROBR", + "name": "METROBR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "METROBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/MICROBR", + "name": "MICROBR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "MICROBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/MSABR", + "name": "MSABR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "MSABR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/MSANAMB", + "name": "MSANAMB", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "MSANAMB" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/NAMEBR", + "name": "NAMEBR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "NAMEBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/SIMS_DESCRIPTION", + "name": "SIMS_DESCRIPTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "SIMS_DESCRIPTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/SIMS_ESTABLISHED_DATE", + "name": "SIMS_ESTABLISHED_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "SIMS_ESTABLISHED_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/SIMS_LATITUDE", + "name": "SIMS_LATITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "SIMS_LATITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/SIMS_LONGITUDE", + "name": "SIMS_LONGITUDE", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "SIMS_LONGITUDE" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/SIMS_PROJECTION", + "name": "SIMS_PROJECTION", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "SIMS_PROJECTION" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/STCNTYBR", + "name": "STCNTYBR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "STCNTYBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/STNAMEBR", + "name": "STNAMEBR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "STNAMEBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/STNUMBR", + "name": "STNUMBR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "STNUMBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/ZIPBR", + "name": "ZIPBR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "ZIPBR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/CITYHCR", + "name": "CITYHCR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "CITYHCR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/HCTMULT", + "name": "HCTMULT", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "HCTMULT" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/NAMEHCR", + "name": "NAMEHCR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "NAMEHCR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/RSSDHCR", + "name": "RSSDHCR", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "RSSDHCR" + } + } + }, + { + "@type": "cr:Field", + "@id": "summary-of-deposit_wide/STALPHCR", + "name": "STALPHCR", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-summary-of-deposit_wide" + }, + "extract": { + "column": "STALPHCR" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "tax-incentives", + "name": "tax-incentives", + "description": "STRABLE dataset 'tax-incentives'. Task: regression (wide). Target column: 'credit_amount'. Original source: fueleconomy.gov.", + "field": [ + { + "@type": "cr:Field", + "@id": "tax-incentives/atvtype", + "name": "atvtype", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "atvtype" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/basemodel", + "name": "basemodel", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "basemodel" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/createdon", + "name": "createdon", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "createdon" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/enddate", + "name": "enddate", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "enddate" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/irsmake", + "name": "irsmake", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "irsmake" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/irsmodel", + "name": "irsmodel", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "irsmodel" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/meetsassemblyrule", + "name": "meetsassemblyrule", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "meetsassemblyrule" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/modifiedon", + "name": "modifiedon", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "modifiedon" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/msrplimit", + "name": "msrplimit", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "msrplimit" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/startdate", + "name": "startdate", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "startdate" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/taxcredit_cmbc_id", + "name": "taxcredit_cmbc_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "taxcredit_cmbc_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/year", + "name": "year", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "year" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/manufacturer", + "name": "manufacturer", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "manufacturer" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/bcindvehdesc", + "name": "bcindvehdesc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "bcindvehdesc" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/cmindvehdesc", + "name": "cmindvehdesc", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "cmindvehdesc" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/onwardtaxcreditid", + "name": "onwardtaxcreditid", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "onwardtaxcreditid" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/phaseout25amount", + "name": "phaseout25amount", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "phaseout25amount" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/phaseout50amount", + "name": "phaseout50amount", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "phaseout50amount" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/taxcreditid", + "name": "taxcreditid", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "taxcreditid" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/assemblycountry", + "name": "assemblycountry", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "assemblycountry" + } + } + }, + { + "@type": "cr:Field", + "@id": "tax-incentives/credit_amount", + "name": "credit_amount", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tax-incentives" + }, + "extract": { + "column": "credit_amount" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "terms-cc-plans", + "name": "terms-cc-plans", + "description": "STRABLE dataset 'terms-cc-plans'. Task: regression (wide). Target column: 'APR'. Original source: Consumer-Financial-Protection-Bureau.", + "field": [ + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Agreement_Date", + "name": "Agreement Date", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Agreement Date" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Institution_Name", + "name": "Institution Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Institution Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Plan_Name", + "name": "Plan Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Plan Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Availability_of_Credit_Card_Plan", + "name": "Availability of Credit Card Plan", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Availability of Credit Card Plan" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Location", + "name": "Location", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Location" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/APR", + "name": "APR", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "APR" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Index", + "name": "Index", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Index" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Variable_Rate_Index", + "name": "Variable Rate Index", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Variable Rate Index" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Grace_Period", + "name": "Grace Period", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Grace Period" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Annual_Fee", + "name": "Annual Fee", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Annual Fee" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Late_Fee", + "name": "Late Fee", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Late Fee" + } + } + }, + { + "@type": "cr:Field", + "@id": "terms-cc-plans/Telephone_Number_for_Consumers", + "name": "Telephone Number for Consumers", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-terms-cc-plans" + }, + "extract": { + "column": "Telephone Number for Consumers" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "tobacco-problem", + "name": "tobacco-problem", + "description": "STRABLE dataset 'tobacco-problem'. Task: m-classification (wide). Target column: 'number_health_problems'. Original source: fda.", + "field": [ + { + "@type": "cr:Field", + "@id": "tobacco-problem/date_submitted", + "name": "date_submitted", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tobacco-problem" + }, + "extract": { + "column": "date_submitted" + } + } + }, + { + "@type": "cr:Field", + "@id": "tobacco-problem/nonuser_affected", + "name": "nonuser_affected", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tobacco-problem" + }, + "extract": { + "column": "nonuser_affected" + } + } + }, + { + "@type": "cr:Field", + "@id": "tobacco-problem/number_tobacco_products", + "name": "number_tobacco_products", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-tobacco-problem" + }, + "extract": { + "column": "number_tobacco_products" + } + } + }, + { + "@type": "cr:Field", + "@id": "tobacco-problem/report_id", + "name": "report_id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-tobacco-problem" + }, + "extract": { + "column": "report_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "tobacco-problem/number_health_problems", + "name": "number_health_problems", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tobacco-problem" + }, + "extract": { + "column": "number_health_problems" + } + } + }, + { + "@type": "cr:Field", + "@id": "tobacco-problem/reported_product_problems", + "name": "reported_product_problems", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tobacco-problem" + }, + "extract": { + "column": "reported_product_problems" + } + } + }, + { + "@type": "cr:Field", + "@id": "tobacco-problem/tobacco_products", + "name": "tobacco_products", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-tobacco-problem" + }, + "extract": { + "column": "tobacco_products" + } + } + }, + { + "@type": "cr:Field", + "@id": "tobacco-problem/number_product_problems", + "name": "number_product_problems", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-tobacco-problem" + }, + "extract": { + "column": "number_product_problems" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "total-contributions-ibrd-ida-ifc", + "name": "total-contributions-ibrd-ida-ifc", + "description": "STRABLE dataset 'total-contributions-ibrd-ida-ifc'. Task: regression (wide). Target column: 'Total Contribution (USD)'. Original source: worldbankfinancesone.", + "field": [ + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Fund", + "name": "Fund", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Fund" + } + } + }, + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Trustee_Fund_Number", + "name": "Trustee Fund Number", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Trustee Fund Number" + } + } + }, + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Trustee_Fund_Name", + "name": "Trustee Fund Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Trustee Fund Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Donor_Code", + "name": "Donor Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Donor Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Donor_Name", + "name": "Donor Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Donor Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Donor_Agency", + "name": "Donor Agency", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Donor Agency" + } + } + }, + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Fiscal_Year_of_Agreement", + "name": "Fiscal Year of Agreement", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Fiscal Year of Agreement" + } + } + }, + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Contributions_Outstanding_USD", + "name": "Contributions Outstanding (USD)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Contributions Outstanding (USD)" + } + } + }, + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Total_Contribution_USD", + "name": "Total Contribution (USD)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Total Contribution (USD)" + } + } + }, + { + "@type": "cr:Field", + "@id": "total-contributions-ibrd-ida-ifc/Status", + "name": "Status", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-total-contributions-ibrd-ida-ifc" + }, + "extract": { + "column": "Status" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "transmission-lines", + "name": "transmission-lines", + "description": "STRABLE dataset 'transmission-lines'. Task: m-classification (wide). Target column: 'VOLT_CLASS'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "transmission-lines/OBJECTID", + "name": "OBJECTID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "OBJECTID" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/ID", + "name": "ID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/TYPE", + "name": "TYPE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "TYPE" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/STATUS", + "name": "STATUS", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "STATUS" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/SOURCEDATE", + "name": "SOURCEDATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "SOURCEDATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/VAL_METHOD", + "name": "VAL_METHOD", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "VAL_METHOD" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/VAL_DATE", + "name": "VAL_DATE", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "VAL_DATE" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/OWNER", + "name": "OWNER", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "OWNER" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/VOLT_CLASS", + "name": "VOLT_CLASS", + "description": "Target column. Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "VOLT_CLASS" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/INFERRED", + "name": "INFERRED", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "INFERRED" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-lines/Shape__Length", + "name": "Shape__Length", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-transmission-lines" + }, + "extract": { + "column": "Shape__Length" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "transmission-towers", + "name": "transmission-towers", + "description": "STRABLE dataset 'transmission-towers'. Task: regression (wide). Target column: 'SupStruc'. Original source: HIFLD.", + "field": [ + { + "@type": "cr:Field", + "@id": "transmission-towers/FID", + "name": "FID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "FID" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/UniqSysID", + "name": "UniqSysID", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "UniqSysID" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/Licensee", + "name": "Licensee", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "Licensee" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/Callsign", + "name": "Callsign", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "Callsign" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LocNum", + "name": "LocNum", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LocNum" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LatDeg", + "name": "LatDeg", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LatDeg" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LatMin", + "name": "LatMin", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LatMin" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LatSec", + "name": "LatSec", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LatSec" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LatDir", + "name": "LatDir", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LatDir" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LonDeg", + "name": "LonDeg", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LonDeg" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LonMin", + "name": "LonMin", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LonMin" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LonSec", + "name": "LonSec", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LonSec" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LonDir", + "name": "LonDir", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LonDir" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LocAdd", + "name": "LocAdd", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LocAdd" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LocCity", + "name": "LocCity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LocCity" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LocCounty", + "name": "LocCounty", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LocCounty" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/LocState", + "name": "LocState", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "LocState" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/Nepa", + "name": "Nepa", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "Nepa" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/QZone", + "name": "QZone", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "QZone" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/TowReg", + "name": "TowReg", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "TowReg" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/SupStruc", + "name": "SupStruc", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "SupStruc" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/StrucType", + "name": "StrucType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "StrucType" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/RSC", + "name": "RSC", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "RSC" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/latdec", + "name": "latdec", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "latdec" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/londec", + "name": "londec", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "londec" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/url", + "name": "url", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "url" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/x", + "name": "x", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "x" + } + } + }, + { + "@type": "cr:Field", + "@id": "transmission-towers/y", + "name": "y", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-transmission-towers" + }, + "extract": { + "column": "y" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "us-school-bus-fleet", + "name": "us-school-bus-fleet", + "description": "STRABLE dataset 'us-school-bus-fleet'. Task: regression (wide). Target column: 'Bus age'. Original source: world-resource-institute.", + "field": [ + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/State", + "name": "State", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "State" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/WRI_Bus_ID", + "name": "WRI Bus ID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "WRI Bus ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/State_District_ID", + "name": "State District ID", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "State District ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/WRI_Entity_ID", + "name": "WRI Entity ID", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "WRI Entity ID" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/LEAID", + "name": "LEAID", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "LEAID" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Name_of_school_district_or_primary_user", + "name": "Name of school district or primary user", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Name of school district or primary user" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Public_school_district_with_LEAID_or_other?", + "name": "Public school district (with LEAID) or other?", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Public school district (with LEAID) or other?" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Does_the_school_district_or_primary_user_own_the_bus?", + "name": "Does the school district or primary user own the bus?", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Does the school district or primary user own the bus?" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Third_party_involved", + "name": "Third party involved", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Third party involved" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Bus_Type", + "name": "Bus Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Bus Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Shell_Capacity", + "name": "Shell Capacity", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Shell Capacity" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Fuel_type", + "name": "Fuel type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Fuel type" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Model_year", + "name": "Model year", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Model year" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Bus_age", + "name": "Bus age", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Bus age" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/VIN", + "name": "VIN", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "VIN" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Body_manufacturer", + "name": "Body manufacturer", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Body manufacturer" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Manufacturer_not_otherwise_specified", + "name": "Manufacturer (not otherwise specified)", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Manufacturer (not otherwise specified)" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Model", + "name": "Model", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Model" + } + } + }, + { + "@type": "cr:Field", + "@id": "us-school-bus-fleet/Date_updated_or_last_inspected", + "name": "Date updated or last inspected", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-us-school-bus-fleet" + }, + "extract": { + "column": "Date updated or last inspected" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "vehicles", + "name": "vehicles", + "description": "STRABLE dataset 'vehicles'. Task: regression (wide). Target column: 'youSaveSpend'. Original source: fueleconomy.gov.", + "field": [ + { + "@type": "cr:Field", + "@id": "vehicles/co2A", + "name": "co2A", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "co2A" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/co2TailpipeAGpm", + "name": "co2TailpipeAGpm", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "co2TailpipeAGpm" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/drive", + "name": "drive", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "drive" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/engId", + "name": "engId", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "engId" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/eng_dscr", + "name": "eng_dscr", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "eng_dscr" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/fuelType", + "name": "fuelType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "fuelType" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/fuelType1", + "name": "fuelType1", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "fuelType1" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/hlv", + "name": "hlv", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "hlv" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/hpv", + "name": "hpv", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "hpv" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/id", + "name": "id", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "id" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/lv2", + "name": "lv2", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "lv2" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/lv4", + "name": "lv4", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "lv4" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/make", + "name": "make", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "make" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/model", + "name": "model", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "model" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/mpgData", + "name": "mpgData", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "mpgData" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/phevBlended", + "name": "phevBlended", + "description": "Original dtype: bool.", + "dataType": "sc:Boolean", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "phevBlended" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/pv2", + "name": "pv2", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "pv2" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/pv4", + "name": "pv4", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "pv4" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/trany", + "name": "trany", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "trany" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/VClass", + "name": "VClass", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "VClass" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/youSaveSpend", + "name": "youSaveSpend", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "youSaveSpend" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/baseModel", + "name": "baseModel", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "baseModel" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/atvType", + "name": "atvType", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "atvType" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/fuelType2", + "name": "fuelType2", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "fuelType2" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/evMotor", + "name": "evMotor", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "evMotor" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/mfrCode", + "name": "mfrCode", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "mfrCode" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/createdOn", + "name": "createdOn", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "createdOn" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/modifiedOn", + "name": "modifiedOn", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "modifiedOn" + } + } + }, + { + "@type": "cr:Field", + "@id": "vehicles/startStop", + "name": "startStop", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-vehicles" + }, + "extract": { + "column": "startStop" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "wine-dataset", + "name": "wine-dataset", + "description": "STRABLE dataset 'wine-dataset'. Task: regression (wide). Target column: 'Price'. Original source: majestic.co.uk.", + "field": [ + { + "@type": "cr:Field", + "@id": "wine-dataset/Title", + "name": "Title", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Title" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Description", + "name": "Description", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Description" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Price", + "name": "Price", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Price" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Capacity", + "name": "Capacity", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Capacity" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Grape", + "name": "Grape", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Grape" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Secondary_Grape_Varieties", + "name": "Secondary Grape Varieties", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Secondary Grape Varieties" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Closure", + "name": "Closure", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Closure" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Country", + "name": "Country", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Country" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Unit", + "name": "Unit", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Unit" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Characteristics", + "name": "Characteristics", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Characteristics" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Per_bottle___case___each", + "name": "Per bottle / case / each", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Per bottle / case / each" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Type", + "name": "Type", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Type" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/ABV", + "name": "ABV", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "ABV" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Region", + "name": "Region", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Region" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Style", + "name": "Style", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Style" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Vintage", + "name": "Vintage", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Vintage" + } + } + }, + { + "@type": "cr:Field", + "@id": "wine-dataset/Appellation", + "name": "Appellation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-wine-dataset" + }, + "extract": { + "column": "Appellation" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "workforce-demographics-wide", + "name": "workforce-demographics-wide", + "description": "STRABLE dataset 'workforce-demographics-wide'. Task: regression (wide). Target column: 'Female (%)'. Original source: HRSA.", + "field": [ + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Occupation_Code", + "name": "Occupation Code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Occupation Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Occupation_Name", + "name": "Occupation Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Occupation Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Geography_Code", + "name": "Geography Code", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Geography Code" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Geography_Abbreviation", + "name": "Geography Abbreviation", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Geography Abbreviation" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Geography_Name", + "name": "Geography Name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Geography Name" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Hispanic_or_Latino_%", + "name": "Hispanic or Latino (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Hispanic or Latino (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/White*_%", + "name": "White* (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "White* (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Black_or_African_American*_%", + "name": "Black or African American* (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Black or African American* (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Asian*_%", + "name": "Asian* (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Asian* (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Native_Hawaiian_or_Other_Pacific_Islander*_%", + "name": "Native Hawaiian or Other Pacific Islander* (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Native Hawaiian or Other Pacific Islander* (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/American_Indian_or_Alaska_Native*_%", + "name": "American Indian or Alaska Native* (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "American Indian or Alaska Native* (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Other_or_Multiple_Races*_%", + "name": "Other or Multiple Races* (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Other or Multiple Races* (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Less_than_30_Years_Old_%", + "name": "Less than 30 Years Old (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Less than 30 Years Old (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/30_to_39_Years_Old_%", + "name": "30 to 39 Years Old (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "30 to 39 Years Old (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/40_to_49_Years_Old_%", + "name": "40 to 49 Years Old (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "40 to 49 Years Old (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/50_to_59_Years_Old_%", + "name": "50 to 59 Years Old (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "50 to 59 Years Old (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/60_or_Older_%", + "name": "60 or Older (%)", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "60 or Older (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Female_%", + "name": "Female (%)", + "description": "Target column. Original dtype: float.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Female (%)" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Missing_or_Suppressed_Race_Ethnicity_Data_Comment", + "name": "Missing or Suppressed Race/Ethnicity Data Comment", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Missing or Suppressed Race/Ethnicity Data Comment" + } + } + }, + { + "@type": "cr:Field", + "@id": "workforce-demographics-wide/Missing_or_Suppressed_Age_Data_Comment", + "name": "Missing or Suppressed Age Data Comment", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-workforce-demographics-wide" + }, + "extract": { + "column": "Missing or Suppressed Age Data Comment" + } + } + } + ] + }, + { + "@type": "cr:RecordSet", + "@id": "yelp_business", + "name": "yelp_business", + "description": "STRABLE dataset 'yelp_business'. Task: m-classification (wide). Target column: 'stars'. Original source: Yelp Open Dataset.", + "field": [ + { + "@type": "cr:Field", + "@id": "yelp_business/business_id", + "name": "business_id", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "business_id" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/name", + "name": "name", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "name" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/address", + "name": "address", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "address" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/city", + "name": "city", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "city" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/state", + "name": "state", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "state" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/postal_code", + "name": "postal_code", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "postal_code" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/latitude", + "name": "latitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "latitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/longitude", + "name": "longitude", + "description": "Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "longitude" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/stars", + "name": "stars", + "description": "Target column. Original dtype: double.", + "dataType": "cr:Float64", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "stars" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/review_count", + "name": "review_count", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "review_count" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/is_open", + "name": "is_open", + "description": "Original dtype: int64.", + "dataType": "cr:Int64", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "is_open" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/attributes", + "name": "attributes", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "attributes" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/categories", + "name": "categories", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "categories" + } + } + }, + { + "@type": "cr:Field", + "@id": "yelp_business/hours", + "name": "hours", + "description": "Original dtype: string.", + "dataType": "sc:Text", + "source": { + "fileObject": { + "@id": "parquet-yelp_business" + }, + "extract": { + "column": "hours" + } + } + } + ] + } + ] +} \ No newline at end of file