diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-09 23:24:29 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-09 23:24:29 -0700 |
commit | 4e89ffc029d42bcf374cfe9cc6aa6b1d35ea4632 (patch) | |
tree | 7e7cfb3a178019c276a9e2a5bf380824a232c011 /rust/fatcat-api-spec/src | |
parent | dca71aa9b278832262725147d28334141a6da827 (diff) | |
download | fatcat-4e89ffc029d42bcf374cfe9cc6aa6b1d35ea4632.tar.gz fatcat-4e89ffc029d42bcf374cfe9cc6aa6b1d35ea4632.zip |
rust impl cdx extra_json removal
Diffstat (limited to 'rust/fatcat-api-spec/src')
-rw-r--r-- | rust/fatcat-api-spec/src/models.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/rust/fatcat-api-spec/src/models.rs b/rust/fatcat-api-spec/src/models.rs index cd418d99..f4ac0e3e 100644 --- a/rust/fatcat-api-spec/src/models.rs +++ b/rust/fatcat-api-spec/src/models.rs @@ -1193,10 +1193,6 @@ pub struct WebcaptureEntityCdx { #[serde(rename = "sha256")] #[serde(skip_serializing_if = "Option::is_none")] pub sha256: Option<String>, - - #[serde(rename = "extra")] - #[serde(skip_serializing_if = "Option::is_none")] - pub extra: Option<serde_json::Value>, } impl WebcaptureEntityCdx { @@ -1210,7 +1206,6 @@ impl WebcaptureEntityCdx { size_bytes: None, sha1: sha1, sha256: None, - extra: None, } } } |