#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::blob::BlobRef;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime, Language, UriValue};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::com_atproto::repo::strong_ref::StrongRef;
use crate::ai_syui::log::post;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "ai.syui.log.post",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Post<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub bsky_post_ref: Option<StrongRef<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub content: Option<post::Markdown<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cover_image: Option<BlobRef<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub langs: Option<Vec<Language>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub parent: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub path: Option<S>,
pub published_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub root: Option<AtUri<S>>,
pub site: UriValue<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tags: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub text_content: Option<S>,
pub title: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub translations: Option<post::TranslationMap<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PostGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Post<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Markdown<S: BosStr = DefaultStr> {
pub text: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Translation<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub content: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct TranslationMap<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub en: Option<post::Translation<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub ja: Option<post::Translation<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> Post<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, PostRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PostRecord;
impl XrpcResp for PostRecord {
const NSID: &'static str = "ai.syui.log.post";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = PostGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<PostGetRecordOutput<S>> for Post<S> {
fn from(output: PostGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Post<S> {
const NSID: &'static str = "ai.syui.log.post";
type Record = PostRecord;
}
impl Collection for PostRecord {
const NSID: &'static str = "ai.syui.log.post";
type Record = PostRecord;
}
impl<S: BosStr> LexiconSchema for Post<S> {
fn nsid() -> &'static str {
"ai.syui.log.post"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_log_post()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.cover_image {
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("cover_image"),
max: 1000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.cover_image {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/*"];
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(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("cover_image"),
accepted: vec!["image/*".to_string()],
actual: mime.to_string(),
});
}
}
}
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 30000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 30000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 3000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("description"),
max: 3000usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.langs {
#[allow(unused_comparisons)]
if value.len() > 3usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("langs"),
max: 3usize,
actual: value.len(),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 5000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 5000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 500usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("title"),
max: 500usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for Markdown<S> {
fn nsid() -> &'static str {
"ai.syui.log.post"
}
fn def_name() -> &'static str {
"markdown"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_log_post()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.text;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("text"),
max: 1000000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.text;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 100000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("text"),
max: 100000usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for Translation<S> {
fn nsid() -> &'static str {
"ai.syui.log.post"
}
fn def_name() -> &'static str {
"translation"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_log_post()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.content {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("content"),
max: 1000000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.content {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 100000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("content"),
max: 100000usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.title {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 5000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 5000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.title {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 500usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("title"),
max: 500usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for TranslationMap<S> {
fn nsid() -> &'static str {
"ai.syui.log.post"
}
fn def_name() -> &'static str {
"translationMap"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_log_post()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod post_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 PublishedAt;
type Site;
type Title;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type PublishedAt = Unset;
type Site = Unset;
type Title = Unset;
}
pub struct SetPublishedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetPublishedAt<St> {}
impl<St: State> State for SetPublishedAt<St> {
type PublishedAt = Set<members::published_at>;
type Site = St::Site;
type Title = St::Title;
}
pub struct SetSite<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSite<St> {}
impl<St: State> State for SetSite<St> {
type PublishedAt = St::PublishedAt;
type Site = Set<members::site>;
type Title = St::Title;
}
pub struct SetTitle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTitle<St> {}
impl<St: State> State for SetTitle<St> {
type PublishedAt = St::PublishedAt;
type Site = St::Site;
type Title = Set<members::title>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct published_at(());
pub struct site(());
pub struct title(());
}
}
pub struct PostBuilder<S: BosStr, St: post_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<StrongRef<S>>,
Option<post::Markdown<S>>,
Option<BlobRef<S>>,
Option<S>,
Option<Vec<Language>>,
Option<AtUri<S>>,
Option<S>,
Option<Datetime>,
Option<AtUri<S>>,
Option<UriValue<S>>,
Option<Vec<S>>,
Option<S>,
Option<S>,
Option<post::TranslationMap<S>>,
Option<Datetime>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Post<S> {
pub fn new() -> PostBuilder<S, post_state::Empty> {
PostBuilder::new()
}
}
impl<S: BosStr> PostBuilder<S, post_state::Empty> {
pub fn new() -> Self {
PostBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn bsky_post_ref(mut self, value: impl Into<Option<StrongRef<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_bsky_post_ref(mut self, value: Option<StrongRef<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn content(mut self, value: impl Into<Option<post::Markdown<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_content(mut self, value: Option<post::Markdown<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn cover_image(mut self, value: impl Into<Option<BlobRef<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_cover_image(mut self, value: Option<BlobRef<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn langs(mut self, value: impl Into<Option<Vec<Language>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_langs(mut self, value: Option<Vec<Language>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn parent(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_parent(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn path(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_path(mut self, value: Option<S>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St> PostBuilder<S, St>
where
St: post_state::State,
St::PublishedAt: post_state::IsUnset,
{
pub fn published_at(
mut self,
value: impl Into<Datetime>,
) -> PostBuilder<S, post_state::SetPublishedAt<St>> {
self._fields.7 = Option::Some(value.into());
PostBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn root(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_root(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St> PostBuilder<S, St>
where
St: post_state::State,
St::Site: post_state::IsUnset,
{
pub fn site(
mut self,
value: impl Into<UriValue<S>>,
) -> PostBuilder<S, post_state::SetSite<St>> {
self._fields.9 = Option::Some(value.into());
PostBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn tags(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Vec<S>>) -> Self {
self._fields.10 = value;
self
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn text_content(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.11 = value.into();
self
}
pub fn maybe_text_content(mut self, value: Option<S>) -> Self {
self._fields.11 = value;
self
}
}
impl<S: BosStr, St> PostBuilder<S, St>
where
St: post_state::State,
St::Title: post_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<S>,
) -> PostBuilder<S, post_state::SetTitle<St>> {
self._fields.12 = Option::Some(value.into());
PostBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn translations(
mut self,
value: impl Into<Option<post::TranslationMap<S>>>,
) -> Self {
self._fields.13 = value.into();
self
}
pub fn maybe_translations(mut self, value: Option<post::TranslationMap<S>>) -> Self {
self._fields.13 = value;
self
}
}
impl<S: BosStr, St: post_state::State> PostBuilder<S, St> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.14 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.14 = value;
self
}
}
impl<S: BosStr, St> PostBuilder<S, St>
where
St: post_state::State,
St::PublishedAt: post_state::IsSet,
St::Site: post_state::IsSet,
St::Title: post_state::IsSet,
{
pub fn build(self) -> Post<S> {
Post {
bsky_post_ref: self._fields.0,
content: self._fields.1,
cover_image: self._fields.2,
description: self._fields.3,
langs: self._fields.4,
parent: self._fields.5,
path: self._fields.6,
published_at: self._fields.7.unwrap(),
root: self._fields.8,
site: self._fields.9.unwrap(),
tags: self._fields.10,
text_content: self._fields.11,
title: self._fields.12.unwrap(),
translations: self._fields.13,
updated_at: self._fields.14,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Post<S> {
Post {
bsky_post_ref: self._fields.0,
content: self._fields.1,
cover_image: self._fields.2,
description: self._fields.3,
langs: self._fields.4,
parent: self._fields.5,
path: self._fields.6,
published_at: self._fields.7.unwrap(),
root: self._fields.8,
site: self._fields.9.unwrap(),
tags: self._fields.10,
text_content: self._fields.11,
title: self._fields.12.unwrap(),
translations: self._fields.13,
updated_at: self._fields.14,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_ai_syui_log_post() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("ai.syui.log.post"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Record containing a blog post. Compatible with site.standard.document.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("site"), SmolStr::new_static("title"),
SmolStr::new_static("publishedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("bskyPostRef"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"Open union for content. Supports markdown and other formats via $type.",
),
),
refs: vec![CowStr::new_static("#markdown")],
closed: Some(false),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("coverImage"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"A brief description or excerpt from the post.",
),
),
max_length: Some(30000usize),
max_graphemes: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("langs"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Indicates human language of post content.",
),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::Language),
..Default::default()
}),
max_length: Some(3usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("parent"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI of the parent message being replied to.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("path"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Combine with site URL to construct a canonical URL to the post.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("publishedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp of the post's publish time."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("root"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI of the root message in a thread.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("site"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Points to a publication record (at://) or a publication URL (https://).",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static("Tags to categorize the post."),
),
items: LexArrayItem::String(LexString {
max_length: Some(1280usize),
max_graphemes: Some(128usize),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("textContent"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Plaintext representation of the post content. Should not contain markdown or other formatting.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Title of the post.")),
max_length: Some(5000usize),
max_graphemes: Some(500usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("translations"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#translationMap"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp of the post's last edit."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("markdown"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static("Markdown content format.")),
required: Some(vec![SmolStr::new_static("text")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("text"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Markdown text content."),
),
max_length: Some(1000000usize),
max_graphemes: Some(100000usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("translation"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static("A translation of a post.")),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::String(LexString {
max_length: Some(1000000usize),
max_graphemes: Some(100000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
max_length: Some(5000usize),
max_graphemes: Some(500usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("translationMap"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("Map of language codes to translations."),
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("en"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#translation"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ja"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#translation"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}