From de94004be391a9abcdea8030bce1d1104cb5ad76 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 6 Dec 2024 08:31:34 +0000 Subject: [PATCH] feat: add APIResult This is a generic type that contains the raw JSON response and the parsed value as a Result. fixup: APIResult FIXUP: APIResutl can handle missing response bodies --- Cargo.toml | 4 +- src/api_result.rs | 32 + src/lib.rs | 2 + src/trello/api/boards.rs | 41 + src/trello/api/cards/create.rs | 61 + src/trello/api/cards/delete.rs | 21 + src/trello/api/cards/get.rs | 96 + src/trello/api/cards/mod.rs | 9 + src/trello/api/cards/update.rs | 49 + src/trello/api/lists.rs | 47 + src/trello/api/members.rs | 54 + src/trello/api/mod.rs | 9 + src/trello/api/tests/given.rs | 15 + src/trello/api/tests/mod.rs | 59 + src/trello/mod.rs | 14 + src/trello/test_data/boards/empty.json | 1 + src/trello/test_data/boards/no-lists.json | 6048 ++++++++++++++++ src/trello/test_data/get_card.json | 88 + src/trello/test_data/get_lists_cards.json | 86 + .../test_data/get_members_boards_lists.json | 6149 +++++++++++++++++ src/trello/test_data/list-1-cards.json | 86 + src/trello/test_data/list-2-cards.json | 86 + src/trello/test_data/query_tasks/boards.json | 6149 +++++++++++++++++ .../test_data/query_tasks/list-1-cards.json | 170 + .../test_data/query_tasks/list-2-cards.json | 170 + src/trello/tests.rs | 62 + src/trello/types/auth.rs | 47 + src/trello/types/board.rs | 13 + src/trello/types/card.rs | 20 + src/trello/types/list.rs | 9 + src/trello/types/mod.rs | 23 + src/trello/types/new_card.rs | 20 + 32 files changed, 19738 insertions(+), 2 deletions(-) create mode 100644 src/api_result.rs create mode 100644 src/trello/api/boards.rs create mode 100644 src/trello/api/cards/create.rs create mode 100644 src/trello/api/cards/delete.rs create mode 100644 src/trello/api/cards/get.rs create mode 100644 src/trello/api/cards/mod.rs create mode 100644 src/trello/api/cards/update.rs create mode 100644 src/trello/api/lists.rs create mode 100644 src/trello/api/members.rs create mode 100644 src/trello/api/mod.rs create mode 100644 src/trello/api/tests/given.rs create mode 100644 src/trello/api/tests/mod.rs create mode 100644 src/trello/mod.rs create mode 100644 src/trello/test_data/boards/empty.json create mode 100644 src/trello/test_data/boards/no-lists.json create mode 100644 src/trello/test_data/get_card.json create mode 100644 src/trello/test_data/get_lists_cards.json create mode 100644 src/trello/test_data/get_members_boards_lists.json create mode 100644 src/trello/test_data/list-1-cards.json create mode 100644 src/trello/test_data/list-2-cards.json create mode 100644 src/trello/test_data/query_tasks/boards.json create mode 100644 src/trello/test_data/query_tasks/list-1-cards.json create mode 100644 src/trello/test_data/query_tasks/list-2-cards.json create mode 100644 src/trello/tests.rs create mode 100644 src/trello/types/auth.rs create mode 100644 src/trello/types/board.rs create mode 100644 src/trello/types/card.rs create mode 100644 src/trello/types/list.rs create mode 100644 src/trello/types/mod.rs create mode 100644 src/trello/types/new_card.rs diff --git a/Cargo.toml b/Cargo.toml index 8e3fde9..522925a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ color-eyre = "0.6" derive_more = { version = "1.0", features = [ "as_ref", "constructor", -# "deref", + "deref", # "display", # "from", #] } @@ -20,7 +20,7 @@ derive_more = { version = "1.0", features = [ # kxio = {path = "../kxio/"} kxio = "3.2" serde = { version = "1.0", features = ["derive"] } -#serde_json = "1.0" +serde_json = "1.0" tokio = { version = "1.41", features = ["full"] } toml = "0.8" #tracing= "0.1" diff --git a/src/api_result.rs b/src/api_result.rs new file mode 100644 index 0000000..b85043c --- /dev/null +++ b/src/api_result.rs @@ -0,0 +1,32 @@ +// +// use kxio::net::Response; +// +// use crate::{e, s}; + +// pub struct APIResult { +// pub text: String, +// pub result: Result, +// } + +// impl serde::Deserialize<'a>> APIResult { +// pub async fn new(response: kxio::net::Result) -> Self { +// match response { +// Ok(response) => { +// let text = response.text().await.unwrap_or_default(); +// let text = if text.is_empty() { s!("null") } else { text }; +// let result = serde_json::from_str::(&text) +// .map_err(|e| e.to_string()) +// .map_err(|e| { +// e!("{e}: {text}"); +// e +// }) +// .map_err(kxio::net::Error::from); +// Self { text, result } +// } +// Err(e) => Self { +// text: s!(""), +// result: Err(e), +// }, +// } +// } +// } diff --git a/src/lib.rs b/src/lib.rs index 386c314..1db038a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,10 +4,12 @@ use std::path::PathBuf; use clap::Parser; use kxio::{fs::FileSystem, net::Net}; +mod api_result; mod config; mod init; mod macros; mod template; +mod trello; #[cfg(test)] mod tests; diff --git a/src/trello/api/boards.rs b/src/trello/api/boards.rs new file mode 100644 index 0000000..4056ede --- /dev/null +++ b/src/trello/api/boards.rs @@ -0,0 +1,41 @@ +// + +// use crate::trello::types::board::TrelloBoard; +// use color_eyre::Result; +// use kxio::net::Net; +// +// use crate::{ +// f, +// trello::{ +// types::{TrelloAuth, TrelloBoardId}, +// url, +// }, +// }; +// use crate::trello::types::TrelloBoardName; + +// pub async fn get_board( +// auth: &TrelloAuth, +// board_id: &TrelloBoardId, +// net: &Net, +// ) -> Result { +// let board = net +// .get(url(f!( +// "/boards/{}/?fields=name&lists=all&list_fields=all&cards=all&card_fields=all", +// **board_id +// ))) +// .headers(auth.into()) +// .send() +// .await? +// .json() +// .await?; +// Ok(board) +// } + +// pub trait TrelloBoards { +// fn find_by_name(&self, board_name: &TrelloBoardName) -> Option<&TrelloBoard>; +// } +// impl TrelloBoards for Vec { +// fn find_by_name(&self, board_name: &TrelloBoardName) -> Option<&TrelloBoard> { +// self.iter().find(|b| &b.name == board_name) +// } +// } diff --git a/src/trello/api/cards/create.rs b/src/trello/api/cards/create.rs new file mode 100644 index 0000000..98917fb --- /dev/null +++ b/src/trello/api/cards/create.rs @@ -0,0 +1,61 @@ +// + +use color_eyre::Result; +use kxio::net::Net; +use serde_json::json; + +use crate::trello::{ + types::{NewTrelloCard, TrelloAuth, TrelloCard}, + url, +}; + +/// +/// POST /cards +/// +/// Query Pparameters +/// +/// - name string +/// The name for the card +/// - desc string +/// The description of the card +/// - pos string +/// The position of the card. top, bottom, or a positive number. +/// - due string +/// A due date for the card. A date +/// - start string +/// A start date for the card. A date, or null +/// - dueComplete bool +/// If the due date has been marked complete +/// - idList string REQUIRED +/// The ID of the list the card should be added to +/// - idMembers string +/// A comma-separated list of memberIds to add to the card +/// - idLabels string +/// A comma-separated list of labelIds to add to the card +pub async fn create_card( + auth: &TrelloAuth, + new_card: NewTrelloCard, + net: &Net, +) -> Result { + let card = net + .post(url("/cards")) + .headers(auth.into()) + .body( + json!({ + "idList": new_card.list_id(), + "name": new_card.name(), + "pos": "bottom", + }) + .to_string(), + ) + .send() + .await? + .json() + .await?; + Ok(card) +} +// #[derive(Debug, serde::Serialize)] +// pub struct CreateCardRequest { +// name: String, +// pos: String, +// } diff --git a/src/trello/api/cards/delete.rs b/src/trello/api/cards/delete.rs new file mode 100644 index 0000000..8d87194 --- /dev/null +++ b/src/trello/api/cards/delete.rs @@ -0,0 +1,21 @@ +// + +use color_eyre::Result; +use kxio::net::Net; + +use crate::{ + f, + trello::{types::TrelloAuth, url, TrelloCardId}, +}; + +pub async fn delete_card( + auth: &TrelloAuth, + remote_task_id: &TrelloCardId, + net: &Net, +) -> Result<()> { + net.delete(url(f!("/cards/{remote_task_id}"))) + .headers(auth.into()) + .send() + .await?; + Ok(()) +} diff --git a/src/trello/api/cards/get.rs b/src/trello/api/cards/get.rs new file mode 100644 index 0000000..510174a --- /dev/null +++ b/src/trello/api/cards/get.rs @@ -0,0 +1,96 @@ +// + +use color_eyre::Result; +use kxio::net::Net; + +use crate::{ + f, + trello::{ + types::{TrelloAuth, TrelloCard}, + url, TrelloCardId, + }, +}; + +/// Get a Card +/// +/// https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-get +/// +/// GET /cards/{id} +/// +/// Get a card by its ID +/// +/// Request +/// +/// Path parameters +/// +/// id TrelloID REQUIRED +/// +/// Query parameters +/// +/// - fields string +/// Which fields to return. +/// Default: `all` +/// `all` or a comma-separated list of fields. +/// Defaults: `badges, checkItemStates, closed, dateLastActivity, desc, descData, +/// due, start, email, idBoard, idChecklists, idLabels, idList, idMembers, idShort, idAttachmentCover, +/// manualCoverAttachment, labels, name, pos, shortUrl, url` +/// +/// - actions string +/// See the [Actions Nested Resource](https://developer.atlassian.com/cloud/trello/guides/rest-api/nested-resources/#actions-nested-resource) +/// +/// - attachments oneOf [string, boolean] +/// true, false, or cover +/// Default: false +/// +/// - attachment_fields string +/// `all` or a comma-separated list of attachment fields +/// Default: `all` +/// +/// - members boolean +/// Whether to return member objects for members on the card +/// Default: false +/// +/// - member_fields string +/// `all` or a comma-separated list of member fields. Defaults: `avatarHash, fullName, initials, username` +/// +/// - checkItemStates boolean +/// Whether to return checkItemState objects for checklists on the card +/// Default: false +/// +/// - checklists string +/// Whether to return the checklists on the card. all or none +/// Default: none +/// +/// - checklist_fields string +/// `all` or a comma-separated list of idBoard,idCard,name,pos +/// Default: `all` +/// +/// - board boolean +/// Whether to return the board object the card is on +/// Default: false +/// +/// - board_fields string +/// `all` or a comma-separated list of board fields. Defaults: `name, desc, descData, closed, idOrganization, pinned, url, prefs` +/// +/// - list boolean +/// See the [Lists Nested Resource](https://developer.atlassian.com/cloud/trello/guides/rest-api/nested-resources/#lists-nested-resource) +/// +/// Responses +/// +/// 200 OK Success +/// +/// application/json +pub async fn get_card( + auth: &TrelloAuth, + trello_card_id: &TrelloCardId, + net: &Net, +) -> Result { + let card = net + .get(url(f!("/cards/{trello_card_id}"))) + .headers(auth.into()) + .send() + .await? + .json() + .await?; + Ok(card) +} diff --git a/src/trello/api/cards/mod.rs b/src/trello/api/cards/mod.rs new file mode 100644 index 0000000..36c3b23 --- /dev/null +++ b/src/trello/api/cards/mod.rs @@ -0,0 +1,9 @@ +mod create; +mod delete; +mod get; +mod update; + +pub use create::create_card; +pub use delete::delete_card; +pub use get::get_card; +pub use update::{update_card, TrelloCardUpdate}; diff --git a/src/trello/api/cards/update.rs b/src/trello/api/cards/update.rs new file mode 100644 index 0000000..fca63fb --- /dev/null +++ b/src/trello/api/cards/update.rs @@ -0,0 +1,49 @@ +// + +use color_eyre::Result; +use kxio::net::Net; +use serde_json::json; + +use crate::{ + f, + trello::{ + types::{TrelloAuth, TrelloCard}, + url, TrelloCardId, TrelloCardName, TrelloListId, + }, +}; + +pub async fn update_card( + auth: &TrelloAuth, + card_update: TrelloCardUpdate, + net: &Net, +) -> Result { + let net_url = url(f!("/cards/{}", card_update.id)); + let card = net + .put(net_url) + .headers(auth.into()) + .body( + json!({ + "idList": card_update.id_list, + "name": card_update.name, + }) + .to_string(), + ) + .send() + .await? + .json() + .await?; + Ok(card) +} + +#[derive(Debug, PartialEq, Eq, serde::Serialize)] +pub struct TrelloCardUpdate { + id: TrelloCardId, + name: TrelloCardName, + #[serde(rename = "idList")] + id_list: TrelloListId, +} +impl TrelloCardUpdate { + pub const fn new(id: TrelloCardId, name: TrelloCardName, id_list: TrelloListId) -> Self { + Self { id, name, id_list } + } +} diff --git a/src/trello/api/lists.rs b/src/trello/api/lists.rs new file mode 100644 index 0000000..c382d06 --- /dev/null +++ b/src/trello/api/lists.rs @@ -0,0 +1,47 @@ +// + +use color_eyre::Result; +use kxio::net::Net; + +use crate::{ + f, + trello::{ + types::{TrelloAuth, TrelloCard, TrelloList}, + url, + }, +}; + +/// Get Cards in a List +/// +/// https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-cards-get +/// +/// GET /lists/{id}/cards +/// +/// List the cards in a list +/// +/// Request +/// +/// Path parameters +/// +/// id TrelloID REQUIRED +/// +/// Responses +/// +/// 200 OK Success +/// +/// application/json +pub async fn get_lists_cards( + auth: &TrelloAuth, + list: &TrelloList, + net: &Net, +) -> Result> { + let net_url = url(f!("/lists/{}/cards", **list.id())); + let cards = net + .get(net_url) + .headers(auth.into()) + .send() + .await? + .json() + .await?; + Ok(cards) +} diff --git a/src/trello/api/members.rs b/src/trello/api/members.rs new file mode 100644 index 0000000..7c8d609 --- /dev/null +++ b/src/trello/api/members.rs @@ -0,0 +1,54 @@ +// +// use kxio::net::Net; + +// use crate::api_result::APIResult; +// use crate::{ +// f, +// trello::{ +// types::{TrelloAuth, board::TrelloBoard}, +// url, +// }, +// }; +// +// /// Get lists from named board that Member belongs to +// /// +// /// Get Boards that Member belongs to +// /// https://developer.atlassian.com/cloud/trello/rest/api-group-members/#api-members-id-boards-get +// /// /members/{id}/boards +// /// +// /// Lists the boards that the user is a member of. +// /// +// /// Request +// /// +// /// Path parameters +// /// +// /// - id TrelloID REQUIRED +// /// +// /// +// /// Query parameters +// /// +// /// - fields string +// /// Default: all +// /// Valid values: id, name, desc, descData, closed, idMemberCreator, idOrganization, pinned, url, shortUrl, prefs, labelNames, starred, limits, memberships, enterpriseOwned +// /// +// /// - lists string +// /// Which lists to include with the boards. One of: all, closed, none, open +// /// Default: none +// /// Valid values: all, closed, none, open +// /// +// /// curl --request GET \ +// /// --url "https://api.trello.com/1/members/$TRELLO_USERNAME/boards?key=$TRELLO_KEY&token=$TRELLO_SECRET&lists=open" \ +// /// --header 'Accept: application/json' +// pub async fn get_boards_that_member_belongs_to( +// auth: &TrelloAuth, +// net: &Net, +// ) -> APIResult> { +// APIResult::new( +// net.get(url(f!("/members/{}/boards?lists=open", **auth.user()))) +// .headers(auth.into()) +// .header("Accept", "application/json") +// .send() +// .await, +// ) +// .await +// } diff --git a/src/trello/api/mod.rs b/src/trello/api/mod.rs new file mode 100644 index 0000000..7df1581 --- /dev/null +++ b/src/trello/api/mod.rs @@ -0,0 +1,9 @@ +// + +pub mod boards; +// pub mod cards; +// pub mod lists; +pub mod members; + +#[cfg(test)] +mod tests; diff --git a/src/trello/api/tests/given.rs b/src/trello/api/tests/given.rs new file mode 100644 index 0000000..7e75fc9 --- /dev/null +++ b/src/trello/api/tests/given.rs @@ -0,0 +1,15 @@ +// use kxio::net::MockNet; + +// use crate::trello::types::auth::{TrelloApiKey, TrelloApiSecret, TrelloAuth, TrelloUser}; + +// pub(crate) fn a_network() -> MockNet { +// kxio::net::mock() +// } + +// pub(crate) fn an_auth() -> TrelloAuth { +// TrelloAuth::new( +// TrelloApiKey::new("foo"), +// TrelloApiSecret::new("bar"), +// TrelloUser::new("baz"), +// ) +// } diff --git a/src/trello/api/tests/mod.rs b/src/trello/api/tests/mod.rs new file mode 100644 index 0000000..cf0a2c5 --- /dev/null +++ b/src/trello/api/tests/mod.rs @@ -0,0 +1,59 @@ +// use super::*; + +mod given; + +// type TestResult = color_eyre::Result<()>; + +mod members { + + // use std::collections::HashMap; + + // use kxio::net::StatusCode; + // use serde_json::json; + + // use crate::{ + // s, + // trello::{ + // // api::members::get_boards_that_member_belongs_to, + // types::{board::TrelloBoard, TrelloBoardId, TrelloBoardName}, + // }, + // }; + + // use super::*; + // + // #[tokio::test] + // async fn get_member_boards() -> TestResult { + // //given + // let net = given::a_network(); + // let auth = given::an_auth(); + // + // net.on() + // .get("https://api.trello.com/1/members/baz/boards?lists=open") + // .headers(HashMap::from([ + // ( + // s!("authorization"), + // s!("OAuth oauth_consumer_key=\"foo\", oauth_token=\"bar\""), + // ), + // (s!("accept"), s!("application/json")), + // ])) + // .respond(StatusCode::OK) + // .body(s!(json!([ + // {"id": "1", "name": "board-1", "lists":[]} + // ])))?; + // + // //when + // let result = get_boards_that_member_belongs_to(&auth, &net.into()).await; + // + // assert_eq!( + // result.result?, + // vec![TrelloBoard::new( + // TrelloBoardId::new("1"), + // TrelloBoardName::new("board-1"), + // vec![] + // )] + // ); + // + // //then + // Ok(()) + // } +} diff --git a/src/trello/mod.rs b/src/trello/mod.rs new file mode 100644 index 0000000..699da72 --- /dev/null +++ b/src/trello/mod.rs @@ -0,0 +1,14 @@ +// +pub mod api; +pub mod types; + +#[cfg(test)] +mod tests; + +// use crate::f; + +// pub fn url(path: impl Into) -> String { +// let path = path.into(); +// assert!(path.starts_with("/")); +// f!("https://api.trello.com/1{path}") +// } diff --git a/src/trello/test_data/boards/empty.json b/src/trello/test_data/boards/empty.json new file mode 100644 index 0000000..fe51488 --- /dev/null +++ b/src/trello/test_data/boards/empty.json @@ -0,0 +1 @@ +[] diff --git a/src/trello/test_data/boards/no-lists.json b/src/trello/test_data/boards/no-lists.json new file mode 100644 index 0000000..c00682e --- /dev/null +++ b/src/trello/test_data/boards/no-lists.json @@ -0,0 +1,6048 @@ +[ + { + "id": "5db72d5517a6135e166fd862", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5db72d5517a6135e166fd862", + "name": "0 Business: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/kWgYNeqh/0-business-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "admins", + "selfJoin": false, + "cardCovers": false, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": true, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5d6ff7a71cb8f4728ee296b6", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1330x2048/fbca9b0152b03e80427d46313c352f88/photo-1567540017993-c888313000b1", + "backgroundImageScaled": [ + { + "width": 65, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/65x100/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 125, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/125x192/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 312, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/312x480/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 623, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/623x960/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 665, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/665x1024/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 831, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/831x1280/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 1039, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1039x1600/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 1247, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1247x1920/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 1330, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1330x2048/fbca9b0152b03e80427d46313c352f88/photo-1567540017993-c888313000b1" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#1b1c10", + "backgroundTopColor": "#41343c", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "kWgYNeqh", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "Priority", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-09-28T05:00:44.356Z", + "dateLastView": "2022-11-05T21:08:10.919Z", + "shortUrl": "https://trello.com/b/kWgYNeqh", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "22977", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5db72d5517a6135e166fd863" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a585ab8c0a017752d0b5" + } + ] + }, + { + "id": "5ecbae5cbf50fc4fa0e541fd", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5ecbae5cbf50fc4fa0e541fd", + "name": "3 Editing: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": true, + "dateClosed": "2023-02-03T14:08:27.015Z", + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/4yHPRhO7/3-editing-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": true, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ec555ba8840e541f247bd3c", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/fc002594d99b978797bb8b1031d392e5/photo-1589952652973-f72cc8cff072", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 641, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/641x960/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 684, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/684x1024/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 854, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/854x1280/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 1068, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1068x1600/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 1282, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1282x1920/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 1367, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/fc002594d99b978797bb8b1031d392e5/photo-1589952652973-f72cc8cff072" + } + ], + "backgroundTile": false, + "backgroundBrightness": "light", + "backgroundBottomColor": "#372923", + "backgroundTopColor": "#ccccd1", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "4yHPRhO7", + "subscribed": false, + "labelNames": { + "green": "original", + "yellow": "reprint", + "orange": "Steampunk", + "red": "Diversity", + "purple": "Fantasy", + "blue": "Science Fiction", + "sky": "Super Hero", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-02-03T14:08:04.681Z", + "dateLastView": "2023-02-03T14:08:32.040Z", + "shortUrl": "https://trello.com/b/4yHPRhO7", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "3877", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5dc4a5568b91e537c320b519", + "name": "Offered To Buy", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 16384, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e63fe157bbe2c65a74f61dc", + "name": "Accepted", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 35071.984375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5de1801e37f6fa82b2aad397", + "name": "Awaiting Author Approval", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 37375.96875, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e667d40e0bf5b3a5d90a90c", + "name": "Approved by Author", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 41983.9375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6223e559b0ea254f7b949e8d", + "name": "Contract Sent", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 446975.46875, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "623ccc60aeb4d362b802f43c", + "name": "Contract Accepted", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 649471.234375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60fbc72fa9279c112f512bec", + "name": "The Third Year (December 2023)", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 1114111, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5ecbae5cbf50fc4fa0e541fe" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a5a59547a03350c321d0" + } + ] + }, + { + "id": "5eccb96b04b4dc5666c64b7c", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5eccb96b04b4dc5666c64b7c", + "name": "4 Published: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/23WYNmUU/4-published-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ecc9f06dd97866e7108a986", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c675dc447afa6380566e25697420129c/photo-1590418606746-018840f9cd0f", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 640, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 683, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 853, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 1066, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 1280, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 1365, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c675dc447afa6380566e25697420129c/photo-1590418606746-018840f9cd0f" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#040c17", + "backgroundTopColor": "#081b30", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "23WYNmUU", + "subscribed": false, + "labelNames": { + "green": "Original", + "yellow": "Reprint", + "orange": "Steampunk", + "red": "Diversity", + "purple": "Fantasy", + "blue": "Science Fiction", + "sky": "Super Hero", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-12-10T11:01:27.897Z", + "dateLastView": "2022-04-23T10:52:31.930Z", + "shortUrl": "https://trello.com/b/23WYNmUU", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "744", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "60fbc726a3903923507a2338", + "name": "The Second Year (December 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 128, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60fbc6c28fc1951d2df2ee91", + "name": "Issue 9 (July 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 256, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60fbc6b75c4e737f11ed0a4e", + "name": "Issue 8 (April 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 512, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5dc1a3cc9443cf290e105a9e", + "name": "Issue 7 (January 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 1024, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5de68ade15e1dc10b583219e", + "name": "The First Year (December 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 1536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5de180297a9256384304b895", + "name": "Issue 6 (September 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 2048, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "608d49098982605e432a5ca8", + "name": "Issue 5 (May 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 4096, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5feee474f6196034f2240dd9", + "name": "Issue 4 (January 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 8192, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5ecbafb3e45d5c6887dad01d", + "name": "Issue 3 (September 2020)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 16384, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5dc089109931266c657dbbd5", + "name": "Issue 2 (May 2020)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 65536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5ecbaf7e12407531cf59587f", + "name": "Issue 1 (January 2020)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 81920, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5eccb96b04b4dc5666c64b7d" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a5c13fed3116ca679185" + } + ] + }, + { + "id": "62ce6644f1613e2eb5c23b35", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/62ce6644f1613e2eb5c23b35", + "name": "Daily Notes 2022", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/kdAaLE1K/daily-notes-2022", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "62ce4e114295df64218b6d2b", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/a944ca5a6d460984c467c0f148107ac0/photo-1657586640569-4a3d4577328c", + "backgroundImageScaled": [ + { + "width": 132, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/132x100/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 253, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/253x192/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 480, + "height": 365, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x365/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 960, + "height": 729, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x729/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 1024, + "height": 778, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x778/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 1280, + "height": 973, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x973/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 1920, + "height": 1459, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1459/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 2048, + "height": 1556, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1556/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 2106, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2106x1600/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 2560, + "height": 1945, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/a944ca5a6d460984c467c0f148107ac0/photo-1657586640569-4a3d4577328c" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0c0c14", + "backgroundTopColor": "#1e3345", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "kdAaLE1K", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-07-14T05:56:47.280Z", + "dateLastView": "2022-07-14T06:01:48.959Z", + "shortUrl": "https://trello.com/b/kdAaLE1K", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "53", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "62ce665e3b71cd63fbb04ea4", + "name": "July", + "closed": false, + "idBoard": "62ce6644f1613e2eb5c23b35", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "62ce666deae66c2ea3169913", + "name": "August", + "closed": false, + "idBoard": "62ce6644f1613e2eb5c23b35", + "pos": 131071, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "62ce6644f1613e2eb5c23b3d" + } + ] + }, + { + "id": "5e6cb04f4f9a8b071f151037", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/5e6cb04f4f9a8b071f151037", + "name": "DevProjects", + "desc": "Simple board to start on a project.\n\nEach list can hold items (cards) that represent ideas or tasks.\n\nThere 4 lists here:\n\n* **BRAINSTORM ๐Ÿค”** : Ideas are created here. Here people can describe the idea following three simple questions: Why you wish to do it, What it is, how can you do it.\n\n* **TODO ๐Ÿ“š**: Once the ideas is clearly defined, the task can move to #todo stage. Here the owner of the idea can move to #doing once s/he is ready. He can also wait a bit for other members to join.\n* **DOING โš™๏ธ**: On-going\n* **DONE! ๐Ÿ™Œ๐Ÿฝ**: Finished\n\nYou could add other lists like **labels** holding labels (with colors) in order to tag each card by a label if you wish.", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/9ltBSkNA/devprojects", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5e6a85be32376b62ac13e902", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/1ad3a3d75de075cbafe780a25e6f61a3/photo-1583826476986-5be438394228", + "backgroundImageScaled": [ + { + "width": 75, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/75x100/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 144, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/144x192/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 360, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/360x480/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 721, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/721x960/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 769, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/769x1024/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 961, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/961x1280/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 1202, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1202x1600/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 1442, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1442x1920/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 1538, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/1ad3a3d75de075cbafe780a25e6f61a3/photo-1583826476986-5be438394228" + } + ], + "backgroundTile": false, + "backgroundBrightness": "light", + "backgroundBottomColor": "#cdb3ad", + "backgroundTopColor": "#c7c5d2", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "9ltBSkNA", + "subscribed": false, + "labelNames": { + "green": "Foo", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-12-01T18:40:40.174Z", + "dateLastView": "2022-12-01T18:57:37.354Z", + "shortUrl": "https://trello.com/b/9ltBSkNA", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "1905", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5e110382bbcd021dda283413", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": null, + "lists": [ + { + "id": "5e6cb04f4f9a8b071f151038", + "name": "BRAINSTORM ๐Ÿค”", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e6cb04f4f9a8b071f151039", + "name": "TODO ๐Ÿ“š", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 131071, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e6cb04f4f9a8b071f15103a", + "name": "DOING โš™๏ธ", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 196607, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e6cb04f4f9a8b071f15103b", + "name": "DONE! ๐Ÿ™Œ๐Ÿฝ", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 262143, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6251499fd108413e3afabac5", + "name": "Icebox โ„๏ธ", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 327679, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5e6cb0504f9a8b071f1510ec" + } + ] + }, + { + "id": "5ddd02148100bc44f129a16e", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5ddd02148100bc44f129a16e", + "name": "Fulfilment: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/rAjEe86K/fulfilment-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ddc25fe8ffbae5b78bce77e", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83", + "backgroundImageScaled": [ + { + "width": 140, + "height": 93, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 256, + "height": 171, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 480, + "height": 320, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 960, + "height": 640, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x640/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1024, + "height": 683, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x683/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1280, + "height": 854, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x854/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1920, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1280/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2048, + "height": 1366, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1366/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2400, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2400x1600/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2560, + "height": 1707, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#141c24", + "backgroundTopColor": "#b7b0b1", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "rAjEe86K", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "Donating Refund", + "purple": "", + "blue": "", + "sky": "Cancelled Subscription", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-01-02T10:00:06.729Z", + "dateLastView": "2022-10-03T15:34:26.296Z", + "shortUrl": "https://trello.com/b/rAjEe86K", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "9216", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5dfbb9b11fdf5782a5c7bf28", + "name": "Inbox", + "closed": false, + "idBoard": "5ddd02148100bc44f129a16e", + "pos": 16383.75, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "622b0d2d419c1f8b8c389841", + "name": "Sub y3", + "closed": false, + "idBoard": "5ddd02148100bc44f129a16e", + "pos": 99039.68994140625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61b4e4ede1b9d65d6cb8ad52", + "name": "Completed", + "closed": false, + "idBoard": "5ddd02148100bc44f129a16e", + "pos": 815103.5625, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5ddd02148100bc44f129a16f" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a5995f6a287e3d1d18ba" + } + ] + }, + { + "id": "5fcbcabef8585f0bff23c51a", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5fcbcabef8585f0bff23c51a", + "name": "Games", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/TPqHmpPa/games", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "blue", + "backgroundColor": "#0079BF", + "backgroundImage": null, + "backgroundImageScaled": null, + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0079BF", + "backgroundTopColor": "#0079BF", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "TPqHmpPa", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-10-31T15:16:27.532Z", + "dateLastView": "2022-10-31T15:16:27.646Z", + "shortUrl": "https://trello.com/b/TPqHmpPa", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "125", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5fcbcad69beb851cea19a81e", + "name": "Wanted", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 49152, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcadbc0523764c513839e", + "name": "To Play", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 65536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcacdd0388810412a91df", + "name": "Playing", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 69632, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcac2a5318b808af2bbdb", + "name": "Played", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 73728, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcae20d0cbe4ce5b3be49", + "name": "Dropped", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 81920, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5fcbcabef8585f0bff23c51b" + } + ] + }, + { + "id": "613477c6376fa35c23defff6", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/613477c6376fa35c23defff6", + "name": "Mise-En-Place PPS", + "desc": "Increase your personal productivity each week with this board that Justin Gallagher, one of the creators of Trello, uses every day. Split your work into very specific lists so nothing falls through the cracks. Use the reference list to keep important information on hand. Hold yourself accountable with meeting notes, and most importantly spend some time each morning planning out the day ahead.\n\n**[Read Justin's full post](https://blog.trello.com/work-life-focus-trello-insider-guide-personal-productivity)** on the Trello blog to learn more about his personal productivity methodology. ", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/CF4prM1s/mise-en-place-pps", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5acb964a58a42a2abbad9f5a", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1709/97b3e696535030e9efae21381993cbdc/photo-1523266092241-0077129f31fe", + "backgroundImageScaled": [ + { + "width": 140, + "height": 93, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/ec3943cf765bb8e25072b0b6881626f5/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 256, + "height": 171, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/a2bad7a28cf88285432f538f34ba702c/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 480, + "height": 320, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/963ddbe30ac0e2ab51ed5ed7403a5143/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 960, + "height": 641, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x641/dc77db9bf1a35c4f1df32bc6c700ccc9/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 1024, + "height": 684, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x684/7ba65e8b0b851c59a154ee3904f66233/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 1280, + "height": 855, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x855/d4758880f39d1b3cb86c38c836d81cc8/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 1920, + "height": 1282, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1282/3e0a1bf9d43e86ae99f0831d67f3ec98/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 2048, + "height": 1367, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1367/5c5e57f4fa99eea9827c0d3567165be4/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 2397, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2397x1600/09074ade5bff1456ea55337903851c92/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 2560, + "height": 1709, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1709/97b3e696535030e9efae21381993cbdc/photo-1523266092241-0077129f31fe" + } + ], + "backgroundTile": false, + "backgroundBrightness": "light", + "backgroundBottomColor": "#cac9c7", + "backgroundTopColor": "#ebecec", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "CF4prM1s", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-06-11T13:27:31.531Z", + "dateLastView": "2023-07-22T13:53:53.566Z", + "shortUrl": "https://trello.com/b/CF4prM1s", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "2328", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5d9389e457df5203e183a38e", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "645b6a06ccb1bbd2288b4227", + "name": "Today", + "closed": false, + "idBoard": "613477c6376fa35c23defff6", + "pos": 98303.5, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "613477c7376fa35c23df00a9" + }, + { + "idMember": "61360b3b357aa7338a8638c2", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "61360b7d1bd2068f9d252be2" + } + ] + }, + { + "id": "63da0b913365d587f15371fb", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/63da0b913365d587f15371fb", + "name": "Project Management", + "desc": "**Manage Projects To Perfection**\n\nBig dreams turn into bigger results with a killer project plan. Use this basic structure to build your team's ideal workflow, for projects big or small.\n\nHere's what's included, and how to get this project management party started:\n\n1. **Resources (Start Here!):**\nThis list is perfect for you and your team to have all those documents, specs, designs, or anything you tend to reference all the time. Meeting schedules and answers to common questions are also recommended to pop into this list so that your team is informed at all times. ๐Ÿ“š\n\n2. **Questions For Next Meeting:**\nNever again forget that important question you thought of in the shower this morning! Slide your Q's into this handy list so your team keeps on flowing. ๐ŸŒŠ\n\n3. **To Do:**\nThe mother of all listsโ€”the good ol' To Do. This is where assigned tasks live so that your team can see who's working on what and when it's due. Crystal clear all day, week, and month. ๐Ÿ”ฎ\n\n4. **Pending:**\nWe all have those in-between tasks that are technically done but also awkwardly waiting for another step. That's where the Pending list comes into play, use this list to share what those next mini-steps are with your team. ๐Ÿ’ฌ\n\n5. **Blocked:**\nWith any successful project comes at least one inevitable blocker. Splash those red-tape, blocking issues that are slowing your team down so you can tackle it in the best way; together. ๐Ÿšท\n\n6. **Done:**\nOur favorite list, the Done list. Stop, drag, and drop! For all your finished tasks that your team has hustled on and feels proud of. โœจ", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/yBEvKW0j/project-management", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5cd970f5caac7789cddf154d", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1792/a8862beec5de129bafebd731db9e1275/photo-1557682250-33bd709cbe85", + "backgroundImageScaled": [ + { + "width": 140, + "height": 98, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x98/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 256, + "height": 179, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x179/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 480, + "height": 336, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x336/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 960, + "height": 672, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x672/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 1024, + "height": 717, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x717/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 1280, + "height": 896, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x896/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 1920, + "height": 1344, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1344/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 2048, + "height": 1434, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1434/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 2286, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2286x1600/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 2560, + "height": 1792, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1792/a8862beec5de129bafebd731db9e1275/photo-1557682250-33bd709cbe85" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#8737a3", + "backgroundTopColor": "#4126ab", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "yBEvKW0j", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "Copy Request", + "orange": "One more step", + "red": "Priority", + "purple": "Design Team", + "blue": "Product Marketing", + "sky": "Trello Tip", + "lime": "Halp", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-02-12T17:56:10.252Z", + "dateLastView": "2023-02-12T19:21:03.774Z", + "shortUrl": "https://trello.com/b/yBEvKW0j", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "1248", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5c3e2fdb0fa92e43b849d838", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "63e7f1519783b276b819b90a", + "name": "Inbox", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 17407.828125, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537202", + "name": "Project Resources", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 34815.65625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537203", + "name": "Questions For Next Meeting", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 53247.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537204", + "name": "To Do", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 90111.375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537205", + "name": "Pending", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 96255.34375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537206", + "name": "Blocked", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 102399.3125, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537207", + "name": "Done", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 245759.25, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "63da0b913365d587f1537253" + } + ] + }, + { + "id": "5d9a1af1f3e8b612d60a896b", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5d9a1af1f3e8b612d60a896b", + "name": "Reading", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": true, + "url": "https://trello.com/b/66Rep4Or/reading", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5d99bfa44775c4652ede8802", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1922/09d17f5d473b9cba98ba208a83842426/photo-1570297780229-1125995349ef", + "backgroundImageScaled": [ + { + "width": 133, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/133x100/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 256, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x192/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 480, + "height": 360, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x360/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 960, + "height": 721, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x721/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 1024, + "height": 769, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x769/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 1280, + "height": 961, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x961/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 1920, + "height": 1442, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1442/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 2048, + "height": 1538, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1538/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 2131, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2131x1600/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 2560, + "height": 1922, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1922/09d17f5d473b9cba98ba208a83842426/photo-1570297780229-1125995349ef" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#483827", + "backgroundTopColor": "#624a35", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "66Rep4Or", + "subscribed": false, + "labelNames": { + "green": "Podcast", + "yellow": "", + "orange": "Audiobook", + "red": "Audible", + "purple": "Attached", + "blue": "Subscribed Magazines", + "sky": "Online", + "lime": "Hardcopy", + "pink": "Kindle", + "black": "Reading with Orla", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "Kobo", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "To-Buy", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-10-09T10:31:06.494Z", + "dateLastView": "2023-10-04T15:52:33.538Z", + "shortUrl": "https://trello.com/b/66Rep4Or", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "64741", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5d9a1b165e92ea17d465b495", + "name": "Inbox", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d9a1b1b2073aa47505ebf24", + "name": "TBR", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 66559, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d9a1b1c40bdd81ba37a6d55", + "name": "Reading", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 140159, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63c4327ba40561019335e0e9", + "name": "Read Female 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 294911, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63c43275b7482d01eb4b54d1", + "name": "Read Male 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 327679, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63ef994e7a3eaec4d82be5e7", + "name": "Listened Podcast 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 344063, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63c4328188571a00e726948e", + "name": "Read Magazine 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 360447, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5da1acd14c099c3dcc885fbf", + "name": "Hiatus", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 425983, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "64745329e5b24abef08e3e1a", + "name": "Abandonded/Returned", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 491519, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6484c70aa08882f218d684aa", + "name": "unhaul", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 557055, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5d9a1af1f3e8b612d60a896c" + } + ] + }, + { + "id": "60548b78f692826d0d2158c9", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/60548b78f692826d0d2158c9", + "name": "Reading Archive", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/rtDb0yQ6/reading-archive", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "6054857d30484206448fb45c", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/145f72add00b7bc90523ee34546f387c/photo-1616067113035-2987dea36523", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 640, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 683, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 853, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 1066, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 1280, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 1365, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/145f72add00b7bc90523ee34546f387c/photo-1616067113035-2987dea36523" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#040509", + "backgroundTopColor": "#060a14", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "rtDb0yQ6", + "subscribed": false, + "labelNames": { + "green": "Podcast", + "yellow": "", + "orange": "Audiobook", + "red": "Audible", + "purple": "Calibre Library", + "blue": "Subscribed Magazines", + "sky": "Online", + "lime": "Hardcopy", + "pink": "https://www.audible.co.uk/", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-05-05T13:45:17.686Z", + "dateLastView": "2023-09-24T15:28:11.680Z", + "shortUrl": "https://trello.com/b/rtDb0yQ6", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "332", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "61d9416975329115c84b84f4", + "name": "Read Female 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 269, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61d94161a9e67520f24aa1e5", + "name": "Read Male 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 539, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61d941715004c44e15a23f6b", + "name": "Read Magazines 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 1079, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5da1acd92aa4e93e4b343d0f", + "name": "Abandoned 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 2159, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "606c49c8f6e4f17af1fcbf45", + "name": "Unhaul 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 4319, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60548a3d49b84846d7be27ff", + "name": "Read Male 2021", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 8639, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61cebec468e1c45915d09a91", + "name": "Read Female 2021", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 17279, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61cebeb35540a1567bdc7716", + "name": "Read Magazines 2021", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 34559, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d9a1b1fd35ffc7a485d3a10", + "name": "Read 2020", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 69119, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "60548b78f692826d0d2158ca" + } + ] + }, + { + "id": "609803b797dec552d62e0497", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/609803b797dec552d62e0497", + "name": "TESTING-FULLER", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/TQvj081Z/testing-fuller", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ddc25fe8ffbae5b78bce77e", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83", + "backgroundImageScaled": [ + { + "width": 140, + "height": 93, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 256, + "height": 171, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 480, + "height": 320, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 960, + "height": 640, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x640/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1024, + "height": 683, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x683/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1280, + "height": 854, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x854/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1920, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1280/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2048, + "height": 1366, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1366/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2400, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2400x1600/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2560, + "height": 1707, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#141c24", + "backgroundTopColor": "#b7b0b1", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "TQvj081Z", + "subscribed": false, + "labelNames": { + "green": "PreOrder", + "yellow": "SingleIssue", + "orange": "Promotional", + "red": "TESTING", + "purple": "", + "blue": "Subscription", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2021-05-16T21:05:59.622Z", + "dateLastView": "2021-05-16T21:05:59.807Z", + "shortUrl": "https://trello.com/b/TQvj081Z", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "104", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5ddd02148100bc44f129a16e", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "609803b797dec552d62e0498", + "name": "Inbox", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 16383.75, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e0499", + "name": "Sub 6-8", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 80895.703125, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049a", + "name": "Sub 5-7", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 145407.65625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049b", + "name": "Issue 6", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 332799.609375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049c", + "name": "Sub 4-6", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 520191.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049d", + "name": "Issue 5", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 524287.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049e", + "name": "Sub 3-5", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 536575.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049f", + "name": "Issue 4", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 538623.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a0", + "name": "Sub 2-4", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 544767.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a1", + "name": "Issue 3", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 546815.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a2", + "name": "Sub 1-3", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 552959.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a3", + "name": "Issue 2", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 585727.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a4", + "name": "Issue 1", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 618495.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a5", + "name": "Order Received", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 684031, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a6", + "name": "PRODUCTS", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 749567, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "609803b897dec552d62e06af" + } + ] + }, + { + "id": "5e18d2687e10b94326d5255f", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/5e18d2687e10b94326d5255f", + "name": "TESTING-SLUSHPILE", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/ObFxS06C/testing-slushpile", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "admins", + "selfJoin": false, + "cardCovers": false, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5d80f70b060c574f45ecc1f0", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1367x2048/e3f86fba993a9f7bf2ab03234b25a022/photo-1568313081041-dbd174f69e3b", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 641, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/641x960/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 684, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/684x1024/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 854, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/854x1280/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 1068, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1068x1600/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 1282, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1282x1920/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 1367, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1367x2048/e3f86fba993a9f7bf2ab03234b25a022/photo-1568313081041-dbd174f69e3b" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#151b0d", + "backgroundTopColor": "#18200e", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "ObFxS06C", + "subscribed": false, + "labelNames": { + "green": "original", + "yellow": "reprint", + "orange": "Steampunk", + "red": "Super Hero", + "purple": "Fantasy", + "blue": "Science Fiction", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-09-29T21:27:05.658Z", + "dateLastView": "2022-09-29T21:27:05.745Z", + "shortUrl": "https://trello.com/b/ObFxS06C", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "15611", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": null, + "lists": [ + { + "id": "606edbe44502b6842c027a0b", + "name": "Slushy", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 15359.34375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f51dcabd866d6149c8294e8", + "name": "MASTER TEST CARDS", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 20479.6875, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52560", + "name": "Inbox", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 40959.375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f50a447ad9fc758a8c11f13", + "name": "Send to Reader", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 71167, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52561", + "name": "Slush", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 72575, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f50a741bdb4ca73a450938e", + "name": "To Re-read", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 73983, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52562", + "name": "Hold", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 76799, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f397c9a5d99ac46280dc439", + "name": "Held", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 82431, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52563", + "name": "Reject", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 88063, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52564", + "name": "Rejected", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 104447, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f5297cdcf607e15aea14b5d", + "name": "Withdraw", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 107519, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52566", + "name": "To Offer", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 209663, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5e18d2687e10b94326d52599" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "615a9bc91140c86c02ed491b" + } + ] + }, + { + "id": "63a9f88e6bb1ef0fd072244a", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/63a9f88e6bb1ef0fd072244a", + "name": "TESTING-SYNC-OPENPROJECT", + "desc": "Use this board to get things done. It isnโ€™t just about shipping a product, or checking off items on a list, or even about marking a project as Done. Getting things done is a process: itโ€™s a way of thinking that involves planning, execution, iteration, and reflection.\n\nLearn more here: https://blog.trello.com/how-to-scrum-and-trello-for-teams-at-work", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/4yCcEqgT/testing-sync-openproject", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "54c9404f266fc5499138400b", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/4200x4200/48dbf0b5a546541e847e267a5dcd2201/shutterstock_134707556.jpg", + "backgroundImageScaled": [ + { + "width": 140, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/140x100/6eab501206dcefb7481f43c783247d36/shutterstock_134707556.jpg" + }, + { + "width": 256, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/256x192/b2ffcdd02026a264e454afa9ed093adf/shutterstock_134707556.jpg" + }, + { + "width": 480, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/480x480/96406688eb291c869064290cfb9b0c80/shutterstock_134707556.jpg" + }, + { + "width": 960, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/960x960/4b4c1f7c6678833b87f3719d90a92d67/shutterstock_134707556.jpg" + }, + { + "width": 1024, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/1024x1024/0cef9f5b83f22bd910e3f528dfac01c0/shutterstock_134707556.jpg" + }, + { + "width": 1280, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/1280x1280/b1bfc2f211e11d35cd7faf1f58a41d1d/shutterstock_134707556.jpg" + }, + { + "width": 1920, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/1920x1920/50c43401f7d28b15a414fdd6ac68d94a/shutterstock_134707556.jpg" + }, + { + "width": 2048, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/2048x2048/22ec03aab9d36ea49139c569a62bb079/shutterstock_134707556.jpg" + }, + { + "width": 2560, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/2560x1600/e2a9f6205a29cdba36f3e2ab83c57b20/shutterstock_134707556.jpg" + }, + { + "width": 4200, + "height": 4200, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/4200x4200/48dbf0b5a546541e847e267a5dcd2201/shutterstock_134707556.jpg" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#f85f6c", + "backgroundTopColor": "#bda8b9", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "4yCcEqgT", + "subscribed": false, + "labelNames": { + "green": "Marketing", + "yellow": "Day", + "orange": "Remarket", + "red": "", + "purple": "Demand Marketing", + "blue": "Partners", + "sky": "Government", + "lime": "Planning", + "pink": "Happiness", + "black": "OEM", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-06-11T13:27:33.273Z", + "dateLastView": "2023-07-22T13:53:54.652Z", + "shortUrl": "https://trello.com/b/4yCcEqgT", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "1142", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "54c93f6f836da7c4865460d2", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "63a9f88e6bb1ef0fd0722451", + "name": "Done", + "closed": false, + "idBoard": "63a9f88e6bb1ef0fd072244a", + "pos": 65535.5, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "63a9f88e6bb1ef0fd0722509" + } + ] + }, + { + "id": "5f5f651516b6bf442f1f9726", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5f5f651516b6bf442f1f9726", + "name": "Watching", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/3S3CaouQ/watching", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "red", + "backgroundColor": "#B04632", + "backgroundImage": null, + "backgroundImageScaled": null, + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#B04632", + "backgroundTopColor": "#B04632", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "3S3CaouQ", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-10-31T15:17:16.701Z", + "dateLastView": "2022-10-31T15:17:16.872Z", + "shortUrl": "https://trello.com/b/3S3CaouQ", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "30", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5f5f651db1d032287e2c2d87", + "name": "To Watch", + "closed": false, + "idBoard": "5f5f651516b6bf442f1f9726", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f5f6521b44b742e469fa152", + "name": "Watched", + "closed": false, + "idBoard": "5f5f651516b6bf442f1f9726", + "pos": 131071, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5f5f651516b6bf442f1f9727" + } + ] + }, + { + "id": "5d99a04c82370566a5087a20", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5d99a04c82370566a5087a20", + "name": "Writing", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/ki1dtTv9/writing", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5c06915291f9bd120641df0a", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1440/fe6df12770989dd8964acc05c2c914ad/photo-1475694867812-f82b8696d610", + "backgroundImageScaled": [ + { + "width": 140, + "height": 79, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x79/bb2f6616f60f0409e243ff2a1d96a43b/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 256, + "height": 144, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x144/a7ae169a8a884e281d5b1a71b3990be0/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 480, + "height": 270, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x270/b731e491378d006fd93943ff2a7fcde9/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 960, + "height": 540, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x540/3c5790055f29c56c8d4dfefb513b83ca/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 1024, + "height": 576, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x576/5854aa8100253f07433a3e0671acee2b/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 1280, + "height": 720, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x720/f6c8b6d71692800acfce441bf5f9a245/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 1920, + "height": 1080, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1080/43218755281d7434f638867d8edb9dd6/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 2048, + "height": 1152, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/d3068ddb3ae7ebb8947a04e7c9b18610/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 2560, + "height": 1440, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1440/fe6df12770989dd8964acc05c2c914ad/photo-1475694867812-f82b8696d610" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0a7ba3", + "backgroundTopColor": "#a0baca", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "ki1dtTv9", + "subscribed": false, + "labelNames": { + "green": "short", + "yellow": "novel", + "orange": "cossmass", + "red": "azaktolo", + "purple": "folded-cities", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2019-10-06T11:58:02.031Z", + "dateLastView": "2020-03-10T22:34:35.972Z", + "shortUrl": "https://trello.com/b/ki1dtTv9", + "idTags": [], + "datePluginDisable": null, + "creationMethod": "assisted", + "ixUpdate": "140", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5d99a04d91c0843c685aa510", + "name": "Story Ideas", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 1, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a04dd6d75a194dbd2bb0", + "name": "World Building", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 2, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a04d937a832121b0dc37", + "name": "Plot & Character", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 3, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99c4129c6bc71d9d2cfbd7", + "name": "Back Burner", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 32771, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a059d2c272050c79304c", + "name": "Writing Draft 1", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 65539, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a05d6b09200e44cde7d4", + "name": "Resting", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 131075, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a0615ffbc0271bfd80b8", + "name": "Writing Draft N", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 196611, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a07461763b0d185bc0ca", + "name": "Written", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 262147, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a07de8ec18195190ebf0", + "name": "Submitted", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 327683, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a082b8b79431b554ccce", + "name": "Published", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 393219, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a0858eb9de21e952de00", + "name": "Trunked", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 458755, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5d99a04c82370566a5087a21" + } + ] + }, + { + "id": "61b329f587596a03a0495c38", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/61b329f587596a03a0495c38", + "name": "XMas", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/YBRTxt45/xmas", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "61b318af50580a4f547f9fb7", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/d6c275126c733e93aa701175814e0f59/photo-1638989533154-9cd6ae98c659", + "backgroundImageScaled": [ + { + "width": 140, + "height": 79, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x79/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 256, + "height": 144, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x144/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 480, + "height": 270, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x270/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 960, + "height": 540, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x540/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 1024, + "height": 576, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x576/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 1280, + "height": 720, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x720/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 1920, + "height": 1080, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1080/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 2048, + "height": 1152, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 2560, + "height": 1440, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/d6c275126c733e93aa701175814e0f59/photo-1638989533154-9cd6ae98c659" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0a0607", + "backgroundTopColor": "#d1c6c9", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "YBRTxt45", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-10-27T18:32:04.155Z", + "dateLastView": "2022-10-27T18:32:04.247Z", + "shortUrl": "https://trello.com/b/YBRTxt45", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "968", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "634295f35b2f5d0070df0b94", + "name": "2022", + "closed": false, + "idBoard": "61b329f587596a03a0495c38", + "pos": 32767.5, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61b329fac90987800d445eb9", + "name": "2021", + "closed": false, + "idBoard": "61b329f587596a03a0495c38", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "61b329f587596a03a0495c3a" + } + ] + } +] diff --git a/src/trello/test_data/get_card.json b/src/trello/test_data/get_card.json new file mode 100644 index 0000000..811a42a --- /dev/null +++ b/src/trello/test_data/get_card.json @@ -0,0 +1,88 @@ +{ + "id": "list-1-card-1-5abbe4b7ddc1b351ef961414", + "address": "", + "badges": { + "attachmentsByType": { + "trello": { + "board": 2154, + "card": 2154 + } + }, + "location": true, + "votes": 2154, + "viewingMemberVoted": false, + "subscribed": false, + "fogbugz": "", + "checkItems": 0, + "checkItemsChecked": 0, + "comments": 0, + "attachments": 0, + "description": true, + "due": "", + "start": "", + "dueComplete": true + }, + "checkItemStates": [ + "" + ], + "closed": true, + "coordinates": "", + "creationMethod": "", + "dateLastActivity": "2019-09-16T16:19:17.156Z", + "desc": "๐Ÿ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", + "descData": { + "emoji": {} + }, + "due": "", + "dueReminder": "", + "email": "bentleycook+2kea95u7kchsvqnxkwe+2q0byi6qv4pt9uc7q5m+25qyyohtzg@boards.trello.com", + "idBoard": "5abbe4b7ddc1b351ef961414", + "idChecklists": [ + { + "id": "5abbe4b7ddc1b351ef961414" + } + ], + "idLabels": [ + { + "id": "5abbe4b7ddc1b351ef961414", + "idBoard": "5abbe4b7ddc1b351ef961414", + "name": "Overdue", + "color": "yellow" + } + ], + "idList": "id-for-inbox-5dbd5a88b09f840da3174607", + "idMembers": [ + "5abbe4b7ddc1b351ef961414" + ], + "idMembersVoted": [ + "5abbe4b7ddc1b351ef961414" + ], + "idShort": 2154, + "labels": [ + "5abbe4b7ddc1b351ef961414" + ], + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 32400 + } + } + }, + "locationName": "", + "manualCoverAttachment": false, + "name": "๐Ÿ‘‹ What? Why? How?", + "pos": 65535, + "shortLink": "H0TZyzbK", + "shortUrl": "https://trello.com/c/H0TZyzbK", + "subscribed": false, + "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", + "cover": { + "color": "yellow", + "idUploadedBackground": true, + "size": "normal", + "brightness": "light", + "isTemplate": false + } +} diff --git a/src/trello/test_data/get_lists_cards.json b/src/trello/test_data/get_lists_cards.json new file mode 100644 index 0000000..b1bbd4f --- /dev/null +++ b/src/trello/test_data/get_lists_cards.json @@ -0,0 +1,86 @@ +[ + { + "id": "5abbe4b7ddc1b351ef961414", + "address": "", + "badges": { + "attachmentsByType": { + "trello": { + "board": 2154, + "card": 2154 + } + }, + "location": true, + "votes": 2154, + "viewingMemberVoted": false, + "subscribed": false, + "fogbugz": "", + "checkItems": 0, + "checkItemsChecked": 0, + "comments": 0, + "attachments": 0, + "description": true, + "due": "", + "start": "", + "dueComplete": true + }, + "checkItemStates": [ + "" + ], + "closed": true, + "coordinates": "", + "creationMethod": "", + "dateLastActivity": "2019-09-16T16:19:17.156Z", + "desc": "๐Ÿ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", + "descData": { + "emoji": {} + }, + "due": "", + "dueReminder": "", + "email": "bentleycook+2kea95u7kchsvqnxkwe+2q0byi6qv4pt9uc7q5m+25qyyohtzg@boards.trello.com", + "idBoard": "5abbe4b7ddc1b351ef961414", + "idChecklists": [ + { + "id": "5abbe4b7ddc1b351ef961414" + } + ], + "idLabels": [ + { + "id": "5abbe4b7ddc1b351ef961414", + "idBoard": "5abbe4b7ddc1b351ef961414", + "name": "Overdue", + "color": "yellow" + } + ], + "idList": "5abbe4b7ddc1b351ef961414", + "idMembers": [ + "5abbe4b7ddc1b351ef961414" + ], + "idMembersVoted": [ + "5abbe4b7ddc1b351ef961414" + ], + "idShort": 2154, + "labels": [ + "5abbe4b7ddc1b351ef961414" + ], + "limits": { + "attachments": { + "perBoard": {} + } + }, + "locationName": "", + "manualCoverAttachment": false, + "name": "๐Ÿ‘‹ What? Why? How?", + "pos": 65535, + "shortLink": "H0TZyzbK", + "shortUrl": "https://trello.com/c/H0TZyzbK", + "subscribed": false, + "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", + "cover": { + "color": "yellow", + "idUploadedBackground": true, + "size": "normal", + "brightness": "light", + "isTemplate": false + } + } +] diff --git a/src/trello/test_data/get_members_boards_lists.json b/src/trello/test_data/get_members_boards_lists.json new file mode 100644 index 0000000..3458cab --- /dev/null +++ b/src/trello/test_data/get_members_boards_lists.json @@ -0,0 +1,6149 @@ +[ + { + "id": "5db72d5517a6135e166fd862", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5db72d5517a6135e166fd862", + "name": "0 Business: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/kWgYNeqh/0-business-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "admins", + "selfJoin": false, + "cardCovers": false, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": true, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5d6ff7a71cb8f4728ee296b6", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1330x2048/fbca9b0152b03e80427d46313c352f88/photo-1567540017993-c888313000b1", + "backgroundImageScaled": [ + { + "width": 65, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/65x100/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 125, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/125x192/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 312, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/312x480/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 623, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/623x960/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 665, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/665x1024/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 831, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/831x1280/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 1039, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1039x1600/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 1247, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1247x1920/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 1330, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1330x2048/fbca9b0152b03e80427d46313c352f88/photo-1567540017993-c888313000b1" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#1b1c10", + "backgroundTopColor": "#41343c", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "kWgYNeqh", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "Priority", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-09-28T05:00:44.356Z", + "dateLastView": "2022-11-05T21:08:10.919Z", + "shortUrl": "https://trello.com/b/kWgYNeqh", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "22977", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5dbd5a88b09f840da3174607", + "name": "Inbox", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 1024, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6111217568bb1c4e776454ea", + "name": "Icebox", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 1536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db72d67065e9f2d74e8ced6", + "name": "To Do", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 2048, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db72d6771317223e211137e", + "name": "Doing", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 4096, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db72d6b99e4202e77dca13c", + "name": "Done", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 4608, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db72d6809328b601e89f71d", + "name": "Waiting", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 5120, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db832319b40204b7b01f228", + "name": "Resources", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 6144, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db82eac6d953a6029245c88", + "name": "Decisions", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 7168, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5dbae09f8f45782cafc09b2c", + "name": "Recurring Costs", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 7680, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db855cc712dfb73787d1b15", + "name": "Ideas", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 8192, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5db72d5517a6135e166fd863" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a585ab8c0a017752d0b5" + } + ] + }, + { + "id": "5ecbae5cbf50fc4fa0e541fd", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5ecbae5cbf50fc4fa0e541fd", + "name": "3 Editing: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": true, + "dateClosed": "2023-02-03T14:08:27.015Z", + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/4yHPRhO7/3-editing-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": true, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ec555ba8840e541f247bd3c", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/fc002594d99b978797bb8b1031d392e5/photo-1589952652973-f72cc8cff072", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 641, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/641x960/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 684, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/684x1024/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 854, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/854x1280/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 1068, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1068x1600/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 1282, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1282x1920/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 1367, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/fc002594d99b978797bb8b1031d392e5/photo-1589952652973-f72cc8cff072" + } + ], + "backgroundTile": false, + "backgroundBrightness": "light", + "backgroundBottomColor": "#372923", + "backgroundTopColor": "#ccccd1", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "4yHPRhO7", + "subscribed": false, + "labelNames": { + "green": "original", + "yellow": "reprint", + "orange": "Steampunk", + "red": "Diversity", + "purple": "Fantasy", + "blue": "Science Fiction", + "sky": "Super Hero", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-02-03T14:08:04.681Z", + "dateLastView": "2023-02-03T14:08:32.040Z", + "shortUrl": "https://trello.com/b/4yHPRhO7", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "3877", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5dc4a5568b91e537c320b519", + "name": "Offered To Buy", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 16384, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e63fe157bbe2c65a74f61dc", + "name": "Accepted", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 35071.984375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5de1801e37f6fa82b2aad397", + "name": "Awaiting Author Approval", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 37375.96875, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e667d40e0bf5b3a5d90a90c", + "name": "Approved by Author", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 41983.9375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6223e559b0ea254f7b949e8d", + "name": "Contract Sent", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 446975.46875, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "623ccc60aeb4d362b802f43c", + "name": "Contract Accepted", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 649471.234375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60fbc72fa9279c112f512bec", + "name": "The Third Year (December 2023)", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 1114111, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5ecbae5cbf50fc4fa0e541fe" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a5a59547a03350c321d0" + } + ] + }, + { + "id": "5eccb96b04b4dc5666c64b7c", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5eccb96b04b4dc5666c64b7c", + "name": "4 Published: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/23WYNmUU/4-published-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ecc9f06dd97866e7108a986", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c675dc447afa6380566e25697420129c/photo-1590418606746-018840f9cd0f", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 640, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 683, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 853, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 1066, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 1280, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 1365, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c675dc447afa6380566e25697420129c/photo-1590418606746-018840f9cd0f" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#040c17", + "backgroundTopColor": "#081b30", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "23WYNmUU", + "subscribed": false, + "labelNames": { + "green": "Original", + "yellow": "Reprint", + "orange": "Steampunk", + "red": "Diversity", + "purple": "Fantasy", + "blue": "Science Fiction", + "sky": "Super Hero", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-12-10T11:01:27.897Z", + "dateLastView": "2022-04-23T10:52:31.930Z", + "shortUrl": "https://trello.com/b/23WYNmUU", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "744", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "60fbc726a3903923507a2338", + "name": "The Second Year (December 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 128, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60fbc6c28fc1951d2df2ee91", + "name": "Issue 9 (July 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 256, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60fbc6b75c4e737f11ed0a4e", + "name": "Issue 8 (April 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 512, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5dc1a3cc9443cf290e105a9e", + "name": "Issue 7 (January 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 1024, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5de68ade15e1dc10b583219e", + "name": "The First Year (December 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 1536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5de180297a9256384304b895", + "name": "Issue 6 (September 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 2048, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "608d49098982605e432a5ca8", + "name": "Issue 5 (May 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 4096, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5feee474f6196034f2240dd9", + "name": "Issue 4 (January 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 8192, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5ecbafb3e45d5c6887dad01d", + "name": "Issue 3 (September 2020)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 16384, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5dc089109931266c657dbbd5", + "name": "Issue 2 (May 2020)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 65536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5ecbaf7e12407531cf59587f", + "name": "Issue 1 (January 2020)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 81920, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5eccb96b04b4dc5666c64b7d" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a5c13fed3116ca679185" + } + ] + }, + { + "id": "62ce6644f1613e2eb5c23b35", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/62ce6644f1613e2eb5c23b35", + "name": "Daily Notes 2022", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/kdAaLE1K/daily-notes-2022", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "62ce4e114295df64218b6d2b", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/a944ca5a6d460984c467c0f148107ac0/photo-1657586640569-4a3d4577328c", + "backgroundImageScaled": [ + { + "width": 132, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/132x100/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 253, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/253x192/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 480, + "height": 365, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x365/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 960, + "height": 729, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x729/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 1024, + "height": 778, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x778/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 1280, + "height": 973, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x973/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 1920, + "height": 1459, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1459/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 2048, + "height": 1556, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1556/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 2106, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2106x1600/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 2560, + "height": 1945, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/a944ca5a6d460984c467c0f148107ac0/photo-1657586640569-4a3d4577328c" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0c0c14", + "backgroundTopColor": "#1e3345", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "kdAaLE1K", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-07-14T05:56:47.280Z", + "dateLastView": "2022-07-14T06:01:48.959Z", + "shortUrl": "https://trello.com/b/kdAaLE1K", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "53", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "62ce665e3b71cd63fbb04ea4", + "name": "July", + "closed": false, + "idBoard": "62ce6644f1613e2eb5c23b35", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "62ce666deae66c2ea3169913", + "name": "August", + "closed": false, + "idBoard": "62ce6644f1613e2eb5c23b35", + "pos": 131071, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "62ce6644f1613e2eb5c23b3d" + } + ] + }, + { + "id": "5e6cb04f4f9a8b071f151037", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/5e6cb04f4f9a8b071f151037", + "name": "DevProjects", + "desc": "Simple board to start on a project.\n\nEach list can hold items (cards) that represent ideas or tasks.\n\nThere 4 lists here:\n\n* **BRAINSTORM ๐Ÿค”** : Ideas are created here. Here people can describe the idea following three simple questions: Why you wish to do it, What it is, how can you do it.\n\n* **TODO ๐Ÿ“š**: Once the ideas is clearly defined, the task can move to #todo stage. Here the owner of the idea can move to #doing once s/he is ready. He can also wait a bit for other members to join.\n* **DOING โš™๏ธ**: On-going\n* **DONE! ๐Ÿ™Œ๐Ÿฝ**: Finished\n\nYou could add other lists like **labels** holding labels (with colors) in order to tag each card by a label if you wish.", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/9ltBSkNA/devprojects", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5e6a85be32376b62ac13e902", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/1ad3a3d75de075cbafe780a25e6f61a3/photo-1583826476986-5be438394228", + "backgroundImageScaled": [ + { + "width": 75, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/75x100/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 144, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/144x192/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 360, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/360x480/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 721, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/721x960/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 769, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/769x1024/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 961, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/961x1280/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 1202, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1202x1600/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 1442, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1442x1920/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 1538, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/1ad3a3d75de075cbafe780a25e6f61a3/photo-1583826476986-5be438394228" + } + ], + "backgroundTile": false, + "backgroundBrightness": "light", + "backgroundBottomColor": "#cdb3ad", + "backgroundTopColor": "#c7c5d2", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "9ltBSkNA", + "subscribed": false, + "labelNames": { + "green": "Foo", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-12-01T18:40:40.174Z", + "dateLastView": "2022-12-01T18:57:37.354Z", + "shortUrl": "https://trello.com/b/9ltBSkNA", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "1905", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5e110382bbcd021dda283413", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": null, + "lists": [ + { + "id": "5e6cb04f4f9a8b071f151038", + "name": "BRAINSTORM ๐Ÿค”", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e6cb04f4f9a8b071f151039", + "name": "TODO ๐Ÿ“š", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 131071, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e6cb04f4f9a8b071f15103a", + "name": "DOING โš™๏ธ", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 196607, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e6cb04f4f9a8b071f15103b", + "name": "DONE! ๐Ÿ™Œ๐Ÿฝ", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 262143, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6251499fd108413e3afabac5", + "name": "Icebox โ„๏ธ", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 327679, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5e6cb0504f9a8b071f1510ec" + } + ] + }, + { + "id": "5ddd02148100bc44f129a16e", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5ddd02148100bc44f129a16e", + "name": "Fulfilment: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/rAjEe86K/fulfilment-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ddc25fe8ffbae5b78bce77e", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83", + "backgroundImageScaled": [ + { + "width": 140, + "height": 93, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 256, + "height": 171, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 480, + "height": 320, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 960, + "height": 640, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x640/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1024, + "height": 683, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x683/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1280, + "height": 854, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x854/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1920, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1280/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2048, + "height": 1366, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1366/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2400, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2400x1600/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2560, + "height": 1707, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#141c24", + "backgroundTopColor": "#b7b0b1", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "rAjEe86K", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "Donating Refund", + "purple": "", + "blue": "", + "sky": "Cancelled Subscription", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-01-02T10:00:06.729Z", + "dateLastView": "2022-10-03T15:34:26.296Z", + "shortUrl": "https://trello.com/b/rAjEe86K", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "9216", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5dfbb9b11fdf5782a5c7bf28", + "name": "Inbox", + "closed": false, + "idBoard": "5ddd02148100bc44f129a16e", + "pos": 16383.75, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "622b0d2d419c1f8b8c389841", + "name": "Sub y3", + "closed": false, + "idBoard": "5ddd02148100bc44f129a16e", + "pos": 99039.68994140625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61b4e4ede1b9d65d6cb8ad52", + "name": "Completed", + "closed": false, + "idBoard": "5ddd02148100bc44f129a16e", + "pos": 815103.5625, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5ddd02148100bc44f129a16f" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a5995f6a287e3d1d18ba" + } + ] + }, + { + "id": "5fcbcabef8585f0bff23c51a", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5fcbcabef8585f0bff23c51a", + "name": "Games", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/TPqHmpPa/games", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "blue", + "backgroundColor": "#0079BF", + "backgroundImage": null, + "backgroundImageScaled": null, + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0079BF", + "backgroundTopColor": "#0079BF", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "TPqHmpPa", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-10-31T15:16:27.532Z", + "dateLastView": "2022-10-31T15:16:27.646Z", + "shortUrl": "https://trello.com/b/TPqHmpPa", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "125", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5fcbcad69beb851cea19a81e", + "name": "Wanted", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 49152, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcadbc0523764c513839e", + "name": "To Play", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 65536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcacdd0388810412a91df", + "name": "Playing", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 69632, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcac2a5318b808af2bbdb", + "name": "Played", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 73728, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcae20d0cbe4ce5b3be49", + "name": "Dropped", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 81920, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5fcbcabef8585f0bff23c51b" + } + ] + }, + { + "id": "613477c6376fa35c23defff6", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/613477c6376fa35c23defff6", + "name": "Mise-En-Place PPS", + "desc": "Increase your personal productivity each week with this board that Justin Gallagher, one of the creators of Trello, uses every day. Split your work into very specific lists so nothing falls through the cracks. Use the reference list to keep important information on hand. Hold yourself accountable with meeting notes, and most importantly spend some time each morning planning out the day ahead.\n\n**[Read Justin's full post](https://blog.trello.com/work-life-focus-trello-insider-guide-personal-productivity)** on the Trello blog to learn more about his personal productivity methodology. ", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/CF4prM1s/mise-en-place-pps", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5acb964a58a42a2abbad9f5a", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1709/97b3e696535030e9efae21381993cbdc/photo-1523266092241-0077129f31fe", + "backgroundImageScaled": [ + { + "width": 140, + "height": 93, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/ec3943cf765bb8e25072b0b6881626f5/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 256, + "height": 171, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/a2bad7a28cf88285432f538f34ba702c/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 480, + "height": 320, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/963ddbe30ac0e2ab51ed5ed7403a5143/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 960, + "height": 641, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x641/dc77db9bf1a35c4f1df32bc6c700ccc9/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 1024, + "height": 684, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x684/7ba65e8b0b851c59a154ee3904f66233/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 1280, + "height": 855, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x855/d4758880f39d1b3cb86c38c836d81cc8/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 1920, + "height": 1282, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1282/3e0a1bf9d43e86ae99f0831d67f3ec98/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 2048, + "height": 1367, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1367/5c5e57f4fa99eea9827c0d3567165be4/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 2397, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2397x1600/09074ade5bff1456ea55337903851c92/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 2560, + "height": 1709, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1709/97b3e696535030e9efae21381993cbdc/photo-1523266092241-0077129f31fe" + } + ], + "backgroundTile": false, + "backgroundBrightness": "light", + "backgroundBottomColor": "#cac9c7", + "backgroundTopColor": "#ebecec", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "CF4prM1s", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-06-11T13:27:31.531Z", + "dateLastView": "2023-07-22T13:53:53.566Z", + "shortUrl": "https://trello.com/b/CF4prM1s", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "2328", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5d9389e457df5203e183a38e", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "645b6a06ccb1bbd2288b4227", + "name": "Today", + "closed": false, + "idBoard": "613477c6376fa35c23defff6", + "pos": 98303.5, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "613477c7376fa35c23df00a9" + }, + { + "idMember": "61360b3b357aa7338a8638c2", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "61360b7d1bd2068f9d252be2" + } + ] + }, + { + "id": "63da0b913365d587f15371fb", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/63da0b913365d587f15371fb", + "name": "Project Management", + "desc": "**Manage Projects To Perfection**\n\nBig dreams turn into bigger results with a killer project plan. Use this basic structure to build your team's ideal workflow, for projects big or small.\n\nHere's what's included, and how to get this project management party started:\n\n1. **Resources (Start Here!):**\nThis list is perfect for you and your team to have all those documents, specs, designs, or anything you tend to reference all the time. Meeting schedules and answers to common questions are also recommended to pop into this list so that your team is informed at all times. ๐Ÿ“š\n\n2. **Questions For Next Meeting:**\nNever again forget that important question you thought of in the shower this morning! Slide your Q's into this handy list so your team keeps on flowing. ๐ŸŒŠ\n\n3. **To Do:**\nThe mother of all listsโ€”the good ol' To Do. This is where assigned tasks live so that your team can see who's working on what and when it's due. Crystal clear all day, week, and month. ๐Ÿ”ฎ\n\n4. **Pending:**\nWe all have those in-between tasks that are technically done but also awkwardly waiting for another step. That's where the Pending list comes into play, use this list to share what those next mini-steps are with your team. ๐Ÿ’ฌ\n\n5. **Blocked:**\nWith any successful project comes at least one inevitable blocker. Splash those red-tape, blocking issues that are slowing your team down so you can tackle it in the best way; together. ๐Ÿšท\n\n6. **Done:**\nOur favorite list, the Done list. Stop, drag, and drop! For all your finished tasks that your team has hustled on and feels proud of. โœจ", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/yBEvKW0j/project-management", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5cd970f5caac7789cddf154d", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1792/a8862beec5de129bafebd731db9e1275/photo-1557682250-33bd709cbe85", + "backgroundImageScaled": [ + { + "width": 140, + "height": 98, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x98/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 256, + "height": 179, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x179/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 480, + "height": 336, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x336/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 960, + "height": 672, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x672/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 1024, + "height": 717, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x717/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 1280, + "height": 896, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x896/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 1920, + "height": 1344, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1344/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 2048, + "height": 1434, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1434/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 2286, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2286x1600/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 2560, + "height": 1792, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1792/a8862beec5de129bafebd731db9e1275/photo-1557682250-33bd709cbe85" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#8737a3", + "backgroundTopColor": "#4126ab", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "yBEvKW0j", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "Copy Request", + "orange": "One more step", + "red": "Priority", + "purple": "Design Team", + "blue": "Product Marketing", + "sky": "Trello Tip", + "lime": "Halp", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-02-12T17:56:10.252Z", + "dateLastView": "2023-02-12T19:21:03.774Z", + "shortUrl": "https://trello.com/b/yBEvKW0j", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "1248", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5c3e2fdb0fa92e43b849d838", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "63e7f1519783b276b819b90a", + "name": "Inbox", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 17407.828125, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537202", + "name": "Project Resources", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 34815.65625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537203", + "name": "Questions For Next Meeting", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 53247.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537204", + "name": "To Do", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 90111.375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537205", + "name": "Pending", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 96255.34375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537206", + "name": "Blocked", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 102399.3125, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537207", + "name": "Done", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 245759.25, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "63da0b913365d587f1537253" + } + ] + }, + { + "id": "5d9a1af1f3e8b612d60a896b", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5d9a1af1f3e8b612d60a896b", + "name": "Reading", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": true, + "url": "https://trello.com/b/66Rep4Or/reading", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5d99bfa44775c4652ede8802", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1922/09d17f5d473b9cba98ba208a83842426/photo-1570297780229-1125995349ef", + "backgroundImageScaled": [ + { + "width": 133, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/133x100/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 256, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x192/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 480, + "height": 360, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x360/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 960, + "height": 721, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x721/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 1024, + "height": 769, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x769/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 1280, + "height": 961, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x961/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 1920, + "height": 1442, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1442/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 2048, + "height": 1538, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1538/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 2131, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2131x1600/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 2560, + "height": 1922, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1922/09d17f5d473b9cba98ba208a83842426/photo-1570297780229-1125995349ef" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#483827", + "backgroundTopColor": "#624a35", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "66Rep4Or", + "subscribed": false, + "labelNames": { + "green": "Podcast", + "yellow": "", + "orange": "Audiobook", + "red": "Audible", + "purple": "Attached", + "blue": "Subscribed Magazines", + "sky": "Online", + "lime": "Hardcopy", + "pink": "Kindle", + "black": "Reading with Orla", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "Kobo", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "To-Buy", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-10-09T10:31:06.494Z", + "dateLastView": "2023-10-04T15:52:33.538Z", + "shortUrl": "https://trello.com/b/66Rep4Or", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "64741", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5d9a1b165e92ea17d465b495", + "name": "Inbox", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d9a1b1b2073aa47505ebf24", + "name": "TBR", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 66559, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d9a1b1c40bdd81ba37a6d55", + "name": "Reading", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 140159, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63c4327ba40561019335e0e9", + "name": "Read Female 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 294911, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63c43275b7482d01eb4b54d1", + "name": "Read Male 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 327679, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63ef994e7a3eaec4d82be5e7", + "name": "Listened Podcast 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 344063, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63c4328188571a00e726948e", + "name": "Read Magazine 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 360447, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5da1acd14c099c3dcc885fbf", + "name": "Hiatus", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 425983, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "64745329e5b24abef08e3e1a", + "name": "Abandonded/Returned", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 491519, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6484c70aa08882f218d684aa", + "name": "unhaul", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 557055, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5d9a1af1f3e8b612d60a896c" + } + ] + }, + { + "id": "60548b78f692826d0d2158c9", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/60548b78f692826d0d2158c9", + "name": "Reading Archive", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/rtDb0yQ6/reading-archive", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "6054857d30484206448fb45c", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/145f72add00b7bc90523ee34546f387c/photo-1616067113035-2987dea36523", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 640, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 683, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 853, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 1066, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 1280, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 1365, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/145f72add00b7bc90523ee34546f387c/photo-1616067113035-2987dea36523" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#040509", + "backgroundTopColor": "#060a14", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "rtDb0yQ6", + "subscribed": false, + "labelNames": { + "green": "Podcast", + "yellow": "", + "orange": "Audiobook", + "red": "Audible", + "purple": "Calibre Library", + "blue": "Subscribed Magazines", + "sky": "Online", + "lime": "Hardcopy", + "pink": "https://www.audible.co.uk/", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-05-05T13:45:17.686Z", + "dateLastView": "2023-09-24T15:28:11.680Z", + "shortUrl": "https://trello.com/b/rtDb0yQ6", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "332", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "61d9416975329115c84b84f4", + "name": "Read Female 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 269, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61d94161a9e67520f24aa1e5", + "name": "Read Male 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 539, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61d941715004c44e15a23f6b", + "name": "Read Magazines 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 1079, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5da1acd92aa4e93e4b343d0f", + "name": "Abandoned 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 2159, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "606c49c8f6e4f17af1fcbf45", + "name": "Unhaul 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 4319, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60548a3d49b84846d7be27ff", + "name": "Read Male 2021", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 8639, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61cebec468e1c45915d09a91", + "name": "Read Female 2021", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 17279, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61cebeb35540a1567bdc7716", + "name": "Read Magazines 2021", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 34559, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d9a1b1fd35ffc7a485d3a10", + "name": "Read 2020", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 69119, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "60548b78f692826d0d2158ca" + } + ] + }, + { + "id": "609803b797dec552d62e0497", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/609803b797dec552d62e0497", + "name": "TESTING-FULLER", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/TQvj081Z/testing-fuller", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ddc25fe8ffbae5b78bce77e", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83", + "backgroundImageScaled": [ + { + "width": 140, + "height": 93, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 256, + "height": 171, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 480, + "height": 320, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 960, + "height": 640, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x640/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1024, + "height": 683, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x683/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1280, + "height": 854, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x854/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1920, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1280/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2048, + "height": 1366, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1366/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2400, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2400x1600/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2560, + "height": 1707, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#141c24", + "backgroundTopColor": "#b7b0b1", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "TQvj081Z", + "subscribed": false, + "labelNames": { + "green": "PreOrder", + "yellow": "SingleIssue", + "orange": "Promotional", + "red": "TESTING", + "purple": "", + "blue": "Subscription", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2021-05-16T21:05:59.622Z", + "dateLastView": "2021-05-16T21:05:59.807Z", + "shortUrl": "https://trello.com/b/TQvj081Z", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "104", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5ddd02148100bc44f129a16e", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "609803b797dec552d62e0498", + "name": "Inbox", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 16383.75, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e0499", + "name": "Sub 6-8", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 80895.703125, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049a", + "name": "Sub 5-7", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 145407.65625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049b", + "name": "Issue 6", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 332799.609375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049c", + "name": "Sub 4-6", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 520191.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049d", + "name": "Issue 5", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 524287.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049e", + "name": "Sub 3-5", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 536575.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049f", + "name": "Issue 4", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 538623.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a0", + "name": "Sub 2-4", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 544767.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a1", + "name": "Issue 3", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 546815.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a2", + "name": "Sub 1-3", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 552959.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a3", + "name": "Issue 2", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 585727.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a4", + "name": "Issue 1", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 618495.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a5", + "name": "Order Received", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 684031, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a6", + "name": "PRODUCTS", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 749567, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "609803b897dec552d62e06af" + } + ] + }, + { + "id": "5e18d2687e10b94326d5255f", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/5e18d2687e10b94326d5255f", + "name": "TESTING-SLUSHPILE", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/ObFxS06C/testing-slushpile", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "admins", + "selfJoin": false, + "cardCovers": false, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5d80f70b060c574f45ecc1f0", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1367x2048/e3f86fba993a9f7bf2ab03234b25a022/photo-1568313081041-dbd174f69e3b", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 641, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/641x960/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 684, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/684x1024/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 854, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/854x1280/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 1068, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1068x1600/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 1282, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1282x1920/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 1367, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1367x2048/e3f86fba993a9f7bf2ab03234b25a022/photo-1568313081041-dbd174f69e3b" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#151b0d", + "backgroundTopColor": "#18200e", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "ObFxS06C", + "subscribed": false, + "labelNames": { + "green": "original", + "yellow": "reprint", + "orange": "Steampunk", + "red": "Super Hero", + "purple": "Fantasy", + "blue": "Science Fiction", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-09-29T21:27:05.658Z", + "dateLastView": "2022-09-29T21:27:05.745Z", + "shortUrl": "https://trello.com/b/ObFxS06C", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "15611", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": null, + "lists": [ + { + "id": "606edbe44502b6842c027a0b", + "name": "Slushy", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 15359.34375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f51dcabd866d6149c8294e8", + "name": "MASTER TEST CARDS", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 20479.6875, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52560", + "name": "Inbox", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 40959.375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f50a447ad9fc758a8c11f13", + "name": "Send to Reader", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 71167, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52561", + "name": "Slush", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 72575, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f50a741bdb4ca73a450938e", + "name": "To Re-read", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 73983, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52562", + "name": "Hold", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 76799, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f397c9a5d99ac46280dc439", + "name": "Held", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 82431, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52563", + "name": "Reject", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 88063, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52564", + "name": "Rejected", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 104447, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f5297cdcf607e15aea14b5d", + "name": "Withdraw", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 107519, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52566", + "name": "To Offer", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 209663, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5e18d2687e10b94326d52599" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "615a9bc91140c86c02ed491b" + } + ] + }, + { + "id": "63a9f88e6bb1ef0fd072244a", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/63a9f88e6bb1ef0fd072244a", + "name": "TESTING-SYNC-OPENPROJECT", + "desc": "Use this board to get things done. It isnโ€™t just about shipping a product, or checking off items on a list, or even about marking a project as Done. Getting things done is a process: itโ€™s a way of thinking that involves planning, execution, iteration, and reflection.\n\nLearn more here: https://blog.trello.com/how-to-scrum-and-trello-for-teams-at-work", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/4yCcEqgT/testing-sync-openproject", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "54c9404f266fc5499138400b", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/4200x4200/48dbf0b5a546541e847e267a5dcd2201/shutterstock_134707556.jpg", + "backgroundImageScaled": [ + { + "width": 140, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/140x100/6eab501206dcefb7481f43c783247d36/shutterstock_134707556.jpg" + }, + { + "width": 256, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/256x192/b2ffcdd02026a264e454afa9ed093adf/shutterstock_134707556.jpg" + }, + { + "width": 480, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/480x480/96406688eb291c869064290cfb9b0c80/shutterstock_134707556.jpg" + }, + { + "width": 960, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/960x960/4b4c1f7c6678833b87f3719d90a92d67/shutterstock_134707556.jpg" + }, + { + "width": 1024, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/1024x1024/0cef9f5b83f22bd910e3f528dfac01c0/shutterstock_134707556.jpg" + }, + { + "width": 1280, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/1280x1280/b1bfc2f211e11d35cd7faf1f58a41d1d/shutterstock_134707556.jpg" + }, + { + "width": 1920, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/1920x1920/50c43401f7d28b15a414fdd6ac68d94a/shutterstock_134707556.jpg" + }, + { + "width": 2048, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/2048x2048/22ec03aab9d36ea49139c569a62bb079/shutterstock_134707556.jpg" + }, + { + "width": 2560, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/2560x1600/e2a9f6205a29cdba36f3e2ab83c57b20/shutterstock_134707556.jpg" + }, + { + "width": 4200, + "height": 4200, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/4200x4200/48dbf0b5a546541e847e267a5dcd2201/shutterstock_134707556.jpg" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#f85f6c", + "backgroundTopColor": "#bda8b9", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "4yCcEqgT", + "subscribed": false, + "labelNames": { + "green": "Marketing", + "yellow": "Day", + "orange": "Remarket", + "red": "", + "purple": "Demand Marketing", + "blue": "Partners", + "sky": "Government", + "lime": "Planning", + "pink": "Happiness", + "black": "OEM", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-06-11T13:27:33.273Z", + "dateLastView": "2023-07-22T13:53:54.652Z", + "shortUrl": "https://trello.com/b/4yCcEqgT", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "1142", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "54c93f6f836da7c4865460d2", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "63a9f88e6bb1ef0fd0722451", + "name": "Done", + "closed": false, + "idBoard": "63a9f88e6bb1ef0fd072244a", + "pos": 65535.5, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "63a9f88e6bb1ef0fd0722509" + } + ] + }, + { + "id": "5f5f651516b6bf442f1f9726", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5f5f651516b6bf442f1f9726", + "name": "Watching", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/3S3CaouQ/watching", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "red", + "backgroundColor": "#B04632", + "backgroundImage": null, + "backgroundImageScaled": null, + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#B04632", + "backgroundTopColor": "#B04632", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "3S3CaouQ", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-10-31T15:17:16.701Z", + "dateLastView": "2022-10-31T15:17:16.872Z", + "shortUrl": "https://trello.com/b/3S3CaouQ", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "30", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5f5f651db1d032287e2c2d87", + "name": "To Watch", + "closed": false, + "idBoard": "5f5f651516b6bf442f1f9726", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f5f6521b44b742e469fa152", + "name": "Watched", + "closed": false, + "idBoard": "5f5f651516b6bf442f1f9726", + "pos": 131071, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5f5f651516b6bf442f1f9727" + } + ] + }, + { + "id": "5d99a04c82370566a5087a20", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5d99a04c82370566a5087a20", + "name": "Writing", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/ki1dtTv9/writing", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5c06915291f9bd120641df0a", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1440/fe6df12770989dd8964acc05c2c914ad/photo-1475694867812-f82b8696d610", + "backgroundImageScaled": [ + { + "width": 140, + "height": 79, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x79/bb2f6616f60f0409e243ff2a1d96a43b/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 256, + "height": 144, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x144/a7ae169a8a884e281d5b1a71b3990be0/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 480, + "height": 270, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x270/b731e491378d006fd93943ff2a7fcde9/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 960, + "height": 540, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x540/3c5790055f29c56c8d4dfefb513b83ca/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 1024, + "height": 576, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x576/5854aa8100253f07433a3e0671acee2b/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 1280, + "height": 720, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x720/f6c8b6d71692800acfce441bf5f9a245/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 1920, + "height": 1080, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1080/43218755281d7434f638867d8edb9dd6/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 2048, + "height": 1152, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/d3068ddb3ae7ebb8947a04e7c9b18610/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 2560, + "height": 1440, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1440/fe6df12770989dd8964acc05c2c914ad/photo-1475694867812-f82b8696d610" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0a7ba3", + "backgroundTopColor": "#a0baca", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "ki1dtTv9", + "subscribed": false, + "labelNames": { + "green": "short", + "yellow": "novel", + "orange": "cossmass", + "red": "azaktolo", + "purple": "folded-cities", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2019-10-06T11:58:02.031Z", + "dateLastView": "2020-03-10T22:34:35.972Z", + "shortUrl": "https://trello.com/b/ki1dtTv9", + "idTags": [], + "datePluginDisable": null, + "creationMethod": "assisted", + "ixUpdate": "140", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5d99a04d91c0843c685aa510", + "name": "Story Ideas", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 1, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a04dd6d75a194dbd2bb0", + "name": "World Building", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 2, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a04d937a832121b0dc37", + "name": "Plot & Character", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 3, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99c4129c6bc71d9d2cfbd7", + "name": "Back Burner", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 32771, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a059d2c272050c79304c", + "name": "Writing Draft 1", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 65539, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a05d6b09200e44cde7d4", + "name": "Resting", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 131075, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a0615ffbc0271bfd80b8", + "name": "Writing Draft N", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 196611, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a07461763b0d185bc0ca", + "name": "Written", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 262147, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a07de8ec18195190ebf0", + "name": "Submitted", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 327683, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a082b8b79431b554ccce", + "name": "Published", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 393219, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a0858eb9de21e952de00", + "name": "Trunked", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 458755, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5d99a04c82370566a5087a21" + } + ] + }, + { + "id": "61b329f587596a03a0495c38", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/61b329f587596a03a0495c38", + "name": "XMas", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/YBRTxt45/xmas", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "61b318af50580a4f547f9fb7", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/d6c275126c733e93aa701175814e0f59/photo-1638989533154-9cd6ae98c659", + "backgroundImageScaled": [ + { + "width": 140, + "height": 79, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x79/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 256, + "height": 144, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x144/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 480, + "height": 270, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x270/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 960, + "height": 540, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x540/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 1024, + "height": 576, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x576/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 1280, + "height": 720, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x720/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 1920, + "height": 1080, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1080/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 2048, + "height": 1152, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 2560, + "height": 1440, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/d6c275126c733e93aa701175814e0f59/photo-1638989533154-9cd6ae98c659" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0a0607", + "backgroundTopColor": "#d1c6c9", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "YBRTxt45", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-10-27T18:32:04.155Z", + "dateLastView": "2022-10-27T18:32:04.247Z", + "shortUrl": "https://trello.com/b/YBRTxt45", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "968", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "634295f35b2f5d0070df0b94", + "name": "2022", + "closed": false, + "idBoard": "61b329f587596a03a0495c38", + "pos": 32767.5, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61b329fac90987800d445eb9", + "name": "2021", + "closed": false, + "idBoard": "61b329f587596a03a0495c38", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "61b329f587596a03a0495c3a" + } + ] + } +] diff --git a/src/trello/test_data/list-1-cards.json b/src/trello/test_data/list-1-cards.json new file mode 100644 index 0000000..670901b --- /dev/null +++ b/src/trello/test_data/list-1-cards.json @@ -0,0 +1,86 @@ +[ + { + "id": "5abbe4b7ddc1b351ef961414", + "address": "", + "badges": { + "attachmentsByType": { + "trello": { + "board": 2154, + "card": 2154 + } + }, + "location": true, + "votes": 2154, + "viewingMemberVoted": false, + "subscribed": false, + "fogbugz": "", + "checkItems": 0, + "checkItemsChecked": 0, + "comments": 0, + "attachments": 0, + "description": true, + "due": "", + "start": "", + "dueComplete": true + }, + "checkItemStates": [ + "" + ], + "closed": true, + "coordinates": "", + "creationMethod": "", + "dateLastActivity": "2019-09-16T16:19:17.156Z", + "desc": "๐Ÿ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", + "descData": { + "emoji": {} + }, + "due": "", + "dueReminder": "", + "email": "bentleycook+2kea95u7kchsvqnxkwe+2q0byi6qv4pt9uc7q5m+25qyyohtzg@boards.trello.com", + "idBoard": "5abbe4b7ddc1b351ef961414", + "idChecklists": [ + { + "id": "5abbe4b7ddc1b351ef961414" + } + ], + "idLabels": [ + { + "id": "5abbe4b7ddc1b351ef961414", + "idBoard": "5abbe4b7ddc1b351ef961414", + "name": "Overdue", + "color": "yellow" + } + ], + "idList": "list-1-5abbe4b7ddc1b351ef961414", + "idMembers": [ + "5abbe4b7ddc1b351ef961414" + ], + "idMembersVoted": [ + "5abbe4b7ddc1b351ef961414" + ], + "idShort": 2154, + "labels": [ + "5abbe4b7ddc1b351ef961414" + ], + "limits": { + "attachments": { + "perBoard": {} + } + }, + "locationName": "", + "manualCoverAttachment": false, + "name": "๐Ÿ‘‹ What? Why? How?", + "pos": 65535, + "shortLink": "H0TZyzbK", + "shortUrl": "https://trello.com/c/H0TZyzbK", + "subscribed": false, + "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", + "cover": { + "color": "yellow", + "idUploadedBackground": true, + "size": "normal", + "brightness": "light", + "isTemplate": false + } + } +] diff --git a/src/trello/test_data/list-2-cards.json b/src/trello/test_data/list-2-cards.json new file mode 100644 index 0000000..4503065 --- /dev/null +++ b/src/trello/test_data/list-2-cards.json @@ -0,0 +1,86 @@ +[ + { + "id": "5abbe4b7ddc1b351ef061414", + "address": "", + "badges": { + "attachmentsByType": { + "trello": { + "board": 2154, + "card": 2154 + } + }, + "location": true, + "votes": 2154, + "viewingMemberVoted": false, + "subscribed": false, + "fogbugz": "", + "checkItems": 0, + "checkItemsChecked": 0, + "comments": 0, + "attachments": 0, + "description": true, + "due": "", + "start": "", + "dueComplete": true + }, + "checkItemStates": [ + "" + ], + "closed": true, + "coordinates": "", + "creationMethod": "", + "dateLastActivity": "2019-09-16T16:19:17.156Z", + "desc": "๐Ÿ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", + "descData": { + "emoji": {} + }, + "due": "", + "dueReminder": "", + "email": "bentleycook+2kea95u7kchsvqnxkwe+2q0byi6qv4pt9uc7q5m+25qyyohtzg@boards.trello.com", + "idBoard": "5abbe4b7ddc1b351ef961414", + "idChecklists": [ + { + "id": "5abbe4b7ddc1b351ef961414" + } + ], + "idLabels": [ + { + "id": "5abbe4b7ddc1b351ef961414", + "idBoard": "5abbe4b7ddc1b351ef961414", + "name": "Overdue", + "color": "yellow" + } + ], + "idList": "list-2-5list-2-abbe4b7ddc1b351ef961414", + "idMembers": [ + "5abbe4b7ddc1b351ef961414" + ], + "idMembersVoted": [ + "5abbe4b7ddc1b351ef961414" + ], + "idShort": 2154, + "labels": [ + "5abbe4b7ddc1b351ef961414" + ], + "limits": { + "attachments": { + "perBoard": {} + } + }, + "locationName": "", + "manualCoverAttachment": false, + "name": "Card from list 2", + "pos": 65535, + "shortLink": "H0TZyzbK", + "shortUrl": "https://trello.com/c/H0TZyzbK", + "subscribed": false, + "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", + "cover": { + "color": "yellow", + "idUploadedBackground": true, + "size": "normal", + "brightness": "light", + "isTemplate": false + } + } +] diff --git a/src/trello/test_data/query_tasks/boards.json b/src/trello/test_data/query_tasks/boards.json new file mode 100644 index 0000000..a63b76c --- /dev/null +++ b/src/trello/test_data/query_tasks/boards.json @@ -0,0 +1,6149 @@ +[ + { + "id": "5db72d5517a6135e166fd862", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5db72d5517a6135e166fd862", + "name": "0 Business: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/kWgYNeqh/0-business-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "admins", + "selfJoin": false, + "cardCovers": false, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": true, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5d6ff7a71cb8f4728ee296b6", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1330x2048/fbca9b0152b03e80427d46313c352f88/photo-1567540017993-c888313000b1", + "backgroundImageScaled": [ + { + "width": 65, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/65x100/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 125, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/125x192/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 312, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/312x480/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 623, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/623x960/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 665, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/665x1024/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 831, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/831x1280/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 1039, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1039x1600/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 1247, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1247x1920/38d1c66aa13fe8e5a0a4998992a57d9d/photo-1567540017993-c888313000b1.jpg" + }, + { + "width": 1330, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1330x2048/fbca9b0152b03e80427d46313c352f88/photo-1567540017993-c888313000b1" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#1b1c10", + "backgroundTopColor": "#41343c", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "kWgYNeqh", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "Priority", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-09-28T05:00:44.356Z", + "dateLastView": "2022-11-05T21:08:10.919Z", + "shortUrl": "https://trello.com/b/kWgYNeqh", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "22977", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "id-for-inbox-5dbd5a88b09f840da3174607", + "name": "Inbox", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 1024, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "id-for-icebox-6111217568bb1c4e776454ea", + "name": "Icebox", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 1536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db72d67065e9f2d74e8ced6", + "name": "To Do", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 2048, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db72d6771317223e211137e", + "name": "Doing", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 4096, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db72d6b99e4202e77dca13c", + "name": "Done", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 4608, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db72d6809328b601e89f71d", + "name": "Waiting", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 5120, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db832319b40204b7b01f228", + "name": "Resources", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 6144, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db82eac6d953a6029245c88", + "name": "Decisions", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 7168, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5dbae09f8f45782cafc09b2c", + "name": "Recurring Costs", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 7680, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5db855cc712dfb73787d1b15", + "name": "Ideas", + "closed": false, + "idBoard": "5db72d5517a6135e166fd862", + "pos": 8192, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5db72d5517a6135e166fd863" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a585ab8c0a017752d0b5" + } + ] + }, + { + "id": "5ecbae5cbf50fc4fa0e541fd", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5ecbae5cbf50fc4fa0e541fd", + "name": "3 Editing: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": true, + "dateClosed": "2023-02-03T14:08:27.015Z", + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/4yHPRhO7/3-editing-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": true, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ec555ba8840e541f247bd3c", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/fc002594d99b978797bb8b1031d392e5/photo-1589952652973-f72cc8cff072", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 641, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/641x960/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 684, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/684x1024/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 854, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/854x1280/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 1068, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1068x1600/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 1282, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1282x1920/0fbecc1fb644254bf03c966d998307dc/photo-1589952652973-f72cc8cff072.jpg" + }, + { + "width": 1367, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/fc002594d99b978797bb8b1031d392e5/photo-1589952652973-f72cc8cff072" + } + ], + "backgroundTile": false, + "backgroundBrightness": "light", + "backgroundBottomColor": "#372923", + "backgroundTopColor": "#ccccd1", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "4yHPRhO7", + "subscribed": false, + "labelNames": { + "green": "original", + "yellow": "reprint", + "orange": "Steampunk", + "red": "Diversity", + "purple": "Fantasy", + "blue": "Science Fiction", + "sky": "Super Hero", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-02-03T14:08:04.681Z", + "dateLastView": "2023-02-03T14:08:32.040Z", + "shortUrl": "https://trello.com/b/4yHPRhO7", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "3877", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5dc4a5568b91e537c320b519", + "name": "Offered To Buy", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 16384, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e63fe157bbe2c65a74f61dc", + "name": "Accepted", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 35071.984375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5de1801e37f6fa82b2aad397", + "name": "Awaiting Author Approval", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 37375.96875, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e667d40e0bf5b3a5d90a90c", + "name": "Approved by Author", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 41983.9375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6223e559b0ea254f7b949e8d", + "name": "Contract Sent", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 446975.46875, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "623ccc60aeb4d362b802f43c", + "name": "Contract Accepted", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 649471.234375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60fbc72fa9279c112f512bec", + "name": "The Third Year (December 2023)", + "closed": false, + "idBoard": "5ecbae5cbf50fc4fa0e541fd", + "pos": 1114111, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5ecbae5cbf50fc4fa0e541fe" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a5a59547a03350c321d0" + } + ] + }, + { + "id": "5eccb96b04b4dc5666c64b7c", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5eccb96b04b4dc5666c64b7c", + "name": "4 Published: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/23WYNmUU/4-published-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ecc9f06dd97866e7108a986", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c675dc447afa6380566e25697420129c/photo-1590418606746-018840f9cd0f", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 640, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 683, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 853, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 1066, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 1280, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/843caa667c7accce67e872fd40523c69/photo-1590418606746-018840f9cd0f.jpg" + }, + { + "width": 1365, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/c675dc447afa6380566e25697420129c/photo-1590418606746-018840f9cd0f" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#040c17", + "backgroundTopColor": "#081b30", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "23WYNmUU", + "subscribed": false, + "labelNames": { + "green": "Original", + "yellow": "Reprint", + "orange": "Steampunk", + "red": "Diversity", + "purple": "Fantasy", + "blue": "Science Fiction", + "sky": "Super Hero", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-12-10T11:01:27.897Z", + "dateLastView": "2022-04-23T10:52:31.930Z", + "shortUrl": "https://trello.com/b/23WYNmUU", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "744", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "60fbc726a3903923507a2338", + "name": "The Second Year (December 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 128, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60fbc6c28fc1951d2df2ee91", + "name": "Issue 9 (July 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 256, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60fbc6b75c4e737f11ed0a4e", + "name": "Issue 8 (April 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 512, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5dc1a3cc9443cf290e105a9e", + "name": "Issue 7 (January 2022)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 1024, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5de68ade15e1dc10b583219e", + "name": "The First Year (December 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 1536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5de180297a9256384304b895", + "name": "Issue 6 (September 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 2048, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "608d49098982605e432a5ca8", + "name": "Issue 5 (May 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 4096, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5feee474f6196034f2240dd9", + "name": "Issue 4 (January 2021)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 8192, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5ecbafb3e45d5c6887dad01d", + "name": "Issue 3 (September 2020)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 16384, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5dc089109931266c657dbbd5", + "name": "Issue 2 (May 2020)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 65536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5ecbaf7e12407531cf59587f", + "name": "Issue 1 (January 2020)", + "closed": false, + "idBoard": "5eccb96b04b4dc5666c64b7c", + "pos": 81920, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5eccb96b04b4dc5666c64b7d" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a5c13fed3116ca679185" + } + ] + }, + { + "id": "62ce6644f1613e2eb5c23b35", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/62ce6644f1613e2eb5c23b35", + "name": "Daily Notes 2022", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/kdAaLE1K/daily-notes-2022", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "62ce4e114295df64218b6d2b", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/a944ca5a6d460984c467c0f148107ac0/photo-1657586640569-4a3d4577328c", + "backgroundImageScaled": [ + { + "width": 132, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/132x100/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 253, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/253x192/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 480, + "height": 365, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x365/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 960, + "height": 729, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x729/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 1024, + "height": 778, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x778/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 1280, + "height": 973, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x973/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 1920, + "height": 1459, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1459/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 2048, + "height": 1556, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1556/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 2106, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2106x1600/a1fa06a3bd37e96d4912976ba3f5a722/photo-1657586640569-4a3d4577328c.jpg" + }, + { + "width": 2560, + "height": 1945, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/a944ca5a6d460984c467c0f148107ac0/photo-1657586640569-4a3d4577328c" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0c0c14", + "backgroundTopColor": "#1e3345", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "kdAaLE1K", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-07-14T05:56:47.280Z", + "dateLastView": "2022-07-14T06:01:48.959Z", + "shortUrl": "https://trello.com/b/kdAaLE1K", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "53", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "62ce665e3b71cd63fbb04ea4", + "name": "July", + "closed": false, + "idBoard": "62ce6644f1613e2eb5c23b35", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "62ce666deae66c2ea3169913", + "name": "August", + "closed": false, + "idBoard": "62ce6644f1613e2eb5c23b35", + "pos": 131071, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "62ce6644f1613e2eb5c23b3d" + } + ] + }, + { + "id": "5e6cb04f4f9a8b071f151037", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/5e6cb04f4f9a8b071f151037", + "name": "DevProjects", + "desc": "Simple board to start on a project.\n\nEach list can hold items (cards) that represent ideas or tasks.\n\nThere 4 lists here:\n\n* **BRAINSTORM ๐Ÿค”** : Ideas are created here. Here people can describe the idea following three simple questions: Why you wish to do it, What it is, how can you do it.\n\n* **TODO ๐Ÿ“š**: Once the ideas is clearly defined, the task can move to #todo stage. Here the owner of the idea can move to #doing once s/he is ready. He can also wait a bit for other members to join.\n* **DOING โš™๏ธ**: On-going\n* **DONE! ๐Ÿ™Œ๐Ÿฝ**: Finished\n\nYou could add other lists like **labels** holding labels (with colors) in order to tag each card by a label if you wish.", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/9ltBSkNA/devprojects", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5e6a85be32376b62ac13e902", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/1ad3a3d75de075cbafe780a25e6f61a3/photo-1583826476986-5be438394228", + "backgroundImageScaled": [ + { + "width": 75, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/75x100/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 144, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/144x192/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 360, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/360x480/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 721, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/721x960/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 769, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/769x1024/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 961, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/961x1280/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 1202, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1202x1600/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 1442, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1442x1920/1a984760421e2d696d5f4a3cd62a5ca4/photo-1583826476986-5be438394228.jpg" + }, + { + "width": 1538, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/1ad3a3d75de075cbafe780a25e6f61a3/photo-1583826476986-5be438394228" + } + ], + "backgroundTile": false, + "backgroundBrightness": "light", + "backgroundBottomColor": "#cdb3ad", + "backgroundTopColor": "#c7c5d2", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "9ltBSkNA", + "subscribed": false, + "labelNames": { + "green": "Foo", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-12-01T18:40:40.174Z", + "dateLastView": "2022-12-01T18:57:37.354Z", + "shortUrl": "https://trello.com/b/9ltBSkNA", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "1905", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5e110382bbcd021dda283413", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": null, + "lists": [ + { + "id": "5e6cb04f4f9a8b071f151038", + "name": "BRAINSTORM ๐Ÿค”", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e6cb04f4f9a8b071f151039", + "name": "TODO ๐Ÿ“š", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 131071, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e6cb04f4f9a8b071f15103a", + "name": "DOING โš™๏ธ", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 196607, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e6cb04f4f9a8b071f15103b", + "name": "DONE! ๐Ÿ™Œ๐Ÿฝ", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 262143, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6251499fd108413e3afabac5", + "name": "Icebox โ„๏ธ", + "closed": false, + "idBoard": "5e6cb04f4f9a8b071f151037", + "pos": 327679, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5e6cb0504f9a8b071f1510ec" + } + ] + }, + { + "id": "5ddd02148100bc44f129a16e", + "nodeId": "ari:cloud:trello::board/workspace/60ae020570a89b46695aae66/5ddd02148100bc44f129a16e", + "name": "Fulfilment: Cossmass Infinities", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae020570a89b46695aae66", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/rAjEe86K/fulfilment-cossmass-infinities", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ddc25fe8ffbae5b78bce77e", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83", + "backgroundImageScaled": [ + { + "width": 140, + "height": 93, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 256, + "height": 171, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 480, + "height": 320, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 960, + "height": 640, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x640/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1024, + "height": 683, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x683/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1280, + "height": 854, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x854/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1920, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1280/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2048, + "height": 1366, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1366/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2400, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2400x1600/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2560, + "height": 1707, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#141c24", + "backgroundTopColor": "#b7b0b1", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "rAjEe86K", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "Donating Refund", + "purple": "", + "blue": "", + "sky": "Cancelled Subscription", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-01-02T10:00:06.729Z", + "dateLastView": "2022-10-03T15:34:26.296Z", + "shortUrl": "https://trello.com/b/rAjEe86K", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "9216", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5dfbb9b11fdf5782a5c7bf28", + "name": "Inbox", + "closed": false, + "idBoard": "5ddd02148100bc44f129a16e", + "pos": 16383.75, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "622b0d2d419c1f8b8c389841", + "name": "Sub y3", + "closed": false, + "idBoard": "5ddd02148100bc44f129a16e", + "pos": 99039.68994140625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61b4e4ede1b9d65d6cb8ad52", + "name": "Completed", + "closed": false, + "idBoard": "5ddd02148100bc44f129a16e", + "pos": 815103.5625, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5ddd02148100bc44f129a16f" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "5ed7a5995f6a287e3d1d18ba" + } + ] + }, + { + "id": "5fcbcabef8585f0bff23c51a", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5fcbcabef8585f0bff23c51a", + "name": "Games", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/TPqHmpPa/games", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "blue", + "backgroundColor": "#0079BF", + "backgroundImage": null, + "backgroundImageScaled": null, + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0079BF", + "backgroundTopColor": "#0079BF", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "TPqHmpPa", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-10-31T15:16:27.532Z", + "dateLastView": "2022-10-31T15:16:27.646Z", + "shortUrl": "https://trello.com/b/TPqHmpPa", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "125", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5fcbcad69beb851cea19a81e", + "name": "Wanted", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 49152, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcadbc0523764c513839e", + "name": "To Play", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 65536, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcacdd0388810412a91df", + "name": "Playing", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 69632, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcac2a5318b808af2bbdb", + "name": "Played", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 73728, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5fcbcae20d0cbe4ce5b3be49", + "name": "Dropped", + "closed": false, + "idBoard": "5fcbcabef8585f0bff23c51a", + "pos": 81920, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5fcbcabef8585f0bff23c51b" + } + ] + }, + { + "id": "613477c6376fa35c23defff6", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/613477c6376fa35c23defff6", + "name": "Mise-En-Place PPS", + "desc": "Increase your personal productivity each week with this board that Justin Gallagher, one of the creators of Trello, uses every day. Split your work into very specific lists so nothing falls through the cracks. Use the reference list to keep important information on hand. Hold yourself accountable with meeting notes, and most importantly spend some time each morning planning out the day ahead.\n\n**[Read Justin's full post](https://blog.trello.com/work-life-focus-trello-insider-guide-personal-productivity)** on the Trello blog to learn more about his personal productivity methodology. ", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/CF4prM1s/mise-en-place-pps", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5acb964a58a42a2abbad9f5a", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1709/97b3e696535030e9efae21381993cbdc/photo-1523266092241-0077129f31fe", + "backgroundImageScaled": [ + { + "width": 140, + "height": 93, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/ec3943cf765bb8e25072b0b6881626f5/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 256, + "height": 171, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/a2bad7a28cf88285432f538f34ba702c/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 480, + "height": 320, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/963ddbe30ac0e2ab51ed5ed7403a5143/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 960, + "height": 641, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x641/dc77db9bf1a35c4f1df32bc6c700ccc9/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 1024, + "height": 684, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x684/7ba65e8b0b851c59a154ee3904f66233/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 1280, + "height": 855, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x855/d4758880f39d1b3cb86c38c836d81cc8/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 1920, + "height": 1282, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1282/3e0a1bf9d43e86ae99f0831d67f3ec98/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 2048, + "height": 1367, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1367/5c5e57f4fa99eea9827c0d3567165be4/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 2397, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2397x1600/09074ade5bff1456ea55337903851c92/photo-1523266092241-0077129f31fe.jpg" + }, + { + "width": 2560, + "height": 1709, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1709/97b3e696535030e9efae21381993cbdc/photo-1523266092241-0077129f31fe" + } + ], + "backgroundTile": false, + "backgroundBrightness": "light", + "backgroundBottomColor": "#cac9c7", + "backgroundTopColor": "#ebecec", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "CF4prM1s", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-06-11T13:27:31.531Z", + "dateLastView": "2023-07-22T13:53:53.566Z", + "shortUrl": "https://trello.com/b/CF4prM1s", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "2328", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5d9389e457df5203e183a38e", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "645b6a06ccb1bbd2288b4227", + "name": "Today", + "closed": false, + "idBoard": "613477c6376fa35c23defff6", + "pos": 98303.5, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "613477c7376fa35c23df00a9" + }, + { + "idMember": "61360b3b357aa7338a8638c2", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "61360b7d1bd2068f9d252be2" + } + ] + }, + { + "id": "63da0b913365d587f15371fb", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/63da0b913365d587f15371fb", + "name": "Project Management", + "desc": "**Manage Projects To Perfection**\n\nBig dreams turn into bigger results with a killer project plan. Use this basic structure to build your team's ideal workflow, for projects big or small.\n\nHere's what's included, and how to get this project management party started:\n\n1. **Resources (Start Here!):**\nThis list is perfect for you and your team to have all those documents, specs, designs, or anything you tend to reference all the time. Meeting schedules and answers to common questions are also recommended to pop into this list so that your team is informed at all times. ๐Ÿ“š\n\n2. **Questions For Next Meeting:**\nNever again forget that important question you thought of in the shower this morning! Slide your Q's into this handy list so your team keeps on flowing. ๐ŸŒŠ\n\n3. **To Do:**\nThe mother of all listsโ€”the good ol' To Do. This is where assigned tasks live so that your team can see who's working on what and when it's due. Crystal clear all day, week, and month. ๐Ÿ”ฎ\n\n4. **Pending:**\nWe all have those in-between tasks that are technically done but also awkwardly waiting for another step. That's where the Pending list comes into play, use this list to share what those next mini-steps are with your team. ๐Ÿ’ฌ\n\n5. **Blocked:**\nWith any successful project comes at least one inevitable blocker. Splash those red-tape, blocking issues that are slowing your team down so you can tackle it in the best way; together. ๐Ÿšท\n\n6. **Done:**\nOur favorite list, the Done list. Stop, drag, and drop! For all your finished tasks that your team has hustled on and feels proud of. โœจ", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/yBEvKW0j/project-management", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5cd970f5caac7789cddf154d", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1792/a8862beec5de129bafebd731db9e1275/photo-1557682250-33bd709cbe85", + "backgroundImageScaled": [ + { + "width": 140, + "height": 98, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x98/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 256, + "height": 179, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x179/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 480, + "height": 336, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x336/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 960, + "height": 672, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x672/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 1024, + "height": 717, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x717/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 1280, + "height": 896, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x896/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 1920, + "height": 1344, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1344/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 2048, + "height": 1434, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1434/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 2286, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2286x1600/24baa6609b89fb8eb0cc0aceb70eaf36/photo-1557682250-33bd709cbe85.jpg" + }, + { + "width": 2560, + "height": 1792, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1792/a8862beec5de129bafebd731db9e1275/photo-1557682250-33bd709cbe85" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#8737a3", + "backgroundTopColor": "#4126ab", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "yBEvKW0j", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "Copy Request", + "orange": "One more step", + "red": "Priority", + "purple": "Design Team", + "blue": "Product Marketing", + "sky": "Trello Tip", + "lime": "Halp", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-02-12T17:56:10.252Z", + "dateLastView": "2023-02-12T19:21:03.774Z", + "shortUrl": "https://trello.com/b/yBEvKW0j", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "1248", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5c3e2fdb0fa92e43b849d838", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "63e7f1519783b276b819b90a", + "name": "Inbox", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 17407.828125, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537202", + "name": "Project Resources", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 34815.65625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537203", + "name": "Questions For Next Meeting", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 53247.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537204", + "name": "To Do", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 90111.375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537205", + "name": "Pending", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 96255.34375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537206", + "name": "Blocked", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 102399.3125, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63da0b913365d587f1537207", + "name": "Done", + "closed": false, + "idBoard": "63da0b913365d587f15371fb", + "pos": 245759.25, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "63da0b913365d587f1537253" + } + ] + }, + { + "id": "5d9a1af1f3e8b612d60a896b", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5d9a1af1f3e8b612d60a896b", + "name": "Reading", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": true, + "url": "https://trello.com/b/66Rep4Or/reading", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5d99bfa44775c4652ede8802", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1922/09d17f5d473b9cba98ba208a83842426/photo-1570297780229-1125995349ef", + "backgroundImageScaled": [ + { + "width": 133, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/133x100/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 256, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x192/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 480, + "height": 360, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x360/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 960, + "height": 721, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x721/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 1024, + "height": 769, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x769/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 1280, + "height": 961, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x961/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 1920, + "height": 1442, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1442/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 2048, + "height": 1538, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1538/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 2131, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2131x1600/1ed15f36cdc7c03b4a5ac9e7e17ef2f6/photo-1570297780229-1125995349ef.jpg" + }, + { + "width": 2560, + "height": 1922, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1922/09d17f5d473b9cba98ba208a83842426/photo-1570297780229-1125995349ef" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#483827", + "backgroundTopColor": "#624a35", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "66Rep4Or", + "subscribed": false, + "labelNames": { + "green": "Podcast", + "yellow": "", + "orange": "Audiobook", + "red": "Audible", + "purple": "Attached", + "blue": "Subscribed Magazines", + "sky": "Online", + "lime": "Hardcopy", + "pink": "Kindle", + "black": "Reading with Orla", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "Kobo", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "To-Buy", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-10-09T10:31:06.494Z", + "dateLastView": "2023-10-04T15:52:33.538Z", + "shortUrl": "https://trello.com/b/66Rep4Or", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "64741", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5d9a1b165e92ea17d465b495", + "name": "Inbox", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d9a1b1b2073aa47505ebf24", + "name": "TBR", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 66559, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d9a1b1c40bdd81ba37a6d55", + "name": "Reading", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 140159, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63c4327ba40561019335e0e9", + "name": "Read Female 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 294911, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63c43275b7482d01eb4b54d1", + "name": "Read Male 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 327679, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63ef994e7a3eaec4d82be5e7", + "name": "Listened Podcast 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 344063, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "63c4328188571a00e726948e", + "name": "Read Magazine 2023", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 360447, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5da1acd14c099c3dcc885fbf", + "name": "Hiatus", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 425983, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "64745329e5b24abef08e3e1a", + "name": "Abandonded/Returned", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 491519, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "6484c70aa08882f218d684aa", + "name": "unhaul", + "closed": false, + "idBoard": "5d9a1af1f3e8b612d60a896b", + "pos": 557055, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5d9a1af1f3e8b612d60a896c" + } + ] + }, + { + "id": "60548b78f692826d0d2158c9", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/60548b78f692826d0d2158c9", + "name": "Reading Archive", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/rtDb0yQ6/reading-archive", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "6054857d30484206448fb45c", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/145f72add00b7bc90523ee34546f387c/photo-1616067113035-2987dea36523", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 640, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/640x960/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 683, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/683x1024/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 853, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/853x1280/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 1066, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1066x1600/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 1280, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x1920/3626770a2d33634cfdd26ec4bf5e49fa/photo-1616067113035-2987dea36523.jpg" + }, + { + "width": 1365, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/145f72add00b7bc90523ee34546f387c/photo-1616067113035-2987dea36523" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#040509", + "backgroundTopColor": "#060a14", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "rtDb0yQ6", + "subscribed": false, + "labelNames": { + "green": "Podcast", + "yellow": "", + "orange": "Audiobook", + "red": "Audible", + "purple": "Calibre Library", + "blue": "Subscribed Magazines", + "sky": "Online", + "lime": "Hardcopy", + "pink": "https://www.audible.co.uk/", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-05-05T13:45:17.686Z", + "dateLastView": "2023-09-24T15:28:11.680Z", + "shortUrl": "https://trello.com/b/rtDb0yQ6", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "332", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "61d9416975329115c84b84f4", + "name": "Read Female 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 269, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61d94161a9e67520f24aa1e5", + "name": "Read Male 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 539, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61d941715004c44e15a23f6b", + "name": "Read Magazines 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 1079, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5da1acd92aa4e93e4b343d0f", + "name": "Abandoned 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 2159, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "606c49c8f6e4f17af1fcbf45", + "name": "Unhaul 2022", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 4319, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "60548a3d49b84846d7be27ff", + "name": "Read Male 2021", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 8639, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61cebec468e1c45915d09a91", + "name": "Read Female 2021", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 17279, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61cebeb35540a1567bdc7716", + "name": "Read Magazines 2021", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 34559, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d9a1b1fd35ffc7a485d3a10", + "name": "Read 2020", + "closed": false, + "idBoard": "60548b78f692826d0d2158c9", + "pos": 69119, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "60548b78f692826d0d2158ca" + } + ] + }, + { + "id": "609803b797dec552d62e0497", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/609803b797dec552d62e0497", + "name": "TESTING-FULLER", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/TQvj081Z/testing-fuller", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5ddc25fe8ffbae5b78bce77e", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83", + "backgroundImageScaled": [ + { + "width": 140, + "height": 93, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x93/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 256, + "height": 171, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x171/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 480, + "height": 320, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x320/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 960, + "height": 640, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x640/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1024, + "height": 683, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x683/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1280, + "height": 854, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x854/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 1920, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1280/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2048, + "height": 1366, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1366/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2400, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2400x1600/b5c948014473d15f566a612c09d924bd/photo-1574558452538-7477c4a40b83.jpg" + }, + { + "width": 2560, + "height": 1707, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/2de4a34c4193b74b9a2263b11da45e76/photo-1574558452538-7477c4a40b83" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#141c24", + "backgroundTopColor": "#b7b0b1", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "TQvj081Z", + "subscribed": false, + "labelNames": { + "green": "PreOrder", + "yellow": "SingleIssue", + "orange": "Promotional", + "red": "TESTING", + "purple": "", + "blue": "Subscription", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2021-05-16T21:05:59.622Z", + "dateLastView": "2021-05-16T21:05:59.807Z", + "shortUrl": "https://trello.com/b/TQvj081Z", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "104", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "5ddd02148100bc44f129a16e", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "609803b797dec552d62e0498", + "name": "Inbox", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 16383.75, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e0499", + "name": "Sub 6-8", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 80895.703125, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049a", + "name": "Sub 5-7", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 145407.65625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049b", + "name": "Issue 6", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 332799.609375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049c", + "name": "Sub 4-6", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 520191.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049d", + "name": "Issue 5", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 524287.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049e", + "name": "Sub 3-5", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 536575.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e049f", + "name": "Issue 4", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 538623.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a0", + "name": "Sub 2-4", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 544767.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a1", + "name": "Issue 3", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 546815.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a2", + "name": "Sub 1-3", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 552959.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a3", + "name": "Issue 2", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 585727.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a4", + "name": "Issue 1", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 618495.5625, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a5", + "name": "Order Received", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 684031, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "609803b797dec552d62e04a6", + "name": "PRODUCTS", + "closed": false, + "idBoard": "609803b797dec552d62e0497", + "pos": 749567, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "609803b897dec552d62e06af" + } + ] + }, + { + "id": "5e18d2687e10b94326d5255f", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/5e18d2687e10b94326d5255f", + "name": "TESTING-SLUSHPILE", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/ObFxS06C/testing-slushpile", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "admins", + "selfJoin": false, + "cardCovers": false, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5d80f70b060c574f45ecc1f0", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1367x2048/e3f86fba993a9f7bf2ab03234b25a022/photo-1568313081041-dbd174f69e3b", + "backgroundImageScaled": [ + { + "width": 67, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/67x100/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 128, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/128x192/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 320, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/320x480/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 641, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/641x960/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 684, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/684x1024/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 854, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/854x1280/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 1068, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1068x1600/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 1282, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1282x1920/9c0a570b328ab427f18a15bfd2ffd838/photo-1568313081041-dbd174f69e3b.jpg" + }, + { + "width": 1367, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1367x2048/e3f86fba993a9f7bf2ab03234b25a022/photo-1568313081041-dbd174f69e3b" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#151b0d", + "backgroundTopColor": "#18200e", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "ObFxS06C", + "subscribed": false, + "labelNames": { + "green": "original", + "yellow": "reprint", + "orange": "Steampunk", + "red": "Super Hero", + "purple": "Fantasy", + "blue": "Science Fiction", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-09-29T21:27:05.658Z", + "dateLastView": "2022-09-29T21:27:05.745Z", + "shortUrl": "https://trello.com/b/ObFxS06C", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "15611", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": null, + "lists": [ + { + "id": "606edbe44502b6842c027a0b", + "name": "Slushy", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 15359.34375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f51dcabd866d6149c8294e8", + "name": "MASTER TEST CARDS", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 20479.6875, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52560", + "name": "Inbox", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 40959.375, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f50a447ad9fc758a8c11f13", + "name": "Send to Reader", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 71167, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52561", + "name": "Slush", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 72575, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f50a741bdb4ca73a450938e", + "name": "To Re-read", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 73983, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52562", + "name": "Hold", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 76799, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f397c9a5d99ac46280dc439", + "name": "Held", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 82431, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52563", + "name": "Reject", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 88063, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52564", + "name": "Rejected", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 104447, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f5297cdcf607e15aea14b5d", + "name": "Withdraw", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 107519, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5e18d2687e10b94326d52566", + "name": "To Offer", + "closed": false, + "idBoard": "5e18d2687e10b94326d5255f", + "pos": 209663, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5e18d2687e10b94326d52599" + }, + { + "idMember": "5e9965ddadf9331aef472a96", + "memberType": "normal", + "unconfirmed": false, + "deactivated": false, + "id": "615a9bc91140c86c02ed491b" + } + ] + }, + { + "id": "63a9f88e6bb1ef0fd072244a", + "nodeId": "ari:cloud:trello::board/workspace/60ae034415aa230ab2ef596d/63a9f88e6bb1ef0fd072244a", + "name": "TESTING-SYNC-OPENPROJECT", + "desc": "Use this board to get things done. It isnโ€™t just about shipping a product, or checking off items on a list, or even about marking a project as Done. Getting things done is a process: itโ€™s a way of thinking that involves planning, execution, iteration, and reflection.\n\nLearn more here: https://blog.trello.com/how-to-scrum-and-trello-for-teams-at-work", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae034415aa230ab2ef596d", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/4yCcEqgT/testing-sync-openproject", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "54c9404f266fc5499138400b", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/4200x4200/48dbf0b5a546541e847e267a5dcd2201/shutterstock_134707556.jpg", + "backgroundImageScaled": [ + { + "width": 140, + "height": 100, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/140x100/6eab501206dcefb7481f43c783247d36/shutterstock_134707556.jpg" + }, + { + "width": 256, + "height": 192, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/256x192/b2ffcdd02026a264e454afa9ed093adf/shutterstock_134707556.jpg" + }, + { + "width": 480, + "height": 480, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/480x480/96406688eb291c869064290cfb9b0c80/shutterstock_134707556.jpg" + }, + { + "width": 960, + "height": 960, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/960x960/4b4c1f7c6678833b87f3719d90a92d67/shutterstock_134707556.jpg" + }, + { + "width": 1024, + "height": 1024, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/1024x1024/0cef9f5b83f22bd910e3f528dfac01c0/shutterstock_134707556.jpg" + }, + { + "width": 1280, + "height": 1280, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/1280x1280/b1bfc2f211e11d35cd7faf1f58a41d1d/shutterstock_134707556.jpg" + }, + { + "width": 1920, + "height": 1920, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/1920x1920/50c43401f7d28b15a414fdd6ac68d94a/shutterstock_134707556.jpg" + }, + { + "width": 2048, + "height": 2048, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/2048x2048/22ec03aab9d36ea49139c569a62bb079/shutterstock_134707556.jpg" + }, + { + "width": 2560, + "height": 1600, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/2560x1600/e2a9f6205a29cdba36f3e2ab83c57b20/shutterstock_134707556.jpg" + }, + { + "width": 4200, + "height": 4200, + "url": "https://trello-backgrounds.s3.amazonaws.com/53baf533e697a982248cd73f/4200x4200/48dbf0b5a546541e847e267a5dcd2201/shutterstock_134707556.jpg" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#f85f6c", + "backgroundTopColor": "#bda8b9", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "4yCcEqgT", + "subscribed": false, + "labelNames": { + "green": "Marketing", + "yellow": "Day", + "orange": "Remarket", + "red": "", + "purple": "Demand Marketing", + "blue": "Partners", + "sky": "Government", + "lime": "Planning", + "pink": "Happiness", + "black": "OEM", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2023-06-11T13:27:33.273Z", + "dateLastView": "2023-07-22T13:53:54.652Z", + "shortUrl": "https://trello.com/b/4yCcEqgT", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "1142", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": "54c93f6f836da7c4865460d2", + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "63a9f88e6bb1ef0fd0722451", + "name": "Done", + "closed": false, + "idBoard": "63a9f88e6bb1ef0fd072244a", + "pos": 65535.5, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "63a9f88e6bb1ef0fd0722509" + } + ] + }, + { + "id": "5f5f651516b6bf442f1f9726", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5f5f651516b6bf442f1f9726", + "name": "Watching", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/3S3CaouQ/watching", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": false, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "red", + "backgroundColor": "#B04632", + "backgroundImage": null, + "backgroundImageScaled": null, + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#B04632", + "backgroundTopColor": "#B04632", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "3S3CaouQ", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-10-31T15:17:16.701Z", + "dateLastView": "2022-10-31T15:17:16.872Z", + "shortUrl": "https://trello.com/b/3S3CaouQ", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "30", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5f5f651db1d032287e2c2d87", + "name": "To Watch", + "closed": false, + "idBoard": "5f5f651516b6bf442f1f9726", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5f5f6521b44b742e469fa152", + "name": "Watched", + "closed": false, + "idBoard": "5f5f651516b6bf442f1f9726", + "pos": 131071, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5f5f651516b6bf442f1f9727" + } + ] + }, + { + "id": "5d99a04c82370566a5087a20", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/5d99a04c82370566a5087a20", + "name": "Writing", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/ki1dtTv9/writing", + "prefs": { + "permissionLevel": "private", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "5c06915291f9bd120641df0a", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1440/fe6df12770989dd8964acc05c2c914ad/photo-1475694867812-f82b8696d610", + "backgroundImageScaled": [ + { + "width": 140, + "height": 79, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x79/bb2f6616f60f0409e243ff2a1d96a43b/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 256, + "height": 144, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x144/a7ae169a8a884e281d5b1a71b3990be0/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 480, + "height": 270, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x270/b731e491378d006fd93943ff2a7fcde9/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 960, + "height": 540, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x540/3c5790055f29c56c8d4dfefb513b83ca/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 1024, + "height": 576, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x576/5854aa8100253f07433a3e0671acee2b/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 1280, + "height": 720, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x720/f6c8b6d71692800acfce441bf5f9a245/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 1920, + "height": 1080, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1080/43218755281d7434f638867d8edb9dd6/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 2048, + "height": 1152, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/d3068ddb3ae7ebb8947a04e7c9b18610/photo-1475694867812-f82b8696d610.jpg" + }, + { + "width": 2560, + "height": 1440, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2560x1440/fe6df12770989dd8964acc05c2c914ad/photo-1475694867812-f82b8696d610" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0a7ba3", + "backgroundTopColor": "#a0baca", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "ki1dtTv9", + "subscribed": false, + "labelNames": { + "green": "short", + "yellow": "novel", + "orange": "cossmass", + "red": "azaktolo", + "purple": "folded-cities", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2019-10-06T11:58:02.031Z", + "dateLastView": "2020-03-10T22:34:35.972Z", + "shortUrl": "https://trello.com/b/ki1dtTv9", + "idTags": [], + "datePluginDisable": null, + "creationMethod": "assisted", + "ixUpdate": "140", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "5d99a04d91c0843c685aa510", + "name": "Story Ideas", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 1, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a04dd6d75a194dbd2bb0", + "name": "World Building", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 2, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a04d937a832121b0dc37", + "name": "Plot & Character", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 3, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99c4129c6bc71d9d2cfbd7", + "name": "Back Burner", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 32771, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a059d2c272050c79304c", + "name": "Writing Draft 1", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 65539, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a05d6b09200e44cde7d4", + "name": "Resting", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 131075, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a0615ffbc0271bfd80b8", + "name": "Writing Draft N", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 196611, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a07461763b0d185bc0ca", + "name": "Written", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 262147, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a07de8ec18195190ebf0", + "name": "Submitted", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 327683, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a082b8b79431b554ccce", + "name": "Published", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 393219, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "5d99a0858eb9de21e952de00", + "name": "Trunked", + "closed": false, + "idBoard": "5d99a04c82370566a5087a20", + "pos": 458755, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "5d99a04c82370566a5087a21" + } + ] + }, + { + "id": "61b329f587596a03a0495c38", + "nodeId": "ari:cloud:trello::board/workspace/60ae02462b2b134135ee7152/61b329f587596a03a0495c38", + "name": "XMas", + "desc": "", + "descData": null, + "closed": false, + "dateClosed": null, + "idOrganization": "60ae02462b2b134135ee7152", + "idEnterprise": null, + "limits": { + "attachments": { + "perBoard": { + "status": "ok", + "disableAt": 36000, + "warnAt": 28800 + }, + "perCard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "boards": { + "totalMembersPerBoard": { + "status": "ok", + "disableAt": 1600, + "warnAt": 1280 + }, + "totalAccessRequestsPerBoard": { + "status": "ok", + "disableAt": 4000, + "warnAt": 3200 + } + }, + "cards": { + "openPerBoard": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "openPerList": { + "status": "ok", + "disableAt": 5000, + "warnAt": 4000 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 2000000, + "warnAt": 1600000 + }, + "totalPerList": { + "status": "ok", + "disableAt": 1000000, + "warnAt": 800000 + } + }, + "checklists": { + "perBoard": { + "status": "ok", + "disableAt": 1800000, + "warnAt": 1440000 + }, + "perCard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + } + }, + "checkItems": { + "perChecklist": { + "status": "ok", + "disableAt": 200, + "warnAt": 160 + } + }, + "customFields": { + "perBoard": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "customFieldOptions": { + "perField": { + "status": "ok", + "disableAt": 50, + "warnAt": 40 + } + }, + "labels": { + "perBoard": { + "status": "ok", + "disableAt": 1000, + "warnAt": 800 + } + }, + "lists": { + "openPerBoard": { + "status": "ok", + "disableAt": 500, + "warnAt": 400 + }, + "totalPerBoard": { + "status": "ok", + "disableAt": 3000, + "warnAt": 2400 + } + }, + "stickers": { + "perCard": { + "status": "ok", + "disableAt": 70, + "warnAt": 56 + } + }, + "reactions": { + "perAction": { + "status": "ok", + "disableAt": 900, + "warnAt": 720 + }, + "uniquePerAction": { + "status": "ok", + "disableAt": 17, + "warnAt": 14 + } + } + }, + "pinned": false, + "starred": false, + "url": "https://trello.com/b/YBRTxt45/xmas", + "prefs": { + "permissionLevel": "org", + "hideVotes": false, + "voting": "disabled", + "comments": "members", + "invitations": "members", + "selfJoin": true, + "cardCovers": true, + "isTemplate": false, + "cardAging": "regular", + "calendarFeedEnabled": false, + "hiddenPluginBoardButtons": [], + "switcherViews": [ + { + "viewType": "Board", + "enabled": true + }, + { + "viewType": "Table", + "enabled": true + }, + { + "viewType": "Calendar", + "enabled": false + }, + { + "viewType": "Dashboard", + "enabled": false + }, + { + "viewType": "Timeline", + "enabled": false + }, + { + "viewType": "Map", + "enabled": false + } + ], + "background": "61b318af50580a4f547f9fb7", + "backgroundColor": null, + "backgroundImage": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/d6c275126c733e93aa701175814e0f59/photo-1638989533154-9cd6ae98c659", + "backgroundImageScaled": [ + { + "width": 140, + "height": 79, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/140x79/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 256, + "height": 144, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/256x144/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 480, + "height": 270, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/480x270/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 960, + "height": 540, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/960x540/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 1024, + "height": 576, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1024x576/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 1280, + "height": 720, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1280x720/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 1920, + "height": 1080, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/1920x1080/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 2048, + "height": 1152, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/2048x1152/59872d0e8dfae6d431ba6aa451927754/photo-1638989533154-9cd6ae98c659.jpg" + }, + { + "width": 2560, + "height": 1440, + "url": "https://trello-backgrounds.s3.amazonaws.com/SharedBackground/original/d6c275126c733e93aa701175814e0f59/photo-1638989533154-9cd6ae98c659" + } + ], + "backgroundTile": false, + "backgroundBrightness": "dark", + "backgroundBottomColor": "#0a0607", + "backgroundTopColor": "#d1c6c9", + "canBePublic": true, + "canBeEnterprise": true, + "canBeOrg": true, + "canBePrivate": true, + "canInvite": true + }, + "shortLink": "YBRTxt45", + "subscribed": false, + "labelNames": { + "green": "", + "yellow": "", + "orange": "", + "red": "", + "purple": "", + "blue": "", + "sky": "", + "lime": "", + "pink": "", + "black": "", + "green_dark": "", + "yellow_dark": "", + "orange_dark": "", + "red_dark": "", + "purple_dark": "", + "blue_dark": "", + "sky_dark": "", + "lime_dark": "", + "pink_dark": "", + "black_dark": "", + "green_light": "", + "yellow_light": "", + "orange_light": "", + "red_light": "", + "purple_light": "", + "blue_light": "", + "sky_light": "", + "lime_light": "", + "pink_light": "", + "black_light": "" + }, + "powerUps": [], + "dateLastActivity": "2022-10-27T18:32:04.155Z", + "dateLastView": "2022-10-27T18:32:04.247Z", + "shortUrl": "https://trello.com/b/YBRTxt45", + "idTags": [], + "datePluginDisable": null, + "creationMethod": null, + "ixUpdate": "968", + "templateGallery": null, + "enterpriseOwned": false, + "idBoardSource": null, + "premiumFeatures": [ + "additionalBoardBackgrounds", + "additionalStickers", + "customBoardBackgrounds", + "customEmoji", + "customStickers", + "plugins" + ], + "idMemberCreator": "5d999fc87ac5a442f45cb8eb", + "lists": [ + { + "id": "634295f35b2f5d0070df0b94", + "name": "2022", + "closed": false, + "idBoard": "61b329f587596a03a0495c38", + "pos": 32767.5, + "subscribed": false, + "softLimit": null, + "status": null + }, + { + "id": "61b329fac90987800d445eb9", + "name": "2021", + "closed": false, + "idBoard": "61b329f587596a03a0495c38", + "pos": 65535, + "subscribed": false, + "softLimit": null, + "status": null + } + ], + "memberships": [ + { + "idMember": "5d999fc87ac5a442f45cb8eb", + "memberType": "admin", + "unconfirmed": false, + "deactivated": false, + "id": "61b329f587596a03a0495c3a" + } + ] + } +] diff --git a/src/trello/test_data/query_tasks/list-1-cards.json b/src/trello/test_data/query_tasks/list-1-cards.json new file mode 100644 index 0000000..bee244e --- /dev/null +++ b/src/trello/test_data/query_tasks/list-1-cards.json @@ -0,0 +1,170 @@ +[ + { + "id": "list-1-card-1-5abbe4b7ddc1b351ef961414", + "address": "", + "badges": { + "attachmentsByType": { + "trello": { + "board": 2154, + "card": 2154 + } + }, + "location": true, + "votes": 2154, + "viewingMemberVoted": false, + "subscribed": false, + "fogbugz": "", + "checkItems": 0, + "checkItemsChecked": 0, + "comments": 0, + "attachments": 0, + "description": true, + "due": "", + "start": "", + "dueComplete": true + }, + "checkItemStates": [ + "" + ], + "closed": true, + "coordinates": "", + "creationMethod": "", + "dateLastActivity": "2019-09-16T16:19:17.156Z", + "desc": "๐Ÿ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", + "descData": { + "emoji": {} + }, + "due": "", + "dueReminder": "", + "email": "bentleycook+2kea95u7kchsvqnxkwe+2q0byi6qv4pt9uc7q5m+25qyyohtzg@boards.trello.com", + "idBoard": "5abbe4b7ddc1b351ef961414", + "idChecklists": [ + { + "id": "5abbe4b7ddc1b351ef961414" + } + ], + "idLabels": [ + { + "id": "5abbe4b7ddc1b351ef961414", + "idBoard": "5abbe4b7ddc1b351ef961414", + "name": "Overdue", + "color": "yellow" + } + ], + "idList": "list-1-5abbe4b7ddc1b351ef961414", + "idMembers": [ + "5abbe4b7ddc1b351ef961414" + ], + "idMembersVoted": [ + "5abbe4b7ddc1b351ef961414" + ], + "idShort": 2154, + "labels": [ + "5abbe4b7ddc1b351ef961414" + ], + "limits": { + "attachments": { + "perBoard": {} + } + }, + "locationName": "", + "manualCoverAttachment": false, + "name": "List 1 Card 1", + "pos": 65535, + "shortLink": "H0TZyzbK", + "shortUrl": "https://trello.com/c/H0TZyzbK", + "subscribed": false, + "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", + "cover": { + "color": "yellow", + "idUploadedBackground": true, + "size": "normal", + "brightness": "light", + "isTemplate": false + } + }, { + "id": "list-1-card-2-5abbe4b7ddc1b351ef961414", + "address": "", + "badges": { + "attachmentsByType": { + "trello": { + "board": 2154, + "card": 2154 + } + }, + "location": true, + "votes": 2154, + "viewingMemberVoted": false, + "subscribed": false, + "fogbugz": "", + "checkItems": 0, + "checkItemsChecked": 0, + "comments": 0, + "attachments": 0, + "description": true, + "due": "", + "start": "", + "dueComplete": true + }, + "checkItemStates": [ + "" + ], + "closed": true, + "coordinates": "", + "creationMethod": "", + "dateLastActivity": "2019-09-16T16:19:17.156Z", + "desc": "๐Ÿ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", + "descData": { + "emoji": {} + }, + "due": "", + "dueReminder": "", + "email": "bentleycook+2kea95u7kchsvqnxkwe+2q0byi6qv4pt9uc7q5m+25qyyohtzg@boards.trello.com", + "idBoard": "5abbe4b7ddc1b351ef961414", + "idChecklists": [ + { + "id": "5abbe4b7ddc1b351ef961414" + } + ], + "idLabels": [ + { + "id": "5abbe4b7ddc1b351ef961414", + "idBoard": "5abbe4b7ddc1b351ef961414", + "name": "Overdue", + "color": "yellow" + } + ], + "idList": "list-1-5abbe4b7ddc1b351ef961414", + "idMembers": [ + "5abbe4b7ddc1b351ef961414" + ], + "idMembersVoted": [ + "5abbe4b7ddc1b351ef961414" + ], + "idShort": 2154, + "labels": [ + "5abbe4b7ddc1b351ef961414" + ], + "limits": { + "attachments": { + "perBoard": {} + } + }, + "locationName": "", + "manualCoverAttachment": false, + "name": "List 1 Card 2", + "pos": 65535, + "shortLink": "H0TZyzbK", + "shortUrl": "https://trello.com/c/H0TZyzbK", + "subscribed": false, + "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", + "cover": { + "color": "yellow", + "idUploadedBackground": true, + "size": "normal", + "brightness": "light", + "isTemplate": false + } + } + +] diff --git a/src/trello/test_data/query_tasks/list-2-cards.json b/src/trello/test_data/query_tasks/list-2-cards.json new file mode 100644 index 0000000..f802437 --- /dev/null +++ b/src/trello/test_data/query_tasks/list-2-cards.json @@ -0,0 +1,170 @@ +[ + { + "id": "list-2-card-1-5abbe4b7ddc1b351ef961414", + "address": "", + "badges": { + "attachmentsByType": { + "trello": { + "board": 2154, + "card": 2154 + } + }, + "location": true, + "votes": 2154, + "viewingMemberVoted": false, + "subscribed": false, + "fogbugz": "", + "checkItems": 0, + "checkItemsChecked": 0, + "comments": 0, + "attachments": 0, + "description": true, + "due": "", + "start": "", + "dueComplete": true + }, + "checkItemStates": [ + "" + ], + "closed": true, + "coordinates": "", + "creationMethod": "", + "dateLastActivity": "2019-09-16T16:19:17.156Z", + "desc": "๐Ÿ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", + "descData": { + "emoji": {} + }, + "due": "", + "dueReminder": "", + "email": "bentleycook+2kea95u7kchsvqnxkwe+2q0byi6qv4pt9uc7q5m+25qyyohtzg@boards.trello.com", + "idBoard": "5abbe4b7ddc1b351ef961414", + "idChecklists": [ + { + "id": "5abbe4b7ddc1b351ef961414" + } + ], + "idLabels": [ + { + "id": "5abbe4b7ddc1b351ef961414", + "idBoard": "5abbe4b7ddc1b351ef961414", + "name": "Overdue", + "color": "yellow" + } + ], + "idList": "list-2-5abbe4b7ddc1b351ef961414", + "idMembers": [ + "5abbe4b7ddc1b351ef961414" + ], + "idMembersVoted": [ + "5abbe4b7ddc1b351ef961414" + ], + "idShort": 2154, + "labels": [ + "5abbe4b7ddc1b351ef961414" + ], + "limits": { + "attachments": { + "perBoard": {} + } + }, + "locationName": "", + "manualCoverAttachment": false, + "name": "List 2 Card 1", + "pos": 65535, + "shortLink": "H0TZyzbK", + "shortUrl": "https://trello.com/c/H0TZyzbK", + "subscribed": false, + "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", + "cover": { + "color": "yellow", + "idUploadedBackground": true, + "size": "normal", + "brightness": "light", + "isTemplate": false + } + }, { + "id": "list-2-card-2-5abbe4b7ddc1b351ef961414", + "address": "", + "badges": { + "attachmentsByType": { + "trello": { + "board": 2154, + "card": 2154 + } + }, + "location": true, + "votes": 2154, + "viewingMemberVoted": false, + "subscribed": false, + "fogbugz": "", + "checkItems": 0, + "checkItemsChecked": 0, + "comments": 0, + "attachments": 0, + "description": true, + "due": "", + "start": "", + "dueComplete": true + }, + "checkItemStates": [ + "" + ], + "closed": true, + "coordinates": "", + "creationMethod": "", + "dateLastActivity": "2019-09-16T16:19:17.156Z", + "desc": "๐Ÿ‘‹Hey there,\n\nTrello's Platform team uses this board to keep developers up-to-date.", + "descData": { + "emoji": {} + }, + "due": "", + "dueReminder": "", + "email": "bentleycook+2kea95u7kchsvqnxkwe+2q0byi6qv4pt9uc7q5m+25qyyohtzg@boards.trello.com", + "idBoard": "5abbe4b7ddc1b351ef961414", + "idChecklists": [ + { + "id": "5abbe4b7ddc1b351ef961414" + } + ], + "idLabels": [ + { + "id": "5abbe4b7ddc1b351ef961414", + "idBoard": "5abbe4b7ddc1b351ef961414", + "name": "Overdue", + "color": "yellow" + } + ], + "idList": "list-2-5abbe4b7ddc1b351ef961414", + "idMembers": [ + "5abbe4b7ddc1b351ef961414" + ], + "idMembersVoted": [ + "5abbe4b7ddc1b351ef961414" + ], + "idShort": 2154, + "labels": [ + "5abbe4b7ddc1b351ef961414" + ], + "limits": { + "attachments": { + "perBoard": {} + } + }, + "locationName": "", + "manualCoverAttachment": false, + "name": "List 2 Card 2", + "pos": 65535, + "shortLink": "H0TZyzbK", + "shortUrl": "https://trello.com/c/H0TZyzbK", + "subscribed": false, + "url": "https://trello.com/c/H0TZyzbK/4-%F0%9F%91%8B-what-why-how", + "cover": { + "color": "yellow", + "idUploadedBackground": true, + "size": "normal", + "brightness": "light", + "isTemplate": false + } + } + +] diff --git a/src/trello/tests.rs b/src/trello/tests.rs new file mode 100644 index 0000000..aca0daa --- /dev/null +++ b/src/trello/tests.rs @@ -0,0 +1,62 @@ +use crate::s; +use crate::trello::types::auth::TrelloAuth; +use std::collections::HashMap; + +mod board { + // use crate::trello::{ + // // api::boards::TrelloBoards as _, + // types::{ + // board::TrelloBoard, TrelloBoardId, TrelloBoardName, TrelloListId, TrelloListName, + // }, + // }; + + // #[test] + // fn list_of_boards_find_by_name_returns_board() { + // //given + // let board = TrelloBoard::new( + // TrelloBoardId::new("2"), + // TrelloBoardName::new("beta"), + // vec![], + // ); + // let boards = vec![ + // TrelloBoard::new( + // TrelloBoardId::new("1"), + // TrelloBoardName::new("alpha"), + // vec![], + // ), + // board.clone(), + // TrelloBoard::new( + // TrelloBoardId::new("3"), + // TrelloBoardName::new("gamma"), + // vec![], + // ), + // ]; + // + // //when + // let result = boards.find_by_name(board.name()); + // + // //then + // assert_eq!(result, Some(&board)); + // } +} + +#[test] +fn trello_auth_into_hashmap() { + //given + let trello_auth = TrelloAuth { + api_key: s!("key").into(), + api_secret: s!("token").into(), + }; + + //when + let result = HashMap::::from(&trello_auth); + + //then + assert_eq!( + result, + HashMap::from([( + s!("Authorization"), + s!("OAuth oauth_consumer_key=\"key\", oauth_token=\"token\"") + ),]) + ); +} diff --git a/src/trello/types/auth.rs b/src/trello/types/auth.rs new file mode 100644 index 0000000..d398fbb --- /dev/null +++ b/src/trello/types/auth.rs @@ -0,0 +1,47 @@ +use std::collections::HashMap; + +// +use derive_more::derive::Display; + +use crate::newtype; + +newtype!(TrelloApiKey, String, Display, "API Key"); +newtype!( + TrelloApiSecret, + String, + Display, + "API Secret token for Trello" +); + +#[derive(Debug, Clone)] +pub struct TrelloAuth { + pub(crate) api_key: TrelloApiKey, + pub(crate) api_secret: TrelloApiSecret, +} +impl TrelloAuth { + pub const fn new(api_key: TrelloApiKey, api_secret: TrelloApiSecret) -> Self { + Self { + api_key, + api_secret, + } + } + + pub const fn api_key(&self) -> &TrelloApiKey { + &self.api_key + } + pub const fn api_token(&self) -> &TrelloApiSecret { + &self.api_secret + } +} +impl From<&TrelloAuth> for HashMap { + fn from(value: &TrelloAuth) -> Self { + HashMap::from([( + "Authorization".into(), + format!( + r#"OAuth oauth_consumer_key="{}", oauth_token="{}""#, + value.api_key(), + value.api_token() + ), + )]) + } +} diff --git a/src/trello/types/board.rs b/src/trello/types/board.rs new file mode 100644 index 0000000..37560a6 --- /dev/null +++ b/src/trello/types/board.rs @@ -0,0 +1,13 @@ +// +use derive_more::derive::Constructor; + +use crate::trello::types::list::TrelloList; + +use super::{TrelloBoardId, TrelloBoardName}; + +#[derive(Clone, Debug, PartialEq, Eq, serde::Deserialize, Constructor)] +pub(crate) struct TrelloBoard { + pub(crate) id: TrelloBoardId, + pub(crate) name: TrelloBoardName, + pub(crate) lists: Vec, +} diff --git a/src/trello/types/card.rs b/src/trello/types/card.rs new file mode 100644 index 0000000..54c3194 --- /dev/null +++ b/src/trello/types/card.rs @@ -0,0 +1,20 @@ +// +use crate::trello::{api::cards::TrelloCardUpdate, TrelloCardId, TrelloCardName, TrelloListId}; + +#[derive(Debug, PartialEq, Eq, serde::Deserialize, serde::Serialize)] +pub struct TrelloCard { + id: TrelloCardId, + name: TrelloCardName, + #[serde(rename = "idList")] + id_list: TrelloListId, +} +impl TrelloCard { + #[cfg(test)] + pub const fn new(id: TrelloCardId, name: TrelloCardName, id_list: TrelloListId) -> Self { + Self { id, name, id_list } + } + + pub const fn list_id(&self) -> &TrelloListId { + &self.id_list + } +} diff --git a/src/trello/types/list.rs b/src/trello/types/list.rs new file mode 100644 index 0000000..266ffd2 --- /dev/null +++ b/src/trello/types/list.rs @@ -0,0 +1,9 @@ +use derive_more::derive::Constructor; + +use super::{TrelloListId, TrelloListName}; + +#[derive(Debug, Clone, PartialEq, Eq, serde::Deserialize, Constructor)] +pub(crate) struct TrelloList { + pub(crate) id: TrelloListId, + pub(crate) name: TrelloListName, +} diff --git a/src/trello/types/mod.rs b/src/trello/types/mod.rs new file mode 100644 index 0000000..a168aa4 --- /dev/null +++ b/src/trello/types/mod.rs @@ -0,0 +1,23 @@ +pub(crate) mod auth; +pub(crate) mod board; +// mod card; +mod list; +// mod new_card; + +use derive_more::derive::Display; + +use crate::newtype; + +newtype!(TrelloBoardId, String, Display, "Board ID"); +newtype!(TrelloBoardName, String, Display, "Board Name"); +newtype!(TrelloListId, String, "List ID"); +newtype!( + TrelloListName, + String, + Display, + PartialOrd, + Ord, + "List Name" +); +newtype!(TrelloCardId, String, Display, "Card ID"); +newtype!(TrelloCardName, String, Display, "Card Name"); diff --git a/src/trello/types/new_card.rs b/src/trello/types/new_card.rs new file mode 100644 index 0000000..5f45961 --- /dev/null +++ b/src/trello/types/new_card.rs @@ -0,0 +1,20 @@ +use super::{TrelloCardName, TrelloListId}; + +pub struct NewTrelloCard { + name: TrelloCardName, + list_id: TrelloListId, +} +impl NewTrelloCard { + pub fn new(name: impl Into, list_id: impl Into) -> Self { + Self { + name: name.into(), + list_id: list_id.into(), + } + } + pub const fn name(&self) -> &TrelloCardName { + &self.name + } + pub const fn list_id(&self) -> &TrelloListId { + &self.list_id + } +}