data-modelling-core 2.4.0

Core SDK library for model operations across platforms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
//! ODPS (Open Data Product Standard) models
//!
//! Defines structures for ODPS Data Products that link to ODCS Tables.

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use std::str::FromStr;

use super::tag::Tag;

/// ODPS API version
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum ODPSApiVersion {
    #[serde(rename = "v0.9.0")]
    V0_9_0,
    #[serde(rename = "v1.0.0")]
    V1_0_0,
}

/// ODPS status
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum ODPSStatus {
    #[serde(rename = "proposed")]
    Proposed,
    #[serde(rename = "draft")]
    Draft,
    #[serde(rename = "active")]
    Active,
    #[serde(rename = "deprecated")]
    Deprecated,
    #[serde(rename = "retired")]
    Retired,
}

/// Authoritative definition
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSAuthoritativeDefinition {
    /// Type of definition
    pub r#type: String,
    /// URL to the authority
    pub url: String,
    /// Optional description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
}

/// Custom property
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSCustomProperty {
    /// Property name
    pub property: String,
    /// Property value
    pub value: serde_json::Value,
    /// Optional description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
}

/// ODPS description
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSDescription {
    /// Intended purpose
    #[serde(skip_serializing_if = "Option::is_none")]
    pub purpose: Option<String>,
    /// Limitations
    #[serde(skip_serializing_if = "Option::is_none")]
    pub limitations: Option<String>,
    /// Recommended usage
    #[serde(skip_serializing_if = "Option::is_none")]
    pub usage: Option<String>,
    /// Authoritative definitions
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
    /// Custom properties
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_properties: Option<Vec<ODPSCustomProperty>>,
}

/// Input port
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSInputPort {
    /// Port name
    pub name: String,
    /// Port version
    pub version: String,
    /// Contract ID (links to ODCS Table)
    pub contract_id: String,
    /// Tags
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "deserialize_tags"
    )]
    pub tags: Vec<Tag>,
    /// Custom properties
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_properties: Option<Vec<ODPSCustomProperty>>,
    /// Authoritative definitions
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
}

/// SBOM (Software Bill of Materials)
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSSBOM {
    /// SBOM type
    #[serde(skip_serializing_if = "Option::is_none")]
    pub r#type: Option<String>,
    /// URL to SBOM
    pub url: String,
}

/// Input contract dependency
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSInputContract {
    /// Contract ID
    pub id: String,
    /// Contract version
    pub version: String,
}

/// Output port
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSOutputPort {
    /// Port name
    pub name: String,
    /// Port description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Port type
    #[serde(skip_serializing_if = "Option::is_none")]
    pub r#type: Option<String>,
    /// Port version
    pub version: String,
    /// Contract ID (links to ODCS Table)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub contract_id: Option<String>,
    /// SBOM array
    #[serde(skip_serializing_if = "Option::is_none")]
    pub sbom: Option<Vec<ODPSSBOM>>,
    /// Input contracts (dependencies)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub input_contracts: Option<Vec<ODPSInputContract>>,
    /// Tags
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "deserialize_tags"
    )]
    pub tags: Vec<Tag>,
    /// Custom properties
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_properties: Option<Vec<ODPSCustomProperty>>,
    /// Authoritative definitions
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
}

/// Management port
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSManagementPort {
    /// Port name
    pub name: String,
    /// Content type
    pub content: String,
    /// Port type (rest or topic)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub r#type: Option<String>,
    /// URL to access endpoint
    #[serde(skip_serializing_if = "Option::is_none")]
    pub url: Option<String>,
    /// Channel name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub channel: Option<String>,
    /// Description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Tags
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "deserialize_tags"
    )]
    pub tags: Vec<Tag>,
    /// Custom properties
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_properties: Option<Vec<ODPSCustomProperty>>,
    /// Authoritative definitions
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
}

/// Support channel
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSSupport {
    /// Channel name
    pub channel: String,
    /// Access URL
    pub url: String,
    /// Description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Tool name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tool: Option<String>,
    /// Scope
    #[serde(skip_serializing_if = "Option::is_none")]
    pub scope: Option<String>,
    /// Invitation URL
    #[serde(skip_serializing_if = "Option::is_none")]
    pub invitation_url: Option<String>,
    /// Tags
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "deserialize_tags"
    )]
    pub tags: Vec<Tag>,
    /// Custom properties
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_properties: Option<Vec<ODPSCustomProperty>>,
    /// Authoritative definitions
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
}

/// Team member
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSTeamMember {
    /// Username or email
    pub username: String,
    /// Member name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Role
    #[serde(skip_serializing_if = "Option::is_none")]
    pub role: Option<String>,
    /// Date joined
    #[serde(skip_serializing_if = "Option::is_none")]
    pub date_in: Option<String>,
    /// Date left
    #[serde(skip_serializing_if = "Option::is_none")]
    pub date_out: Option<String>,
    /// Replaced by username
    #[serde(skip_serializing_if = "Option::is_none")]
    pub replaced_by_username: Option<String>,
    /// Tags
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "deserialize_tags"
    )]
    pub tags: Vec<Tag>,
    /// Custom properties
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_properties: Option<Vec<ODPSCustomProperty>>,
    /// Authoritative definitions
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
}

/// Team
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSTeam {
    /// Team name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Team description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    /// Team members
    #[serde(skip_serializing_if = "Option::is_none")]
    pub members: Option<Vec<ODPSTeamMember>>,
    /// Tags
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "deserialize_tags"
    )]
    pub tags: Vec<Tag>,
    /// Custom properties
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_properties: Option<Vec<ODPSCustomProperty>>,
    /// Authoritative definitions
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
}

/// Data Product - main structure
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ODPSDataProduct {
    /// API version
    pub api_version: String,
    /// Kind (always "DataProduct")
    pub kind: String,
    /// Unique identifier
    pub id: String,
    /// Product name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Product version
    #[serde(skip_serializing_if = "Option::is_none")]
    pub version: Option<String>,
    /// Status
    pub status: ODPSStatus,
    /// Business domain
    #[serde(skip_serializing_if = "Option::is_none")]
    pub domain: Option<String>,
    /// Tenant/organization
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tenant: Option<String>,
    /// Authoritative definitions
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
    /// Description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<ODPSDescription>,
    /// Custom properties
    #[serde(skip_serializing_if = "Option::is_none")]
    pub custom_properties: Option<Vec<ODPSCustomProperty>>,
    /// Tags
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "deserialize_tags"
    )]
    pub tags: Vec<Tag>,
    /// Input ports
    #[serde(skip_serializing_if = "Option::is_none")]
    pub input_ports: Option<Vec<ODPSInputPort>>,
    /// Output ports
    #[serde(skip_serializing_if = "Option::is_none")]
    pub output_ports: Option<Vec<ODPSOutputPort>>,
    /// Management ports
    #[serde(skip_serializing_if = "Option::is_none")]
    pub management_ports: Option<Vec<ODPSManagementPort>>,
    /// Support channels
    #[serde(skip_serializing_if = "Option::is_none")]
    pub support: Option<Vec<ODPSSupport>>,
    /// Team
    #[serde(skip_serializing_if = "Option::is_none")]
    pub team: Option<ODPSTeam>,
    /// Product creation timestamp
    #[serde(skip_serializing_if = "Option::is_none")]
    pub product_created_ts: Option<String>,
    /// Creation timestamp (internal)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_at: Option<DateTime<Utc>>,
    /// Last update timestamp (internal)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub updated_at: Option<DateTime<Utc>>,
}

/// Deserialize tags with backward compatibility (supports Vec<String> and Vec<Tag>)
fn deserialize_tags<'de, D>(deserializer: D) -> Result<Vec<Tag>, D::Error>
where
    D: serde::Deserializer<'de>,
{
    // Accept either Vec<String> (backward compatibility) or Vec<Tag>
    struct TagVisitor;

    impl<'de> serde::de::Visitor<'de> for TagVisitor {
        type Value = Vec<Tag>;

        fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
            formatter.write_str("a vector of tags (strings or Tag objects)")
        }

        fn visit_seq<A>(self, mut seq: A) -> Result<Self::Value, A::Error>
        where
            A: serde::de::SeqAccess<'de>,
        {
            let mut tags = Vec::new();
            while let Some(item) = seq.next_element::<serde_json::Value>()? {
                match item {
                    serde_json::Value::String(s) => {
                        // Backward compatibility: parse string as Tag
                        if let Ok(tag) = Tag::from_str(&s) {
                            tags.push(tag);
                        }
                    }
                    _ => {
                        // Try to deserialize as Tag directly (if it's a string in JSON)
                        if let serde_json::Value::String(s) = item
                            && let Ok(tag) = Tag::from_str(&s)
                        {
                            tags.push(tag);
                        }
                    }
                }
            }
            Ok(tags)
        }
    }

    deserializer.deserialize_seq(TagVisitor)
}