pub mod get_playlist;
pub mod get_playlists;
#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, 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::ident::AtIdentifier;
use jacquard_common::types::string::{AtUri, Cid, Datetime, 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;
use crate::app_rocksky::song::SongViewBasic;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "app.rocksky.playlist",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Playlist<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub apple_music_link: Option<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub picture: Option<BlobRef<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub spotify_link: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tidal_link: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tracks: Option<Vec<Data<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub youtube_link: 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)]
#[serde(rename_all = "camelCase")]
pub struct PlaylistGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Playlist<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct PlaylistViewBasic<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cover_image_url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub curator_avatar_url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub curator_did: Option<AtIdentifier<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub curator_handle: Option<AtIdentifier<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub curator_name: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub track_count: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub uri: Option<AtUri<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 PlaylistViewDetailed<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cover_image_url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub curator_avatar_url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub curator_did: Option<AtIdentifier<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub curator_handle: Option<AtIdentifier<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub curator_name: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tracks: Option<Vec<SongViewBasic<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub uri: Option<AtUri<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> Playlist<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, PlaylistRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PlaylistRecord;
impl XrpcResp for PlaylistRecord {
const NSID: &'static str = "app.rocksky.playlist";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = PlaylistGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<PlaylistGetRecordOutput<S>> for Playlist<S> {
fn from(output: PlaylistGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Playlist<S> {
const NSID: &'static str = "app.rocksky.playlist";
type Record = PlaylistRecord;
}
impl Collection for PlaylistRecord {
const NSID: &'static str = "app.rocksky.playlist";
type Record = PlaylistRecord;
}
impl<S: BosStr> LexiconSchema for Playlist<S> {
fn nsid() -> &'static str {
"app.rocksky.playlist"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_rocksky_playlist()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("description"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("name"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.picture {
{
let size = value.blob().size;
if size > 2000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("picture"),
max: 2000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.picture {
{
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(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("picture"),
accepted: vec!["image/png".to_string(), "image/jpeg".to_string()],
actual: mime.to_string(),
});
}
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for PlaylistViewBasic<S> {
fn nsid() -> &'static str {
"app.rocksky.playlist.defs"
}
fn def_name() -> &'static str {
"playlistViewBasic"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_rocksky_playlist_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.track_count {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("track_count"),
min: 0i64,
actual: *value,
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for PlaylistViewDetailed<S> {
fn nsid() -> &'static str {
"app.rocksky.playlist.defs"
}
fn def_name() -> &'static str {
"playlistViewDetailed"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_rocksky_playlist_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod playlist_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type CreatedAt;
type Name;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Name = Unset;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type CreatedAt = Set<members::created_at>;
type Name = St::Name;
}
pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type CreatedAt = St::CreatedAt;
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct name(());
}
}
pub struct PlaylistBuilder<S: BosStr, St: playlist_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Datetime>,
Option<S>,
Option<S>,
Option<BlobRef<S>>,
Option<S>,
Option<S>,
Option<Vec<Data<S>>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Playlist<S> {
pub fn new() -> PlaylistBuilder<S, playlist_state::Empty> {
PlaylistBuilder::new()
}
}
impl<S: BosStr> PlaylistBuilder<S, playlist_state::Empty> {
pub fn new() -> Self {
PlaylistBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: playlist_state::State> PlaylistBuilder<S, St> {
pub fn apple_music_link(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_apple_music_link(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> PlaylistBuilder<S, St>
where
St: playlist_state::State,
St::CreatedAt: playlist_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> PlaylistBuilder<S, playlist_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
PlaylistBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: playlist_state::State> PlaylistBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> PlaylistBuilder<S, St>
where
St: playlist_state::State,
St::Name: playlist_state::IsUnset,
{
pub fn name(mut self, value: impl Into<S>) -> PlaylistBuilder<S, playlist_state::SetName<St>> {
self._fields.3 = Option::Some(value.into());
PlaylistBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: playlist_state::State> PlaylistBuilder<S, St> {
pub fn picture(mut self, value: impl Into<Option<BlobRef<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_picture(mut self, value: Option<BlobRef<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: playlist_state::State> PlaylistBuilder<S, St> {
pub fn spotify_link(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_spotify_link(mut self, value: Option<S>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: playlist_state::State> PlaylistBuilder<S, St> {
pub fn tidal_link(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_tidal_link(mut self, value: Option<S>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St: playlist_state::State> PlaylistBuilder<S, St> {
pub fn tracks(mut self, value: impl Into<Option<Vec<Data<S>>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_tracks(mut self, value: Option<Vec<Data<S>>>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St: playlist_state::State> PlaylistBuilder<S, St> {
pub fn youtube_link(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_youtube_link(mut self, value: Option<S>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St> PlaylistBuilder<S, St>
where
St: playlist_state::State,
St::CreatedAt: playlist_state::IsSet,
St::Name: playlist_state::IsSet,
{
pub fn build(self) -> Playlist<S> {
Playlist {
apple_music_link: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
name: self._fields.3.unwrap(),
picture: self._fields.4,
spotify_link: self._fields.5,
tidal_link: self._fields.6,
tracks: self._fields.7,
youtube_link: self._fields.8,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Playlist<S> {
Playlist {
apple_music_link: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
name: self._fields.3.unwrap(),
picture: self._fields.4,
spotify_link: self._fields.5,
tidal_link: self._fields.6,
tracks: self._fields.7,
youtube_link: self._fields.8,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_rocksky_playlist() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("app.rocksky.playlist"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A declaration of a playlist.")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("name"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("appleMusicLink"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The Apple Music link of the playlist.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The date the playlist was created.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The playlist description.",
)),
min_length: Some(1usize),
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The name of the playlist.",
)),
min_length: Some(1usize),
max_length: Some(512usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("picture"),
LexObjectProperty::Blob(LexBlob {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("spotifyLink"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The Spotify link of the playlist.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tidalLink"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The Tidal link of the playlist.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tracks"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static(
"The tracks in the playlist.",
)),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("app.rocksky.song#record"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("youtubeLink"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The YouTube link of the playlist.",
)),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
fn lexicon_doc_app_rocksky_playlist_defs() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("app.rocksky.playlist.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("playlistViewBasic"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static(
"Basic view of a playlist, including its metadata",
)),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("coverImageUrl"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URL of the cover image for the playlist.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The date and time when the playlist was created.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("curatorAvatarUrl"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URL of the avatar image of the curator.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("curatorDid"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The DID of the curator of the playlist.",
)),
format: Some(LexStringFormat::AtIdentifier),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("curatorHandle"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The handle of the curator of the playlist.",
)),
format: Some(LexStringFormat::AtIdentifier),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("curatorName"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The name of the curator of the playlist.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"A description of the playlist.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("id"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The unique identifier of the playlist.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The title of the playlist.")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("trackCount"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The URI of the playlist.")),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("playlistViewDetailed"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static(
"Detailed view of a playlist, including its tracks and metadata",
)),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("coverImageUrl"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URL of the cover image for the playlist.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The date and time when the playlist was created.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("curatorAvatarUrl"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URL of the avatar image of the curator.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("curatorDid"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The DID of the curator of the playlist.",
)),
format: Some(LexStringFormat::AtIdentifier),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("curatorHandle"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The handle of the curator of the playlist.",
)),
format: Some(LexStringFormat::AtIdentifier),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("curatorName"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The name of the curator of the playlist.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"A description of the playlist.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("id"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The unique identifier of the playlist.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The title of the playlist.")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tracks"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static(
"A list of tracks in the playlist.",
)),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"app.rocksky.song.defs#songViewBasic",
),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The URI of the playlist.")),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}