ORE Studio 0.0.4
Loading...
Searching...
No Matches
synthetic_catalog.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 *
3 * Copyright (C) 2025 Marco Craveiro <marco.craveiro@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 3 of the License, or (at your option) any later
8 * version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 */
20#ifndef ORES_SYNTHETIC_DOMAIN_SYNTHETIC_CATALOG_HPP
21#define ORES_SYNTHETIC_DOMAIN_SYNTHETIC_CATALOG_HPP
22
23#include <string>
24#include <vector>
25#include "ores.dq/domain/catalog.hpp"
26#include "ores.dq/domain/dataset.hpp"
27#include "ores.dq/domain/subject_area.hpp"
28#include "ores.dq/domain/data_domain.hpp"
29#include "ores.dq/domain/origin_dimension.hpp"
30#include "ores.dq/domain/nature_dimension.hpp"
31#include "ores.dq/domain/treatment_dimension.hpp"
32#include "ores.iam/domain/account.hpp"
33
34namespace ores::synthetic::domain {
35
54struct synthetic_catalog final {
61 std::uint64_t seed = 0;
62
68 std::vector<iam::domain::account> accounts;
69
73 std::vector<dq::domain::catalog> catalogs;
74
78 std::vector<dq::domain::data_domain> data_domains;
79
83 std::vector<dq::domain::subject_area> subject_areas;
84
88 std::vector<dq::domain::origin_dimension> origin_dimensions;
89
93 std::vector<dq::domain::nature_dimension> nature_dimensions;
94
98 std::vector<dq::domain::treatment_dimension> treatment_dimensions;
99
103 std::vector<dq::domain::dataset> datasets;
104
112 std::vector<std::string> dependencies;
113};
114
115}
116
117#endif
A coherent catalog of synthetic data with proper relationships.
Definition synthetic_catalog.hpp:54
std::vector< dq::domain::nature_dimension > nature_dimensions
Nature dimensions for data classification.
Definition synthetic_catalog.hpp:93
std::vector< dq::domain::origin_dimension > origin_dimensions
Origin dimensions for data lineage.
Definition synthetic_catalog.hpp:88
std::vector< dq::domain::treatment_dimension > treatment_dimensions
Treatment dimensions for processing classification.
Definition synthetic_catalog.hpp:98
std::vector< dq::domain::catalog > catalogs
DQ catalogs for organizing datasets.
Definition synthetic_catalog.hpp:73
std::uint64_t seed
The seed used to generate this catalog.
Definition synthetic_catalog.hpp:61
std::vector< std::string > dependencies
Names of catalogs this synthetic catalog depends on.
Definition synthetic_catalog.hpp:112
std::vector< iam::domain::account > accounts
IAM accounts for user references.
Definition synthetic_catalog.hpp:68
std::vector< dq::domain::data_domain > data_domains
Data domains for categorization.
Definition synthetic_catalog.hpp:78
std::vector< dq::domain::subject_area > subject_areas
Subject areas within data domains.
Definition synthetic_catalog.hpp:83
std::vector< dq::domain::dataset > datasets
DQ datasets with proper references to other entities.
Definition synthetic_catalog.hpp:103