pub struct Ownership {Show 28 fields
pub id: String,
pub schema: String,
pub aleph_url: Option<Vec<String>>,
pub asset: Vec<String>,
pub date: Option<Vec<String>>,
pub description: Option<Vec<String>>,
pub end_date: Option<Vec<String>>,
pub index_text: Option<Vec<String>>,
pub legal_basis: Option<Vec<String>>,
pub modified_at: Option<Vec<String>>,
pub names_mentioned: Option<Vec<String>>,
pub owner: Vec<String>,
pub ownership_type: Option<Vec<String>>,
pub percentage: Option<Vec<String>>,
pub proof: Option<Vec<String>>,
pub publisher: Option<Vec<String>>,
pub publisher_url: Option<Vec<String>>,
pub record_id: Option<Vec<String>>,
pub retrieved_at: Option<Vec<String>>,
pub role: Option<Vec<String>>,
pub shares_count: Option<Vec<String>>,
pub shares_currency: Option<Vec<String>>,
pub shares_type: Option<Vec<String>>,
pub shares_value: Option<Vec<String>>,
pub source_url: Option<Vec<String>>,
pub start_date: Option<Vec<String>>,
pub status: Option<Vec<String>>,
pub summary: Option<Vec<String>>,
}Expand description
FTM Schema: Ownership
Fields§
§id: String§schema: String§aleph_url: Option<Vec<String>>Property: Aleph URL
asset: Vec<String>Property: Asset
date: Option<Vec<String>>Property: Date
description: Option<Vec<String>>Property: Description
end_date: Option<Vec<String>>Property: End date
index_text: Option<Vec<String>>Property: Index text
legal_basis: Option<Vec<String>>Property: Legal basis
modified_at: Option<Vec<String>>Property: Modified on
names_mentioned: Option<Vec<String>>Property: Detected names
owner: Vec<String>Property: Owner
ownership_type: Option<Vec<String>>Property: Type of ownership
percentage: Option<Vec<String>>Property: Percentage held
proof: Option<Vec<String>>Property: Source document
publisher: Option<Vec<String>>Property: Publishing source
publisher_url: Option<Vec<String>>Property: Publishing source URL
record_id: Option<Vec<String>>Property: Record ID
retrieved_at: Option<Vec<String>>Property: Retrieved on
role: Option<Vec<String>>Property: Role
Property: Number of shares
Property: Currency of shares
Property: Type of shares
Property: Value of shares
source_url: Option<Vec<String>>Property: Source link
start_date: Option<Vec<String>>Property: Start date
status: Option<Vec<String>>Property: Status
summary: Option<Vec<String>>Property: Summary
Implementations§
Source§impl Ownership
impl Ownership
Sourcepub fn builder() -> OwnershipBuilder
pub fn builder() -> OwnershipBuilder
Create an instance of Ownership using the builder syntax
Source§impl Ownership
impl Ownership
Sourcepub fn new(id: impl Into<String>) -> Self
👎Deprecated: Use the builder() method instead to ensure required fields are set
pub fn new(id: impl Into<String>) -> Self
Create a new entity with the given ID
Sourcepub fn schema_name() -> &'static str
pub fn schema_name() -> &'static str
Get the schema name
Sourcepub fn to_ftm_json(&self) -> Result<String, Error>
pub fn to_ftm_json(&self) -> Result<String, Error>
Serialize to standard FTM nested JSON format
Produces {"id": "...", "schema": "...", "properties": {...}}