#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct Book<'a> {
#[serde(borrow)]
pub authors: jacquard_common::CowStr<'a>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub book_progress: std::option::Option<crate::buzz_bookhive::BookProgress<'a>>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub cover: std::option::Option<jacquard_common::types::blob::BlobRef<'a>>,
pub created_at: jacquard_common::types::string::Datetime,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
pub finished_at: std::option::Option<jacquard_common::types::string::Datetime>,
#[serde(borrow)]
pub hive_id: jacquard_common::CowStr<'a>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub review: std::option::Option<jacquard_common::CowStr<'a>>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
pub stars: std::option::Option<i64>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
pub started_at: std::option::Option<jacquard_common::types::string::Datetime>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub status: std::option::Option<BookStatus<'a>>,
#[serde(borrow)]
pub title: jacquard_common::CowStr<'a>,
}
pub mod book_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Authors;
type CreatedAt;
type Title;
type HiveId;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Authors = Unset;
type CreatedAt = Unset;
type Title = Unset;
type HiveId = Unset;
}
pub struct SetAuthors<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAuthors<S> {}
impl<S: State> State for SetAuthors<S> {
type Authors = Set<members::authors>;
type CreatedAt = S::CreatedAt;
type Title = S::Title;
type HiveId = S::HiveId;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type Authors = S::Authors;
type CreatedAt = Set<members::created_at>;
type Title = S::Title;
type HiveId = S::HiveId;
}
pub struct SetTitle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTitle<S> {}
impl<S: State> State for SetTitle<S> {
type Authors = S::Authors;
type CreatedAt = S::CreatedAt;
type Title = Set<members::title>;
type HiveId = S::HiveId;
}
pub struct SetHiveId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetHiveId<S> {}
impl<S: State> State for SetHiveId<S> {
type Authors = S::Authors;
type CreatedAt = S::CreatedAt;
type Title = S::Title;
type HiveId = Set<members::hive_id>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct authors(());
pub struct created_at(());
pub struct title(());
pub struct hive_id(());
}
}
pub struct BookBuilder<'a, S: book_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<crate::buzz_bookhive::BookProgress<'a>>,
::core::option::Option<jacquard_common::types::blob::BlobRef<'a>>,
::core::option::Option<jacquard_common::types::string::Datetime>,
::core::option::Option<jacquard_common::types::string::Datetime>,
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<i64>,
::core::option::Option<jacquard_common::types::string::Datetime>,
::core::option::Option<BookStatus<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> Book<'a> {
pub fn new() -> BookBuilder<'a, book_state::Empty> {
BookBuilder::new()
}
}
impl<'a> BookBuilder<'a, book_state::Empty> {
pub fn new() -> Self {
BookBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::Authors: book_state::IsUnset,
{
pub fn authors(
mut self,
value: impl Into<jacquard_common::CowStr<'a>>,
) -> BookBuilder<'a, book_state::SetAuthors<S>> {
self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
BookBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn book_progress(
mut self,
value: impl Into<Option<crate::buzz_bookhive::BookProgress<'a>>>,
) -> Self {
self.__unsafe_private_named.1 = value.into();
self
}
pub fn maybe_book_progress(
mut self,
value: Option<crate::buzz_bookhive::BookProgress<'a>>,
) -> Self {
self.__unsafe_private_named.1 = value;
self
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn cover(
mut self,
value: impl Into<Option<jacquard_common::types::blob::BlobRef<'a>>>,
) -> Self {
self.__unsafe_private_named.2 = value.into();
self
}
pub fn maybe_cover(
mut self,
value: Option<jacquard_common::types::blob::BlobRef<'a>>,
) -> Self {
self.__unsafe_private_named.2 = value;
self
}
}
impl<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::CreatedAt: book_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<jacquard_common::types::string::Datetime>,
) -> BookBuilder<'a, book_state::SetCreatedAt<S>> {
self.__unsafe_private_named.3 = ::core::option::Option::Some(value.into());
BookBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn finished_at(
mut self,
value: impl Into<Option<jacquard_common::types::string::Datetime>>,
) -> Self {
self.__unsafe_private_named.4 = value.into();
self
}
pub fn maybe_finished_at(
mut self,
value: Option<jacquard_common::types::string::Datetime>,
) -> Self {
self.__unsafe_private_named.4 = value;
self
}
}
impl<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::HiveId: book_state::IsUnset,
{
pub fn hive_id(
mut self,
value: impl Into<jacquard_common::CowStr<'a>>,
) -> BookBuilder<'a, book_state::SetHiveId<S>> {
self.__unsafe_private_named.5 = ::core::option::Option::Some(value.into());
BookBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn review(
mut self,
value: impl Into<Option<jacquard_common::CowStr<'a>>>,
) -> Self {
self.__unsafe_private_named.6 = value.into();
self
}
pub fn maybe_review(mut self, value: Option<jacquard_common::CowStr<'a>>) -> Self {
self.__unsafe_private_named.6 = value;
self
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn stars(mut self, value: impl Into<Option<i64>>) -> Self {
self.__unsafe_private_named.7 = value.into();
self
}
pub fn maybe_stars(mut self, value: Option<i64>) -> Self {
self.__unsafe_private_named.7 = value;
self
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn started_at(
mut self,
value: impl Into<Option<jacquard_common::types::string::Datetime>>,
) -> Self {
self.__unsafe_private_named.8 = value.into();
self
}
pub fn maybe_started_at(
mut self,
value: Option<jacquard_common::types::string::Datetime>,
) -> Self {
self.__unsafe_private_named.8 = value;
self
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn status(mut self, value: impl Into<Option<BookStatus<'a>>>) -> Self {
self.__unsafe_private_named.9 = value.into();
self
}
pub fn maybe_status(mut self, value: Option<BookStatus<'a>>) -> Self {
self.__unsafe_private_named.9 = value;
self
}
}
impl<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::Title: book_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<jacquard_common::CowStr<'a>>,
) -> BookBuilder<'a, book_state::SetTitle<S>> {
self.__unsafe_private_named.10 = ::core::option::Option::Some(value.into());
BookBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::Authors: book_state::IsSet,
S::CreatedAt: book_state::IsSet,
S::Title: book_state::IsSet,
S::HiveId: book_state::IsSet,
{
pub fn build(self) -> Book<'a> {
Book {
authors: self.__unsafe_private_named.0.unwrap(),
book_progress: self.__unsafe_private_named.1,
cover: self.__unsafe_private_named.2,
created_at: self.__unsafe_private_named.3.unwrap(),
finished_at: self.__unsafe_private_named.4,
hive_id: self.__unsafe_private_named.5.unwrap(),
review: self.__unsafe_private_named.6,
stars: self.__unsafe_private_named.7,
started_at: self.__unsafe_private_named.8,
status: self.__unsafe_private_named.9,
title: self.__unsafe_private_named.10.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: std::collections::BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Book<'a> {
Book {
authors: self.__unsafe_private_named.0.unwrap(),
book_progress: self.__unsafe_private_named.1,
cover: self.__unsafe_private_named.2,
created_at: self.__unsafe_private_named.3.unwrap(),
finished_at: self.__unsafe_private_named.4,
hive_id: self.__unsafe_private_named.5.unwrap(),
review: self.__unsafe_private_named.6,
stars: self.__unsafe_private_named.7,
started_at: self.__unsafe_private_named.8,
status: self.__unsafe_private_named.9,
title: self.__unsafe_private_named.10.unwrap(),
extra_data: Some(extra_data),
}
}
}
impl<'a> Book<'a> {
pub fn uri(
uri: impl Into<jacquard_common::CowStr<'a>>,
) -> Result<
jacquard_common::types::uri::RecordUri<'a, BookRecord>,
jacquard_common::types::uri::UriError,
> {
jacquard_common::types::uri::RecordUri::try_from_uri(
jacquard_common::types::string::AtUri::new_cow(uri.into())?,
)
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum BookStatus<'a> {
Finished,
Reading,
WantToRead,
Abandoned,
Owned,
Other(jacquard_common::CowStr<'a>),
}
impl<'a> BookStatus<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Finished => "buzz.bookhive.defs#finished",
Self::Reading => "buzz.bookhive.defs#reading",
Self::WantToRead => "buzz.bookhive.defs#wantToRead",
Self::Abandoned => "buzz.bookhive.defs#abandoned",
Self::Owned => "buzz.bookhive.defs#owned",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for BookStatus<'a> {
fn from(s: &'a str) -> Self {
match s {
"buzz.bookhive.defs#finished" => Self::Finished,
"buzz.bookhive.defs#reading" => Self::Reading,
"buzz.bookhive.defs#wantToRead" => Self::WantToRead,
"buzz.bookhive.defs#abandoned" => Self::Abandoned,
"buzz.bookhive.defs#owned" => Self::Owned,
_ => Self::Other(jacquard_common::CowStr::from(s)),
}
}
}
impl<'a> From<String> for BookStatus<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"buzz.bookhive.defs#finished" => Self::Finished,
"buzz.bookhive.defs#reading" => Self::Reading,
"buzz.bookhive.defs#wantToRead" => Self::WantToRead,
"buzz.bookhive.defs#abandoned" => Self::Abandoned,
"buzz.bookhive.defs#owned" => Self::Owned,
_ => Self::Other(jacquard_common::CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for BookStatus<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for BookStatus<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for BookStatus<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for BookStatus<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for BookStatus<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for BookStatus<'_> {
type Output = BookStatus<'static>;
fn into_static(self) -> Self::Output {
match self {
BookStatus::Finished => BookStatus::Finished,
BookStatus::Reading => BookStatus::Reading,
BookStatus::WantToRead => BookStatus::WantToRead,
BookStatus::Abandoned => BookStatus::Abandoned,
BookStatus::Owned => BookStatus::Owned,
BookStatus::Other(v) => BookStatus::Other(v.into_static()),
}
}
}
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct BookGetRecordOutput<'a> {
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub cid: std::option::Option<jacquard_common::types::string::Cid<'a>>,
#[serde(borrow)]
pub uri: jacquard_common::types::string::AtUri<'a>,
#[serde(borrow)]
pub value: Book<'a>,
}
impl From<BookGetRecordOutput<'_>> for Book<'_> {
fn from(output: BookGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl jacquard_common::types::collection::Collection for Book<'_> {
const NSID: &'static str = "buzz.bookhive.book";
type Record = BookRecord;
}
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct BookRecord;
impl jacquard_common::xrpc::XrpcResp for BookRecord {
const NSID: &'static str = "buzz.bookhive.book";
const ENCODING: &'static str = "application/json";
type Output<'de> = BookGetRecordOutput<'de>;
type Err<'de> = jacquard_common::types::collection::RecordError<'de>;
}
impl jacquard_common::types::collection::Collection for BookRecord {
const NSID: &'static str = "buzz.bookhive.book";
type Record = BookRecord;
}
impl<'a> ::jacquard_lexicon::schema::LexiconSchema for Book<'a> {
fn nsid() -> &'static str {
"buzz.bookhive.book"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> {
lexicon_doc_buzz_bookhive_book()
}
fn validate(
&self,
) -> ::core::result::Result<(), ::jacquard_lexicon::validation::ConstraintError> {
{
let value = &self.authors;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2048usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"authors",
),
max: 2048usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.authors;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MinLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"authors",
),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.cover {
{
let size = value.blob().size;
if size > 1000000usize {
return Err(::jacquard_lexicon::validation::ConstraintError::BlobTooLarge {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"cover",
),
max: 1000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.cover {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/png", "image/jpeg"];
let matched = accepted
.iter()
.any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix)
&& mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(::jacquard_lexicon::validation::ConstraintError::BlobMimeTypeNotAccepted {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"cover",
),
accepted: vec![
"image/png".to_string(), "image/jpeg".to_string()
],
actual: mime.to_string(),
});
}
}
}
if let Some(ref value) = self.review {
{
let count = jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation::graphemes(
value.as_ref(),
true,
)
.count();
if count > 15000usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MaxGraphemes {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"review",
),
max: 15000usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.stars {
if *value > 10i64 {
return Err(::jacquard_lexicon::validation::ConstraintError::Maximum {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"stars",
),
max: 10i64,
actual: *value,
});
}
}
if let Some(ref value) = self.stars {
if *value < 1i64 {
return Err(::jacquard_lexicon::validation::ConstraintError::Minimum {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"stars",
),
min: 1i64,
actual: *value,
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"title",
),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MinLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"title",
),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
fn lexicon_doc_buzz_bookhive_book() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> {
::jacquard_lexicon::lexicon::LexiconDoc {
lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1,
id: ::jacquard_common::CowStr::new_static("buzz.bookhive.book"),
revision: None,
description: None,
defs: {
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static("main"),
::jacquard_lexicon::lexicon::LexUserType::Record(::jacquard_lexicon::lexicon::LexRecord {
description: Some(
::jacquard_common::CowStr::new_static(
"A book in the user's library",
),
),
key: Some(::jacquard_common::CowStr::new_static("tid")),
record: ::jacquard_lexicon::lexicon::LexRecordRecord::Object(::jacquard_lexicon::lexicon::LexObject {
description: None,
required: Some(
vec![
::jacquard_common::deps::smol_str::SmolStr::new_static("title"),
::jacquard_common::deps::smol_str::SmolStr::new_static("authors"),
::jacquard_common::deps::smol_str::SmolStr::new_static("hiveId"),
::jacquard_common::deps::smol_str::SmolStr::new_static("createdAt")
],
),
nullable: None,
properties: {
#[allow(unused_mut)]
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"authors",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"The authors of the book (tab separated)",
),
),
format: None,
default: None,
min_length: Some(1usize),
max_length: Some(2048usize),
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"bookProgress",
),
::jacquard_lexicon::lexicon::LexObjectProperty::Ref(::jacquard_lexicon::lexicon::LexRef {
description: None,
r#ref: ::jacquard_common::CowStr::new_static(
"buzz.bookhive.defs#bookProgress",
),
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"cover",
),
::jacquard_lexicon::lexicon::LexObjectProperty::Blob(::jacquard_lexicon::lexicon::LexBlob {
description: None,
accept: None,
max_size: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"createdAt",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: None,
format: Some(
::jacquard_lexicon::lexicon::LexStringFormat::Datetime,
),
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"finishedAt",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"The date the user finished reading the book",
),
),
format: Some(
::jacquard_lexicon::lexicon::LexStringFormat::Datetime,
),
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"hiveId",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"The book's hive id, used to correlate user's books with the hive",
),
),
format: None,
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"review",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static("The book's review"),
),
format: None,
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: Some(15000usize),
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"stars",
),
::jacquard_lexicon::lexicon::LexObjectProperty::Integer(::jacquard_lexicon::lexicon::LexInteger {
description: None,
default: None,
minimum: Some(1i64),
maximum: Some(10i64),
r#enum: None,
r#const: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"startedAt",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"The date the user started reading the book",
),
),
format: Some(
::jacquard_lexicon::lexicon::LexStringFormat::Datetime,
),
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"status",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: None,
format: None,
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"title",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"The title of the book",
),
),
format: None,
default: None,
min_length: Some(1usize),
max_length: Some(512usize),
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map
},
}),
}),
);
map
},
}
}