From 884898d380eb4c6e81a14566de2e97c997c531a7 Mon Sep 17 00:00:00 2001 From: Erik Heimdal <63123731+ekvanox@users.noreply.github.com> Date: Mon, 6 Oct 2025 18:58:44 +0200 Subject: [PATCH 01/11] feat: Add QR code scanning for ticket consumption Implements a complete QR code scanning system for validating and consuming event tickets: Features: - QR code scanner component using @zxing/library - Event-specific scan pages at /events/[slug]/scan - Consumable detail view with validation status - Admin QR code management page at /admin/qr - Ticket consumption tracking and history - Support for scanning from inventory page Changes: - Add QRCodeScanner.svelte component with camera access - Add useQRScanner hook for QR code detection - Add consumable.ts server utilities for ticket consumption - Add scan routes for events with ticket validation - Add consume action to mark tickets as used - Add QR code admin page to routes - Filter events with tickets in event listing - Update translations for scanning UI - Add @zxing/library dependency The system validates tickets against the event, checks consumption status, displays owner information, and shows question responses if available. --- package.json | 1 + pnpm-lock.yaml | 19 ++ src/lib/components/QRCodeScanner.svelte | 59 ++++ .../shop/inventory/InventoryItemPage.svelte | 4 +- src/lib/hooks/useQRScanner.ts | 64 +++++ src/lib/server/shop/consumable.ts | 31 +++ src/routes/(app)/admin/qr/+page.server.ts | 93 +++++++ src/routes/(app)/admin/qr/+page.svelte | 263 ++++++++++++++++++ .../(app)/events/[slug]/+page.server.ts | 2 + src/routes/(app)/events/[slug]/+page.svelte | 9 + .../(app)/events/[slug]/scan/+page.server.ts | 37 +++ .../(app)/events/[slug]/scan/+page.svelte | 61 ++++ .../[slug]/scan/[consumable]/+page.server.ts | 104 +++++++ .../[slug]/scan/[consumable]/+page.svelte | 149 ++++++++++ .../[slug]/scan/[consumable]/consume.ts | 17 ++ .../inventory/[id]/consume/+page.server.ts | 12 + .../shop/inventory/[id]/consume/+page.svelte | 6 + .../tickets/[slug]/manage/+page.server.ts | 33 +-- .../shop/tickets/[slug]/manage/+page.svelte | 5 +- src/routes/routes.ts | 7 + src/translations/en.json | 3 + src/translations/sv.json | 3 + 22 files changed, 953 insertions(+), 29 deletions(-) create mode 100644 src/lib/components/QRCodeScanner.svelte create mode 100644 src/lib/hooks/useQRScanner.ts create mode 100644 src/lib/server/shop/consumable.ts create mode 100644 src/routes/(app)/admin/qr/+page.server.ts create mode 100644 src/routes/(app)/admin/qr/+page.svelte create mode 100644 src/routes/(app)/events/[slug]/scan/+page.server.ts create mode 100644 src/routes/(app)/events/[slug]/scan/+page.svelte create mode 100644 src/routes/(app)/events/[slug]/scan/[consumable]/+page.server.ts create mode 100644 src/routes/(app)/events/[slug]/scan/[consumable]/+page.svelte create mode 100644 src/routes/(app)/events/[slug]/scan/[consumable]/consume.ts create mode 100644 src/routes/(app)/shop/inventory/[id]/consume/+page.server.ts create mode 100644 src/routes/(app)/shop/inventory/[id]/consume/+page.svelte diff --git a/package.json b/package.json index 6774423ae..177c367d4 100644 --- a/package.json +++ b/package.json @@ -112,6 +112,7 @@ "@vercel/speed-insights": "^1.1.0", "@zenstackhq/runtime": "^2.10.0", "@zenstackhq/server": "^2.10.0", + "@zxing/library": "^0.21.3", "browser-image-compression": "^2.0.2", "croppie": "^2.6.5", "dayjs": "^1.11.13", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9eefe6e9a..69c1c2def 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -77,6 +77,9 @@ importers: '@zenstackhq/server': specifier: ^2.10.0 version: 2.10.0(@prisma/client@6.0.1(prisma@6.0.1)) + '@zxing/library': + specifier: ^0.21.3 + version: 0.21.3 browser-image-compression: specifier: ^2.0.2 version: 2.0.2 @@ -2394,6 +2397,10 @@ packages: '@zenstackhq/server@2.10.0': resolution: {integrity: sha512-p99RGGjeZ9Xfm/ChgP1NiSira8tdnoxVYODmrI6FEIsS2JBpTzwIYIzdN8urpDmm97mPMmcwq1Yjz6LY8fGpNA==} + '@zxing/library@0.21.3': + resolution: {integrity: sha512-hZHqFe2JyH/ZxviJZosZjV+2s6EDSY0O24R+FQmlWZBZXP9IqMo7S3nb3+2LBWxodJQkSurdQGnqE7KXqrYgow==} + engines: {node: '>= 10.4.0'} + '@zxing/text-encoding@0.9.0': resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==} @@ -5925,6 +5932,10 @@ packages: peerDependencies: typescript: '>=4.2.0' + ts-custom-error@3.3.1: + resolution: {integrity: sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==} + engines: {node: '>=14.0.0'} + ts-deepmerge@7.0.2: resolution: {integrity: sha512-akcpDTPuez4xzULo5NwuoKwYRtjQJ9eoNfBACiBMaXwNAx7B1PKfe5wqUFJuW5uKzQ68YjDFwPaWHDG1KnFGsA==} engines: {node: '>=14.13.1'} @@ -9062,6 +9073,12 @@ snapshots: transitivePeerDependencies: - '@prisma/client' + '@zxing/library@0.21.3': + dependencies: + ts-custom-error: 3.3.1 + optionalDependencies: + '@zxing/text-encoding': 0.9.0 + '@zxing/text-encoding@0.9.0': optional: true @@ -12878,6 +12895,8 @@ snapshots: dependencies: typescript: 5.7.2 + ts-custom-error@3.3.1: {} + ts-deepmerge@7.0.2: {} ts-essentials@10.0.3(typescript@5.7.2): diff --git a/src/lib/components/QRCodeScanner.svelte b/src/lib/components/QRCodeScanner.svelte new file mode 100644 index 000000000..57e985c43 --- /dev/null +++ b/src/lib/components/QRCodeScanner.svelte @@ -0,0 +1,59 @@ + + +
No events found
+Try changing your search term
+{m.events_scanDescription()}
++ {member.firstName} + {member.lastName} + ({member.studentId}) +
+{ticket.description}
diff --git a/src/routes/routes.ts b/src/routes/routes.ts index c6706ae89..56e363418 100644 --- a/src/routes/routes.ts +++ b/src/routes/routes.ts @@ -213,6 +213,13 @@ export const getRoutes = (): Route[] => accessRequired: apiNames.MARKDOWN.CREATE, appBehaviour: "home-link", }, + { + title: "QR Code", // TODO: Add translation + path: "/admin/qr", + icon: "i-mdi-qrcode-scan", + accessRequired: apiNames.WEBSHOP.MANAGE, + appBehaviour: "home-link", + }, ], }, ] as const; diff --git a/src/translations/en.json b/src/translations/en.json index 0b7bce75c..f7bbaad2f 100644 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -506,6 +506,9 @@ "events_errors_eventNotFound": "Event not found", "events_errors_endAfterStart": "End must be after start", "events_errors_recurringParentNotFound": "Couldn't find recurring event parent", + "events_scanning": "Event", + "events_scanInstructions": "Scan QR Code", + "events_scanDescription": "Point your camera at the QR code to scan it.", "events_all_events": "All events", "documents_deleteFile": "Delete file", "documents_deleteAreYouSure": "Are you sure you want to delete the file {fileName}?", diff --git a/src/translations/sv.json b/src/translations/sv.json index 3dcaaca19..5b2b29390 100644 --- a/src/translations/sv.json +++ b/src/translations/sv.json @@ -504,6 +504,9 @@ "events_errors_eventNotFound": "Kunde inte hitta evenemanget", "events_errors_endAfterStart": "Sluttiden måste vara efter starttiden", "events_errors_recurringParentNotFound": "Kunde inte hitta förälder till återkommande evenemang", + "events_scanning": "Event", + "events_scanInstructions": "Skanna QR-kod", + "events_scanDescription": "Peka kameran mot QR-koden för att skanna den.", "events_all_events": "Alla events", "documents_deleteFile": "Radera fil", "documents_deleteAreYouSure": "Är du säker på att du vill radera filen {fileName}?", From 9cc26d0b086d0aa5fd55b57ed40c5579e723260e Mon Sep 17 00:00:00 2001 From: Erik Heimdal <63123731+ekvanox@users.noreply.github.com> Date: Mon, 6 Oct 2025 19:05:21 +0200 Subject: [PATCH 02/11] fix: resolve linting and formatting issues --- src/database/seed/.snaplet/config.json | 3 +- src/database/seed/.snaplet/dataExamples.json | 4078 +++++++++++++++++ src/routes/(app)/admin/qr/+page.server.ts | 16 +- src/routes/(app)/events/[slug]/+page.svelte | 2 +- .../[slug]/scan/[consumable]/+page.svelte | 4 +- 5 files changed, 4091 insertions(+), 12 deletions(-) create mode 100644 src/database/seed/.snaplet/dataExamples.json diff --git a/src/database/seed/.snaplet/config.json b/src/database/seed/.snaplet/config.json index c5bb4e4e2..53a2cb9ea 100644 --- a/src/database/seed/.snaplet/config.json +++ b/src/database/seed/.snaplet/config.json @@ -1,3 +1,4 @@ { - "adapter": "prisma" + "adapter": "prisma", + "projectDescription": "This project is about managing and organizing various aspects of an organization or community, such as events, users, articles, bookings, memberships, committees, expenses, products, notifications, orders, payments, and more. It seems to involve features related to event management, content publishing, e-commerce, inventory tracking, access control, and communication within the organization or community." } \ No newline at end of file diff --git a/src/database/seed/.snaplet/dataExamples.json b/src/database/seed/.snaplet/dataExamples.json new file mode 100644 index 000000000..e57b0b472 --- /dev/null +++ b/src/database/seed/.snaplet/dataExamples.json @@ -0,0 +1,4078 @@ +[ + { + "input": "public user policies", + "examples": [ + "Users must agree to the Terms and Conditions before using the platform.", + "Members have access to exclusive content and events.", + "Free users can only create a maximum of 5 bookings per month.", + "All users are required to update their profile information every 6 months.", + "By creating an account, users agree to receive marketing emails.", + "Users must not engage in hate speech or discrimination in comments.", + "Users under the age of 18 must have parental consent to use certain features.", + "Premium members have priority support and faster response times.", + "Users are prohibited from sharing their login credentials with others.", + "Events may have different cancellation policies, so users should check before booking.", + "Posting of offensive content will result in account suspension.", + "Users are responsible for maintaining the confidentiality of their passwords.", + "Users can upgrade their membership level at any time.", + "Certain features require additional verification for security purposes.", + "Users must follow community guidelines when interacting with others.", + "Access to certain areas of the platform is restricted based on user roles.", + "Using fake information may result in account termination.", + "Users can request data export or deletion through the settings.", + "By participating in a survey, users agree to share their feedback anonymously.", + "Users must not engage in any illegal activities while using the platform." + ], + "description": "This column is about storing the policies associated with the users in the system. These policies could include rules and regulations that users need to adhere to while using the platform or participating in events, articles, bookings, memberships, etc. This column may hold information related to user permissions, usage guidelines, and terms of service." + }, + { + "input": "public user member_id", + "examples": [ + "USR12345", + "USR98765", + "USR54321", + "USR11111", + "USR99999", + "USR24680", + "USR77777", + "USR55555", + "USR33333", + "USR88888", + "USR44444", + "USR22222", + "USR67890", + "USR13579", + "USR24689", + "USR87654", + "USR78012", + "USR45678", + "USR98765", + "USR11223" + ], + "description": "This column contains the unique identifier of a member within the public User entity. It is used to link and identify the member across different tables and functionalities within the platform." + }, + { + "input": "public user student_id", + "examples": [ + "AB1234", + "CD5678", + "EF9012", + "GH3456", + "IJ7890", + "KL2345", + "MN6789", + "OP1234", + "QR5678", + "ST9012", + "UV3456", + "WX7890", + "YZ2345", + "123ABC", + "456DEF", + "789GHI", + "012JKL", + "345MNO", + "678PQR", + "901STU" + ], + "description": "This column is about storing the unique identifier for a student associated with a user in the public user table. It likely links the user to a specific student profile or record within the system." + }, + { + "input": "public user external_code", + "examples": [ + "EC1234", + "USR5678", + "EXT9012", + "ABCD123", + "ZXY789", + "USR0001", + "EXTERNAL-987", + "ID-5555", + "USR-XYZ", + "1234APPLE", + "USER8765", + "EXTERNAL22", + "ABCDEF", + "ID123", + "EXTERNAL999", + "USR-876", + "9999XYZ", + "CODE-777", + "USERCODE123", + "5555ABC" + ], + "description": "This column is about storing the external code associated with a user in the public.User table. This external code may be used for identification or integration purposes with external systems or services." + }, + { + "input": "public user roles", + "examples": [ + "admin", + "member", + "editor", + "viewer", + "moderator", + "customer_support", + "supervisor", + "analyst", + "developer", + "designer", + "sales_representative", + "marketing_manager", + "guest", + "quality_assurance", + "partner", + "financial_controller", + "operations_manager", + "teacher", + "student", + "volunteer" + ], + "description": "This column is about storing the roles assigned to users in the system. These roles define the permissions and access rights that a user has within the platform. For example, a user could have roles like 'admin', 'member', 'editor', 'viewer', etc., which dictate what actions they can perform and what data they can view or modify." + }, + { + "input": "public admin_settings key", + "examples": [ + "event_registration_limit", + "article_approval_required", + "booking_cancellation_period", + "membership_fee", + "notification_email_templates", + "order_refund_policy", + "product_inventory_threshold", + "expense_categories", + "user_interaction_logging_enabled", + "event_registration_deadline", + "article_visibility_settings", + "booking_confirmation_notification", + "membership_duration", + "notification_sound_settings", + "order_tax_rates", + "product_discount_codes", + "expense_approval_workflow", + "user_interaction_analytics", + "event_calendar_integration", + "article_comment_moderation" + ], + "description": "This column is about storing the keys for various admin settings in the public domain of the platform, which may include configurations for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions. These keys are used to access and manage different settings and features for the administration of the platform." + }, + { + "input": "public admin_settings value", + "examples": [ + "Theme Color: Blue", + "Default Language: English", + "Maximum Users Allowed: 100", + "Email Notifications: Enabled", + "SEO Metatags: Customized", + "Registration Required: Yes", + "Logo URL: public/images/logo.png", + "Home Page Banner: Active", + "Allow Comments: No", + "Timezone: GMT+3", + "Maintenance Mode: Off", + "Featured Content: Random", + "Google Analytics ID: UA-12345678", + "Default Currency: USD", + "Background Image: public/images/background.jpg", + "Minimum Password Length: 8", + "Social Media Links: facebook.com, twitter.com", + "Contact Email: admin@example.com", + "Privacy Policy Link: public/docs/privacy_policy.pdf", + "Allow Guest Checkout: Yes" + ], + "description": "This column is about storing the values related to the admin settings in the public section of the platform. It likely includes configurations, preferences, or options that the admin can set or modify to control the behavior or appearance of the platform." + }, + { + "input": "public alerts severity", + "examples": [ + "info", + "warning", + "critical", + "minor", + "severe", + "emergency", + "important", + "low", + "high", + "moderate", + "urgent", + "normal", + "crucial", + "significant", + "important", + "exceptional", + "medium", + "essential", + "minor", + "major" + ], + "description": "This column is about storing the severity level of alerts generated in the system. It may indicate the level of urgency or impact of the alert, such as 'info', 'warning', or 'critical'." + }, + { + "input": "public alerts message", + "examples": [ + "The event 'Summer Music Festival' has been postponed to a later date. Stay tuned for updates!", + "Your order #123456 has been successfully delivered to your address. Enjoy your purchase!", + "Reminder: Your membership subscription will expire in 3 days. Renew now to continue enjoying exclusive benefits.", + "New article '10 Healthy Recipes for Summer' has been published. Check it out now!", + "Alert: Unusual login activity detected on your account. Secure your account immediately.", + "Your booking for 'Weekend Getaway' has been confirmed. Have a great trip!", + "Notification: You have received a new message from a potential client. Respond now to engage.", + "Attention: Your monthly expenses have exceeded the set budget limit. Review your spending.", + "Product 'Smart Watch Series 5' is now back in stock. Order yours before it runs out!", + "Update: The venue for the workshop on 'Digital Marketing Trends' has been changed to Hall B.", + "Reminder: Your subscription to the newsletter 'Health & Wellness Today' will renew automatically next week.", + "Alert: Your password expires in 2 days. Please update it to ensure account security.", + "Your request for a refund on order #789012 has been processed. Expect the amount in your account within 3-5 business days.", + "Notification: A new feature 'Dark Mode' has been added to the app. Try it out now!", + "Important: The deadline for submitting your project proposal is approaching. Submit before the due date.", + "Your booking for the 'Cooking Class with Chef John' has been canceled. Contact support for further assistance.", + "Breaking News: Major sale event 'Mid-Year Clearance' starts tomorrow. Don't miss out on great deals!", + "Update: The delivery of your product is delayed due to unforeseen circumstances. We apologize for the inconvenience.", + "Reminder: Your free trial for 'Premium Membership' expires in 2 days. Upgrade now for uninterrupted access.", + "Notification: You have been tagged in a post by a friend. Check it out and join the conversation." + ], + "description": "This column is about storing the actual content or message of the alerts raised in the platform related to events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions. It may contain information about an issue, notification, or relevant details for users to be informed about." + }, + { + "input": "public alerts message_en", + "examples": [ + "Event reminder: Join us for the live stream of the music concert tomorrow at 7 PM!", + "Your article 'The Benefits of Exercise' has been successfully published.", + "Your booking for the wellness workshop on 25th March has been confirmed.", + "Renew your membership to continue enjoying exclusive benefits.", + "New notification: You have received a message from a new connection.", + "Your order #12345 has been shipped and is on its way to you.", + "Exciting new products added! Check out our latest arrivals.", + "Your expenses report for the month of February is now ready for review.", + "You have a new comment on your recent post about healthy eating.", + "Tag your friends in the photo to share memories together.", + "Notification: Your appointment with Dr. Smith has been rescheduled to Friday.", + "Upgrade your account to unlock premium features and content.", + "Thank you for your purchase! Enjoy your new workout gear.", + "Reminder: Don't forget to submit your feedback on the latest updates.", + "Limited-time offer: Buy 2, Get 1 Free on all skincare products.", + "Your booking for a couples spa day on Valentine's Day is confirmed.", + "Product update: New color options now available for your favorite dress.", + "Track your expenses easily with our new budgeting tool.", + "Join the discussion on mental health awareness in our community forum.", + "Notification: You have been tagged in a photo from last night's event." + ], + "description": "This column contains the English version of the messages related to alerts displayed to the public on the platform. These messages could include information about events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions, along with features like tagging, comments, and notifications." + }, + { + "input": "public api_access_policies api_name", + "examples": [ + "events", + "articles", + "bookings", + "memberships", + "notifications", + "orders", + "products", + "expenses", + "user_interactions", + "tagging", + "comments", + "notifications", + "photos", + "reviews", + "subscriptions", + "ratings", + "contacts", + "likes", + "shares", + "followers" + ], + "description": "This column is about storing the name of the API endpoints related to public access and policies in the system. It could contain names such as events, articles, bookings, memberships, notifications, orders, products, expenses, user interactions, tagging, comments, notifications, etc." + }, + { + "input": "public api_access_policies role", + "examples": [ + "admin", + "editor", + "member", + "customer", + "guest", + "staff", + "superuser", + "developer", + "affiliate", + "manager", + "vendor", + "moderator", + "analyst", + "partner", + "consultant", + "publisher", + "designer", + "support", + "intern", + "tester" + ], + "description": "This column is about defining the role associated with API access policies. It likely determines the level of access and permissions granted to different roles when interacting with the application's API endpoints, such as managing events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions." + }, + { + "input": "public article_comments content", + "examples": [ + "Great article! I really enjoyed reading this.", + "I disagree with the points raised in this article. Here's why...", + "This is very informative, thank you for sharing.", + "I have a different perspective on this topic.", + "The author made some valid points here.", + "Interesting read. I would love to see more articles like this.", + "This article needs more evidence to support its claims.", + "I found this article to be biased towards a certain viewpoint.", + "I appreciate the research that went into this article.", + "I'm not convinced by the arguments presented here.", + "Well-written and thought-provoking.", + "It's refreshing to see such a well-reasoned article.", + "I can relate to the experiences shared in this article.", + "This article touched on an important issue.", + "The conclusions drawn in this article are questionable.", + "I found the writing style of this article to be engaging.", + "This topic is very relevant in today's society.", + "I would like to see more data to support the claims made here.", + "I enjoyed the personal anecdotes included in this article.", + "The arguments presented here are compelling." + ], + "description": "This column is about storing the content of comments made on articles within the public section of the platform." + }, + { + "input": "public article_requests rejection_reason", + "examples": [ + "Article does not meet platform guidelines", + "Plagiarized content", + "Insufficient research or poor quality", + "Out of scope for platform content", + "Incomplete article submission", + "Too promotional in nature", + "Overly biased opinion presented", + "Article too similar to existing content", + "Incorrect facts or misleading information", + "Poor formatting or readability", + "Word count below minimum requirement", + "Language barrier issues impacting readability", + "Lack of proper citations or references", + "Article request duplicated multiple times", + "Failure to address requested topic adequately", + "Violation of copyright laws", + "Sensitive or inappropriate content", + "Overly technical language for general audience", + "Failure to follow submission guidelines", + "Lack of author credibility or expertise" + ], + "description": "This column is about storing the reason for rejecting article requests in the platform." + }, + { + "input": "public article_requests notification_body", + "examples": [ + "Your article request 'The Impact of Climate Change on Biodiversity' has been submitted successfully. Our team is working on finding a suitable expert to start the research.", + "Great news! An expert has been assigned to your article request 'Exploring Sustainable Agriculture Practices'. You can expect updates soon.", + "Your article request 'The Future of Artificial Intelligence in Healthcare' is gaining interest among our expert community. Stay tuned for progress updates.", + "We have exciting news! Your article request 'Innovations in Renewable Energy Technologies' has been approved for further exploration.", + "Congratulations! Your article request 'Challenges of Urbanization in Developing Countries' has been selected for research funding. The project starts soon.", + "Thank you for submitting your article request 'The Psychology of Decision Making'. Our editorial team is reviewing it before moving to the next phase.", + "Your article request 'Empowering Women in STEM Fields' has caught the attention of our expert panel. Expect updates on potential researchers for this project.", + "Exciting update! Your article request 'Innovative Solutions for Plastic Pollution' has been shortlisted for our upcoming sustainability focus.", + "Congratulations! An expert has expressed interest in your article request 'The Role of Technology in Education Reform'. Collaboration begins shortly.", + "Get ready for a journey of discovery with your article request 'Exploring the Mysteries of Deep-sea Ecosystems'. Our team is eager to delve into this topic.", + "Great news! Your article request 'The Evolution of Space Exploration Technologies' has garnered interest from top researchers in the field.", + "Your article request 'Unveiling the Secrets of Quantum Computing' has been submitted for review. More updates on the progress will follow soon.", + "An expert is currently reviewing your article request 'Trends in Sustainable Fashion'. Stay tuned for potential collaborations and research opportunities.", + "We are pleased to inform you that your article request 'Revolutionizing Renewable Energy Storage' has been moved to the research phase. Exciting developments ahead.", + "Congratulations on the approval of your article request 'The Intersection of Art and Technology'. Our team is thrilled to explore this innovative topic.", + "Your article request 'The Future of Work: Adapting to a Digital Economy' is now under review by our content specialists. Progress updates will be shared soon.", + "Exciting news! Your article request 'Innovative Approaches to Water Conservation' has been highlighted for our upcoming environmental series.", + "An expert has been assigned to your article request 'The Psychology of Social Media Behavior'. Stay connected for updates on this intriguing study.", + "Your article request 'Exploring the Impact of Virtual Reality in Healthcare' has been successfully submitted. Our team is on board to delve into this fascinating subject.", + "Congratulations! Your article request 'Promoting Mental Health Awareness in Schools' has been well-received by our education-focused experts. Stay engaged for more.", + "Your article request 'Innovative Strategies for Urban Mobility' is generating buzz among our expert network. Stay tuned for developments in this exciting field." + ], + "description": "This column is about storing the body content of notifications related to article requests in the public section of the platform." + }, + { + "input": "public article_requests notification_body_en", + "examples": [ + "Your article request has been approved. Congratulations! Please proceed with the submission.", + "We regret to inform you that your article request did not meet our submission guidelines. Thank you for your interest.", + "Great news! Your article has been selected for publication. Please review the attached details.", + "We are currently reviewing your article request. We will provide an update soon.", + "Thank you for submitting your article request. We appreciate your contribution to our platform.", + "Your article request is pending review. We will notify you of any updates.", + "Unfortunately, your article request has been declined. Thank you for understanding.", + "Congratulations! Your article request has been accepted. Please review the terms and conditions.", + "Your article request is under consideration. We appreciate your patience.", + "We have received your article request. Our team is reviewing it thoroughly.", + "We are excited to inform you that your article has been shortlisted for publication.", + "Thank you for your article request. We will notify you once a decision has been made.", + "Your article request is on hold for further review. We will update you shortly.", + "We appreciate your interest in submitting an article request. Please expect a response soon.", + "We regret to inform you that your article request has been rejected. Thank you for your submission.", + "Congratulations! Your article request has been approved. Please proceed with the necessary steps.", + "We have received your article request and will provide an update within the next few days.", + "We are impressed with your article request. We are currently reviewing it thoroughly.", + "Thank you for your submission. We will review your article request and get back to you soon.", + "Your article request has been approved. Please review the scheduled publication date.", + "We have reviewed your article request and require additional information. Please provide the requested details.", + "We appreciate your article request submission. Our team will review it and inform you of the outcome.", + "Congratulations! Your article request has been finalized. You can expect publication details soon.", + "Your article request is being processed. We will update you on the progress shortly.", + "Thank you for your article request submission. We will review it and notify you of the outcome.", + "We appreciate your contribution. Your article request is currently under review.", + "We have received your article request. Our team will assess it and provide feedback shortly.", + "Your article request has been approved. Please follow the instructions for the next steps.", + "We are in the final stages of reviewing your article request. An update will be provided soon.", + "We are currently evaluating your article request. Thank you for your patience.", + "Thank you for your submission. We will review your article request and provide feedback shortly.", + "Congratulations! Your article request has been accepted. Please review the publication guidelines.", + "We appreciate your article request submission. Our team is reviewing it thoroughly.", + "Your article request has been approved. Please check the submission deadline and requirements.", + "We have reviewed your article request and require additional information for further processing.", + "We acknowledge the receipt of your article request. Our team will assess it and respond accordingly.", + "Your article request has been approved. Please proceed with the necessary steps for publication.", + "We are currently processing your article request and will provide an update soon.", + "Thank you for submitting your article request. We will review it and inform you of the outcome shortly." + ], + "description": "This column is about storing the notification body in English for article request notifications. This may include messages or information related to article requests such as approval notifications, rejection notifications, or other communication regarding article submissions or requests." + }, + { + "input": "public articles header", + "examples": [ + "10 Healthy Foods to Boost Your Immune System", + "The Art of Mindfulness: A Guide to Inner Peace", + "How to Start Your Own Business From Scratch", + "The Best Travel Destinations for Solo Adventurers", + "Understanding Climate Change: Impact on Our Planet", + "Delicious Vegan Recipes for Every Occasion", + "Breaking Down the Science of Black Holes", + "Exploring the Ancient Ruins of Machu Picchu", + "The Benefits of Regular Exercise for Mental Health", + "Unleashing Your Creativity Through Photography", + "Navigating Work-Life Balance in a Fast-Paced World", + "The History and Evolution of Video Games", + "Discovering the Wonders of Underwater World", + "Effective Strategies for Stress Management", + "Unlocking the Secrets of the Universe: Astronomy 101", + "Simple Ways to Reduce Plastic Waste in Your Daily Life", + "Tips for Cultivating a Positive and Productive Mindset", + "The Rise of Plant-Based Diets: Health and Environmental Impacts", + "Fascinating Facts About Ancient Civilizations", + "Mind-Blowing Innovations Shaping the Future" + ], + "description": "This column is about storing the title or heading of an article in the public articles section of the platform. It may contain the title of the article in the primary language or in English, depending on the specific column naming convention used in the database design." + }, + { + "input": "public articles header_en", + "examples": [ + "Top 10 Travel Destinations for 2021", + "How to Improve Your Productivity at Work", + "The Impact of Climate Change on Wildlife", + "Simple and Healthy Breakfast Ideas", + "The Evolution of Technology in Education", + "The Power of Mindfulness and Meditation", + "Exploring the Wonders of the Amazon Rainforest", + "10 Must-Read Books for Summer", + "Tips for Effective Remote Work Collaboration", + "The Benefits of a Plant-Based Diet", + "Uncovering Hidden Gems in European Cities", + "Navigating the World of Online Dating", + "Breaking the Stigma Around Mental Health", + "Discovering the Art of Japanese Cuisine", + "The Rise of Sustainable Fashion Brands", + "The Future of Artificial Intelligence in Healthcare", + "The Joys of Parenthood: Parenting Tips and Tricks", + "Cultivating a Positive Mindset for Success", + "Exploring Ancient Ruins in South America", + "Innovations in Green Energy Technology" + ], + "description": "This column is about containing the header of an article in English." + }, + { + "input": "public articles body", + "examples": [ + "Join us for an exciting event on Friday at 7 PM! Don't miss out on the fun activities and gourmet food.", + "Your booking for a relaxing spa day has been confirmed. Get ready to unwind and rejuvenate!", + "Upgrade to a premium membership to enjoy exclusive benefits such as early access to new products and special discounts.", + "Hi there! You have a new notification regarding your recent order. Please check your account for details.", + "Your order #12345 has been shipped and will arrive at your doorstep by Friday. Thank you for shopping with us!", + "Discover our latest collection of products that will elevate your style game. Shop now and stand out from the crowd!", + "Track your expenses and manage your budget effectively with our easy-to-use expense tracking tool.", + "Congratulations on reaching a new milestone! We appreciate your dedication and hard work.", + "We value your feedback! Please take a moment to share your thoughts on your recent experience.", + "Get ready for the upcoming sale event starting on Monday! Enjoy massive discounts on your favorite products.", + "Introducing our new user-friendly interface designed to enhance your browsing experience. Explore now!", + "Experience the magic of our limited edition holiday collection. Perfect gifts for your loved ones!", + "Stay updated on the latest trends and tips with our weekly newsletter. Subscribe now for exclusive content.", + "Say goodbye to stress and hello to relaxation with our spa package. Book your session today!", + "Unlock premium features by upgrading to a VIP membership. Enjoy priority support and personalized recommendations.", + "Celebrate your achievements with a special discount on your next purchase. You deserve it!", + "We're here to assist you 24/7. Reach out to our customer support team for any queries or assistance.", + "Discover the joy of giving with our gift cards. Perfect for any occasion and loved ones.", + "Transform your space with our exclusive home decor collection. Elevate your home to new heights of style.", + "Savor the flavors of our gourmet menu crafted by top chefs. Indulge in a culinary experience like never before." + ], + "description": "This column is about storing the body content of articles in the public section of the platform. It likely contains the written content, including text and possibly formatting for articles related to events, bookings, memberships, notifications, orders, products, expenses, and user interactions. This column may also include the translation of the body content in English." + }, + { + "input": "public articles body_en", + "examples": [ + "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam id enim vel quam ultricies placerat.", + "In today's article, we will be discussing the impact of technology on modern society and its implications for the future.", + "The best way to achieve success is through hard work, dedication, and perseverance. Let's explore these concepts further in this article.", + "Are you looking for ways to improve your health and well-being? Stay tuned for some useful tips and tricks in this article.", + "The 10 best travel destinations for the summer season. Find out where you should plan your next vacation!", + "How to start a successful online business from scratch. Learn the key steps and strategies in this informative article.", + "The importance of mental health awareness in today's fast-paced world. Let's break the stigma and promote well-being together.", + "Interview with a renowned artist: insights into their creative process, inspiration, and upcoming projects.", + "The future of sustainable living: innovative solutions and practices that will shape our planet for generations to come.", + "Uncovering the mysteries of the deep sea: a fascinating exploration of marine life and ecosystems in this article.", + "The art of mindfulness: tips on how to practice mindfulness in your daily life and experience its benefits.", + "Discover the secrets of a healthy diet: nutrition tips, meal planning ideas, and recipes for a balanced lifestyle.", + "Exploring the wonders of outer space: from black holes to distant galaxies, the universe is full of mysteries waiting to be revealed.", + "Career development strategies for young professionals: how to advance in your career and achieve your professional goals.", + "10 must-read books for every book lover's summer reading list. Find your next favorite novel in this article.", + "Tips for effective time management: how to prioritize tasks, set goals, and make the most of your day.", + "The power of positivity: how a positive mindset can transform your life and lead to greater happiness and success.", + "An in-depth analysis of climate change and its impact on the environment: what we can do to mitigate its effects.", + "Exploring the cultural heritage of ancient civilizations: uncovering the mysteries of the past through archaeology and history.", + "The benefits of regular exercise: improve your physical and mental well-being with a consistent workout routine." + ], + "description": "This column is about storing the body of the articles written in English for the public section of the platform." + }, + { + "input": "public articles image_url", + "examples": [ + "https://www.example.com/images/article1.jpg", + "https://www.example.com/images/article2.png", + "https://www.example.com/images/article3.jpg", + "https://www.example.com/images/article4.jpeg", + "https://www.example.com/images/article5.png", + "https://www.example.com/images/article6.jpg", + "https://www.example.com/images/article7.jpeg", + "https://www.example.com/images/article8.png", + "https://www.example.com/images/article9.jpg", + "https://www.example.com/images/article10.jpeg", + "https://www.example.com/images/article11.jpg", + "https://www.example.com/images/article12.png", + "https://www.example.com/images/article13.jpeg", + "https://www.example.com/images/article14.png", + "https://www.example.com/images/article15.jpg", + "https://www.example.com/images/article16.jpeg", + "https://www.example.com/images/article17.png", + "https://www.example.com/images/article18.jpeg", + "https://www.example.com/images/article19.jpg", + "https://www.example.com/images/article20.png" + ], + "description": "This column is about storing the URL of the image associated with an article in the public section of the platform. It is used to display visual content related to the article such as illustrations, photos, or graphics." + }, + { + "input": "public articles slug", + "examples": [ + "introduction-to-data-science", + "top-10-tips-for-healthy-living", + "how-to-build-a-successful-startup", + "the-art-of-watercolor-painting", + "travel-guide-to-paris", + "best-recipes-for-summer-bbq", + "movie-review-avengers-endgame", + "latest-fashion-trends-2022", + "the-impact-of-technology-on-society", + "beginners-guide-to-investing", + "10-ways-to-boost-your-productivity", + "celebrity-interview-taylor-swift", + "photography-tips-for-stunning-photos", + "home-decor-ideas-for-small-spaces", + "mindfulness-and-meditation-practices", + "ultimate-guide-to-digital-marketing", + "parenting-tips-for-raising-toddlers", + "book-review-harry-potter-series", + "sustainable-living-tips-for-the-modern-family", + "fitness-workout-routines-for-all-levels" + ], + "description": "This column is a unique identifier for each article, which is part of the public section of the platform. It is used in the URL to access and view individual articles on the website." + }, + { + "input": "public articles youtube_url", + "examples": [ + "https://www.youtube.com/watch?v=abc123", + "https://www.youtube.com/watch?v=def456", + "https://www.youtube.com/watch?v=ghi789", + "https://www.youtube.com/watch?v=jkl012", + "https://www.youtube.com/watch?v=mno345", + "https://www.youtube.com/watch?v=pqr678", + "https://www.youtube.com/watch?v=stu901", + "https://www.youtube.com/watch?v=vwx234", + "https://www.youtube.com/watch?v=yza567", + "https://www.youtube.com/watch?v=bcd890", + "https://www.youtube.com/watch?v=efg123", + "https://www.youtube.com/watch?v=hij456", + "https://www.youtube.com/watch?v=klm789", + "https://www.youtube.com/watch?v=opq012", + "https://www.youtube.com/watch?v=rst345", + "https://www.youtube.com/watch?v=uvw678", + "https://www.youtube.com/watch?v=xyz901", + "https://www.youtube.com/embed/abc123", + "https://www.youtube.com/embed/def456", + "https://www.youtube.com/embed/ghi789" + ], + "description": "This column is for storing the YouTube video URL associated with an article in the public articles section." + }, + { + "input": "public articles image_urls", + "examples": [ + "https://example.com/image1.jpg,https://example.com/image2.jpg,https://example.com/image3.jpg", + "https://example.com/photo123.png,https://example.com/pic456.jpg", + "https://example.com/article_image.jpg,https://example.com/related_image.png", + "https://example.com/image345.jpg,https://example.com/photo678.png", + "https://example.com/picture789.jpg,https://example.com/img910.png", + "https://example.com/article_pic.jpg,https://example.com/image11.png", + "https://example.com/pic12.jpg,https://example.com/article_photo.png", + "https://example.com/image13.png,https://example.com/photo141.jpg", + "https://example.com/photo_image.jpg,https://example.com/pic15.png", + "https://example.com/image16.png,https://example.com/picture171.jpg", + "https://example.com/pic18.jpg,https://example.com/img19.png", + "https://example.com/article_image20.jpg,https://example.com/photo21.png", + "https://example.com/image22.png,https://example.com/article_photo23.jpg", + "https://example.com/pic24.jpg,https://example.com/photo_image25.png", + "https://example.com/article_pic26.jpg,https://example.com/img27.png", + "https://example.com/image28.png,https://example.com/picture29.jpg", + "https://example.com/pic30.jpg,https://example.com/article_image31.png", + "https://example.com/image32.jpg,https://example.com/article_photo33.png", + "https://example.com/photo34.png,https://example.com/pic35.jpg", + "https://example.com/image_photo36.jpg,https://example.com/img37.png" + ], + "description": "This column is used to store multiple image URLs related to the articles in the public section of the platform. It allows for displaying multiple images associated with a particular article, providing visual content to accompany the text." + }, + { + "input": "public bookable_categories name", + "examples": [ + "Conferences", + "Workshops", + "Seminars", + "Webinars", + "Training Courses", + "Panel Discussions", + "Networking Events", + "Product Launches", + "Industry Expos", + "Team Building Activities", + "Speaker Series", + "Virtual Tours", + "Hackathons", + "Career Fairs", + "Music Festivals", + "Gaming Tournaments", + "Art Workshops", + "Fashion Shows", + "Fitness Classes", + "Photography Walks" + ], + "description": "This column is about storing the name of a bookable category in the platform. For example, bookable categories could be 'Conferences', 'Workshops', 'Seminars', etc." + }, + { + "input": "public bookable_categories name_en", + "examples": [ + "Conferences", + "Workshops", + "Seminars", + "Webinars", + "Music Concerts", + "Art Classes", + "Fitness Sessions", + "Food Tastings", + "Tech Talks", + "Yoga Retreats", + "Dance Workshops", + "Networking Events", + "Panel Discussions", + "Photography Tours", + "Cooking Classes", + "Book Clubs", + "Charity Galas", + "Fashion Shows", + "Gardening Workshops", + "Movie Screenings" + ], + "description": "This column contains the English names of the bookable categories in the platform, which could include names like 'Conferences', 'Workshops', 'Seminars', 'Webinars', etc. It is used to display the category names in English for users to easily identify and select the type of event they are interested in booking." + }, + { + "input": "public bookables name", + "examples": [ + "Special Workshop: Mindfulness Meditation", + "Annual Conference - Marketing Strategies 2022", + "Exclusive Membership: Premium Access", + "Design Thinking Masterclass", + "Product Launch: Next-Gen Smartwatch", + "Reservation: Date Night Dinner for Two", + "Gold Pass: Music Festival VIP Entry", + "Health & Wellness Retreat", + "Business Coaching Session", + "Eco-Friendly Lifestyle Products Bundle", + "Financial Planning Seminar Series", + "Artisanal Cooking Class", + "Team Building Escape Room Challenge", + "Digital Nomad Workation Package", + "Wellness Subscription Box", + "Luxury Spa Day Package", + "Web Development Bootcamp", + "Book Club Membership", + "Outdoor Adventure Tour", + "Virtual Reality Gaming Experience" + ], + "description": "This column is about storing the name of the bookable item, such as an event, article, booking, membership, product, or expense, in the platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions." + }, + { + "input": "public bookables name_en", + "examples": [ + "Music Festival Pass", + "Yoga Class", + "Beginner's Guide to Photography", + "City Tour Ticket", + "Annual Membership", + "Eco-Friendly Water Bottle", + "Live Cooking Workshop", + "Concert Ticket", + "Virtual Wine Tasting", + "Personal Training Session", + "Book Club Membership", + "Art Workshop", + "Fitness Retreat Package", + "Language Learning Course", + "Online Meditation Session", + "Tech Conference Ticket", + "Gardening Workshop", + "Film Screening Event", + "Nutrition Coaching Session", + "DIY Craft Kit" + ], + "description": "This column is about the English name of bookable items on the platform, such as events, articles, bookings, memberships, products, etc. It is used to store the English version of the name for better understanding and communication with users who prefer English language." + }, + { + "input": "public bookables door", + "examples": [ + "Main entrance door", + "Door A101", + "Back door near the parking lot", + "Emergency exit door", + "Door to conference room 2B", + "Service entrance door", + "Front lobby door", + "Doors to swimming pool area", + "Lecture hall entrance door", + "Faculty lounge door", + "Door to fitness center", + "Doorway leading to outdoor patio", + "VIP access door", + "Access door to VIP lounge", + "Locker room door", + "Door to the rooftop terrace", + "Employee entrance door", + "Gate access door", + "Private event entrance door", + "Security checkpoint door" + ], + "description": "This column is about storing information related to the door of a bookable item in the public bookables table. It could signify door number, access point, or any other door-related details pertaining to the bookable items on the platform." + }, + { + "input": "public booking_requests event", + "examples": [ + "Concert at Madison Square Garden", + "Conference at Los Angeles Convention Center", + "Wedding at The Plaza Hotel", + "Sporting Event at Yankee Stadium", + "Workshop at Silicon Valley Tech Hub", + "Trade Show at McCormick Place", + "Fashion Show at Paris Fashion Week", + "Music Festival at Coachella", + "Charity Gala at Metropolitan Museum of Art", + "Movie Premiere at Hollywood Theatre", + "Food Expo at Jacob K. Javits Center", + "Art Exhibition at Tate Modern", + "Tech Conference at Moscone Center", + "Book Launch at Barnes & Noble", + "Dance Performance at Lincoln Center", + "Automotive Expo at Cobo Center", + "Theater Play at Broadway", + "Gaming Tournament at E3", + "Health & Wellness Retreat at Sedona", + "Culinary Class at Le Cordon Bleu" + ], + "description": "This column is about storing the event associated with a booking request in the public schema." + }, + { + "input": "public cart student_id", + "examples": [ + "STU1234", + "STU5678", + "STU9999", + "STU2468", + "STU1357", + "STU7777", + "STU8420", + "STU4040", + "STU2121", + "STU8888", + "STU5432", + "STU1122", + "STU6543", + "STU9876", + "STU3333", + "STU1919", + "STU5050", + "STU9191", + "STU4747", + "STU6363" + ], + "description": "This column is about storing the unique identifier (ID) of the student associated with a cart in the public schema of the database. It likely links the cart to a specific student's profile or account for tracking purchases or interactions related to that student." + }, + { + "input": "public committees name", + "examples": [ + "Event Planning Committee", + "Article Review Board", + "Membership Advisory Council", + "Community Outreach Team", + "Diversity and Inclusion Subcommittee", + "Technology Task Force", + "Finance Committee", + "Policy Review Panel", + "Sustainability Working Group", + "Marketing Advisory Board", + "Wellness Committee", + "Research and Development Task Team", + "Public Relations Subcommittee", + "Training and Development Council", + "Ethics Committee", + "Safety and Security Task Force", + "Quality Assurance Board", + "Public Affairs Working Group", + "Governance Advisory Panel", + "Student Affairs Committee" + ], + "description": "This column is about storing the names of public committees related to the platform such as event committees, article review committees, membership committees, etc." + }, + { + "input": "public committees name_en", + "examples": [ + "Finance Committee", + "Health and Safety Board", + "Marketing Subcommittee", + "Technology Advisory Panel", + "Community Outreach Task Force", + "Diversity and Inclusion Council", + "Education Working Group", + "Environmental Sustainability Committee", + "Human Resources Committee", + "Research and Development Panel", + "Senior Wellness Task Force", + "Urban Planning Advisory Board", + "Arts and Culture Committee", + "Digital Transformation Task Force", + "Quality Assurance Subcommittee", + "Strategic Planning Working Group", + "Customer Experience Committee", + "Legal and Compliance Board", + "Public Relations Task Force", + "Student Engagement Committee" + ], + "description": "This column is about storing the English name of the committees in the public domain within the project." + }, + { + "input": "public committees short_name", + "examples": [ + "fin", + "edu", + "tech", + "env", + "gov", + "justice", + "health", + "trans", + "infra", + "arts", + "agri", + "soc", + "trade", + "lab", + "sec", + "com", + "dev", + "sci", + "energy", + "comm" + ], + "description": "This column is about storing the short name or abbreviation of the public committees within the platform. It is likely used as a concise identifier for the committees." + }, + { + "input": "public committees description", + "examples": [ + "Responsible for reviewing and approving project budgets and financial allocation.", + "Focuses on marketing strategies and campaigns to promote the project.", + "Handles customer feedback and ensures improvements are implemented.", + "Oversees the technical aspects of the platform's development and maintenance.", + "Coordinates community engagement initiatives and events.", + "Ensures compliance with all legal and regulatory requirements.", + "Works on enhancing user experience and interface design.", + "Facilitates communication between different departments within the project.", + "Responsible for recruiting and selecting new project team members.", + "Evaluates and recommends technological solutions for project enhancement.", + "Manages partnerships and collaborations with external organizations.", + "Develops and implements training programs for project stakeholders.", + "Focuses on sustainability and eco-friendly practices within the project.", + "Coordinates crisis management and response procedures.", + "Monitors project progress and key performance indicators.", + "Focuses on diversity and inclusion initiatives within the project.", + "Handles conflict resolution among project team members.", + "Coordinates fundraising and sponsorship activities.", + "Ensures data privacy and security measures are in place.", + "Conducts regular reviews and updates of project policies and procedures." + ], + "description": "This column is about the description of the committees in the project. It likely includes information about the purpose, responsibilities, and roles of each committee within the platform." + }, + { + "input": "public committees description_en", + "examples": [ + "The Finance Committee oversees budget planning and financial management within the organization.", + "The Marketing Committee is responsible for developing and implementing marketing strategies to promote the organization.", + "The Technology Committee evaluates and recommends new technologies to improve operational efficiency.", + "The Diversity and Inclusion Committee focuses on creating an inclusive environment for all members of the organization.", + "The Sustainability Committee works towards implementing environmentally friendly practices across all operations.", + "The Events Committee plans and organizes various events to engage members and stakeholders.", + "The Health and Wellness Committee promotes well-being initiatives and resources for employees.", + "The Ethics Committee ensures compliance with ethical standards and guidelines within the organization.", + "The Education Committee aims to provide learning opportunities and resources for skill development.", + "The Safety Committee is dedicated to maintaining a safe work environment for all employees.", + "The Community Outreach Committee collaborates with external partners to support community initiatives.", + "The Quality Assurance Committee focuses on maintaining high standards of products and services.", + "The Innovation Committee explores new ideas and technologies to drive innovation within the organization.", + "The Employee Engagement Committee works on initiatives to enhance employee satisfaction and morale.", + "The Social Responsibility Committee advocates for corporate social responsibility practices.", + "The Research and Development Committee drives innovation through research and experimentation.", + "The Compliance Committee ensures adherence to legal and regulatory requirements.", + "The Human Resources Committee oversees HR policies, recruitment, and employee relations.", + "The Customer Experience Committee aims to enhance customer satisfaction and loyalty.", + "The Strategic Planning Committee develops long-term goals and plans for the organization." + ], + "description": "This column is about storing the English descriptions of the committees within the public context. It likely contains text describing the purpose, roles, or responsibilities of the committees in the system in English." + }, + { + "input": "public committees dark_image_url", + "examples": [ + "https://example.com/committees/dark/image1.jpg", + "https://example.com/committees/dark/image2.png", + "https://example.com/committees/dark/image3.jpeg", + "https://example.com/committees/dark/image4.gif", + "https://example.com/committees/dark/image5.png", + "https://example.com/committees/dark/image6.jpg", + "https://example.com/committees/dark/image7.jpeg", + "https://example.com/committees/dark/image8.png", + "https://example.com/committees/dark/image9.jpg", + "https://example.com/committees/dark/image10.jpeg", + "https://example.com/committees/dark/image11.png", + "https://example.com/committees/dark/image12.gif", + "https://example.com/committees/dark/image13.jpg", + "https://example.com/committees/dark/image14.png", + "https://example.com/committees/dark/image15.jpeg", + "https://example.com/committees/dark/image16.gif", + "https://example.com/committees/dark/image17.jpg", + "https://example.com/committees/dark/image18.jpeg", + "https://example.com/committees/dark/image19.png", + "https://example.com/committees/dark/image20.gif" + ], + "description": "This column contains the URL for the dark-themed image associated with the public committees in the platform. It may be used for displaying a visual representation of the committees in a dark theme in the user interface." + }, + { + "input": "public committees light_image_url", + "examples": [ + "https://example.com/public_committees/light_image_1.jpg", + "https://example.com/public_committees/light_image_2.png", + "https://example.com/public_committees/light_image_3.jpg", + "https://example.com/public_committees/light_image_4.png", + "https://example.com/public_committees/light_image_5.jpg", + "https://example.com/public_committees/light_image_6.png", + "https://example.com/public_committees/light_image_7.jpg", + "https://example.com/public_committees/light_image_8.png", + "https://example.com/public_committees/light_image_9.jpg", + "https://example.com/public_committees/light_image_10.png", + "https://example.com/public_committees/light_image_11.jpg", + "https://example.com/public_committees/light_image_12.png", + "https://example.com/public_committees/light_image_13.jpg", + "https://example.com/public_committees/light_image_14.png", + "https://example.com/public_committees/light_image_15.jpg", + "https://example.com/public_committees/light_image_16.png", + "https://example.com/public_committees/light_image_17.jpg", + "https://example.com/public_committees/light_image_18.png", + "https://example.com/public_committees/light_image_19.jpg", + "https://example.com/public_committees/light_image_20.png" + ], + "description": "This column contains the URL for the light image associated with public committees. Light images are typically images with a brighter color palette or higher contrast, used for displaying committee-related visuals in a visually appealing manner." + }, + { + "input": "public committees mono_image_url", + "examples": [ + "https://example.com/public-committees/logo1_monochrome.jpg", + "https://example.com/public-committees/icon2_bw.png", + "https://example.com/public-committees/committee3.png", + "https://example.com/public-committees/logo4_bw.jpg", + "https://example.com/public-committees/icon5_monochrome.png", + "https://example.com/public-committees/committee6_bw.jpg", + "https://example.com/public-committees/logo7_monochrome.png", + "https://example.com/public-committees/icon8_bw.jpg", + "https://example.com/public-committees/committee9_monochrome.jpg", + "https://example.com/public-committees/logo10_bw.png", + "https://example.com/public-committees/icon11_monochrome.jpg", + "https://example.com/public-committees/committee12.png", + "https://example.com/public-committees/logo13.png", + "https://example.com/public-committees/icon14_monochrome.jpg", + "https://example.com/public-committees/committee15_bw.png", + "https://example.com/public-committees/icon16_monochrome.png", + "https://example.com/public-committees/logo17_bw.jpg", + "https://example.com/public-committees/committee18_monochrome.png", + "https://example.com/public-committees/icon19.jpg", + "https://example.com/public-committees/logo20_monochrome.png" + ], + "description": "This column is about storing the URL for a monochromatic image related to public committees. This image may be used for displaying an icon, logo, or any other graphical representation associated with public committees within the project's platform." + }, + { + "input": "public committees symbol_url", + "examples": [ + "https://example.com/logo1.png", + "https://abc.org/committee_logo.jpg", + "https://www.xyzcommittee.org/logo.svg", + "https://logo.site123.com/committee123.png", + "https://committee456.net/logo.gif", + "https://logocommittee.info/logo.jpg", + "https://committee7.logo.com/logo.png", + "https://examplecommittee.io/logo.svg", + "https://images.committeesupport.org/logo1.jpg", + "https://cdn.committee_logo.com/logo.svg", + "https://committeeimage.net/logo123.png", + "https://www.testcommittee.org/logo.jpg", + "https://committee-design.com/logo.png", + "https://logo-committee.site/logo456.jpg", + "https://logo-committee.co.uk/logo.png", + "https://committee.org/logo789.svg", + "https://logo-design123.net/logo.png", + "https://designcommittee.example.com/logo.jpg", + "https://committeeimage.net/logo123.png", + "https://logo-committee.co.uk/logo.png" + ], + "description": "This column contains the URL pointing to the symbol or logo associated with the committee in the project. It is likely used to visually represent the committee in the user interface or other related materials." + }, + { + "input": "public consumable external_customer_email", + "examples": [ + "john.doe@example.com", + "sara.smith@gmail.com", + "mike1985@yahoo.com", + "jane_doyle@outlook.com", + "alex.parker@hotmail.com", + "lisa_1234@protonmail.com", + "roberta_garcia@example.com", + "mark_anderson@gmail.com", + "emily_89@yahoo.com", + "adam.jones@outlook.com", + "sophia.brown@hotmail.com", + "chris.miller@icloud.com", + "nicole2233@gmail.com", + "peter_morris@yahoo.com", + "michelle_76@outlook.com", + "samantha.smith@hotmail.com", + "ryan_roberts@example.com", + "amanda.jenkins@gmail.com", + "kevin_1980@yahoo.com", + "julie.wilson@outlook.com" + ], + "description": "This column is about storing the email address of external customers who interact with the platform. It is used to uniquely identify and communicate with external customers." + }, + { + "input": "public consumable external_customer_code", + "examples": [ + "EXT1234", + "CUST5678", + "ACME9876", + "ECLIPSE345", + "CUSTOMER1", + "EVENTX23", + "MEMBER99", + "ORDR555", + "EXP6789", + "INTERACT123", + "XUSER777", + "BOOKING432", + "NOTIFY22", + "PRODUCTXYZ", + "CUSTABC", + "ORDER1234", + "INTERACT567", + "BOOK575", + "MEMBERABC", + "EXPEXP" + ], + "description": "This column contains the unique code assigned to an external customer who interacts with the platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions. It is used to identify the external customer within the system." + }, + { + "input": "public consumable stripe_intent_id", + "examples": [ + "in_1Hi7I844cMzD9Nc7u56F5b2", + "in_1Hf9OP44cMzD9Nc7yxUVQMof", + "in_1HfLIP44cMzD9Nc7Gv0KzJPR", + "in_1HzJgp44cMzD9Nc7hN7Shr7T", + "in_1GvHsF44cMzD9Nc74MedaPe0", + "in_1IwQP344cMzD9Nc7OZTymv4d", + "in_1HItz444cMzD9Nc7lK1vAFeP", + "in_1GvRvt44cMzD9Nc7zTnKXCbc", + "in_1GIi4o44cMzD9Nc73jolVk5G", + "in_1Hx2YQ44cMzD9Nc7iQpC7RWX", + "in_1GVYC544cMzD9Nc7EPUvvlPN", + "in_1HvL8m44cMzD9Nc7D3R66UhC", + "in_1HvT0C44cMzD9Nc7L3cBdIw0", + "in_1HzFOL44cMzD9Nc7hLtPvDaP", + "in_1Gv5No44cMzD9Nc7Q6w7UBC6", + "in_1HxaSY44cMzD9Nc7l4wzRq1", + "in_1GzVcY44cMzD9Nc7bL56CuxB", + "in_1Hfr7Z44cMzD9Nc7zZcGhC1a", + "in_1GEM4l44cMzD9Nc7h8yzRAUL", + "in_1HkAaX44cMzD9Nc7ufFhXng8" + ], + "description": "This column stores the unique identifier (ID) of the Stripe intent associated with a consumable item in the platform. This could be used for tracking payments, subscriptions, or other financial transactions related to the consumable products or services offered on the platform." + }, + { + "input": "public consumable_reservation external_customer_email", + "examples": [ + "john.doe@example.com", + "jane.smith@gmail.com", + "mike123@yahoo.com", + "emily_34@hotmail.com", + "maxwell-007@outlook.com", + "lisa_franklin@icloud.com", + "sam.brown@protonmail.com", + "maryandjoe@aol.com", + "support@business.com", + "sales.department@company.org", + "peter.watson@example.org", + "christine22@domain.net", + "george.baker@team.org", + "laura_james@startup.io", + "jessica_miller@enterprise.com", + "tomandjerry@gmail.com", + "alex_nash@techfirm.net", + "grace_williams@example.net", + "charlie&lucy@consultancy.com", + "receptionist@hotel.com" + ], + "description": "This column holds the email of external customers who have made a reservation for consumable items within the platform. It is used to identify and communicate with customers regarding their reservations." + }, + { + "input": "public consumable_reservation external_customer_code", + "examples": [ + "CUST1234", + "ACME456", + "EVENT789", + "XPTO001", + "BOOKS5678", + "MEMB910", + "NOTIF23", + "ORDR456", + "PROD789", + "EXP123", + "USER879", + "XYZ101", + "ABCDEF", + "RESV555", + "INDIGO777", + "APPLE321", + "ARTICLE124", + "ZARA789", + "GUEST098", + "SPORTS876" + ], + "description": "This column contains the external customer codes related to consumable reservations. It is used to uniquely identify each external customer who has reserved a consumable item. This information is likely used for tracking and managing consumable reservations within the platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions." + }, + { + "input": "public custom_author_roles role", + "examples": [ + "Event Manager", + "Article Editor", + "Booking Administrator", + "Membership Coordinator", + "Notification Specialist", + "Order Processor", + "Product Manager", + "Expense Approver", + "User Interaction Supervisor", + "Senior Event Coordinator", + "Lead Article Writer", + "Booking Analyst", + "Membership Administrator", + "Notification Manager", + "Senior Order Processor", + "Product Catalog Specialist", + "Expense Controller", + "User Interaction Analyst", + "Event Operations Manager", + "Chief Editor" + ], + "description": "This column is about storing the roles assigned to custom authors in the platform. It specifies the level of access, permissions, or responsibilities assigned to individual authors in managing events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions within the platform." + }, + { + "input": "public custom_authors name", + "examples": [ + "John Doe", + "Alice Smith", + "Emma Johnson", + "Mohammed Ali", + "Sophie Brown", + "Liam Patel", + "Isabella Nguyen", + "Oliver Khan", + "Ava Gupta", + "William Lee", + "Ella Park", + "James Chen", + "Mia Desai", + "Noah Singh", + "Charlotte Kim", + "Benjamin Shah", + "Emily Patel", + "Jacob Wong", + "Harper Kaur", + "Michael Choudhury" + ], + "description": "This column is about storing the name of custom authors in the platform's database. These authors may be users who write content, organize events, or contribute to the platform in various ways." + }, + { + "input": "public custom_authors name_en", + "examples": [ + "John Smith", + "Emily Brown", + "Michael Chang", + "Anna Patel", + "David Johnson", + "Sara Nguyen", + "Chris Wilson", + "Jessica Lee", + "Alexandra Garcia", + "James Robinson", + "Olivia Thomas", + "Daniel Martinez", + "Sophie White", + "Brandon Lewis", + "Rachel Kim", + "Kevin Mitchell", + "Grace Murphy", + "Erica Yang", + "Samuel Carter", + "Lily Baker" + ], + "description": "This column is about storing the English names of custom authors who contribute content to the platform such as events, articles, bookings, etc." + }, + { + "input": "public custom_authors image_url", + "examples": [ + "https://www.example.com/images/author123.jpg", + "https://www.example.com/images/author456.png", + "https://www.example.com/images/author789.jpeg", + "https://www.example.com/images/profile_pic.jpg", + "https://www.example.com/images/avatar.png", + "https://www.example.com/images/custom_author1.jpg", + "https://www.example.com/images/custom_author2.png", + "https://www.example.com/images/custom_author3.jpeg", + "https://www.example.com/images/user_profile.jpg", + "https://www.example.com/images/picture.png", + "https://www.example.com/images/author_x.jpg", + "https://www.example.com/images/author_y.png", + "https://www.example.com/images/author_z.jpeg", + "https://www.example.com/images/custom_image1.jpg", + "https://www.example.com/images/custom_image2.png", + "https://www.example.com/images/custom_image3.jpeg", + "https://www.example.com/images/author_profile.jpg", + "https://www.example.com/images/avatar_image.png", + "https://www.example.com/images/author_pic.jpg", + "https://www.example.com/images/author_photo.png" + ], + "description": "This column is storing the URL of the image associated with custom authors in the platform. It might be used to display the author's profile picture or any image related to the custom author in the system." + }, + { + "input": "public documents title", + "examples": [ + "Annual Report 2021", + "Membership Benefits Guide", + "Summer Sale Catalog", + "How to Plan a Successful Event", + "Expenses Report Q3 2021", + "Top 10 Products of the Month", + "Order Confirmation #12345", + "Featured Articles of the Week", + "Guide to Effective Marketing Strategies", + "Vendor Agreement Terms & Conditions", + "Product Launch Event Program", + "Renewal of Premium Membership", + "Holiday Specials Collection", + "Promotional Discounts for Members", + "Keynote Speaker Announcement", + "Managing Finances for Small Businesses", + "Customer Satisfaction Survey Results", + "New Arrivals in the Store", + "Event Registration Guidelines", + "Exclusive Member Rewards Program" + ], + "description": "This column is about storing the titles of public documents related to the platform such as events, articles, memberships, orders, products, and expenses." + }, + { + "input": "public documents url", + "examples": [ + "https://www.example.com/event-details", + "https://blog.example.com/article123", + "https://www.example.com/notification-987", + "https://www.publicdocsplatform.com/user-interaction1", + "https://events.example.com/seminar-registration", + "https://www.example.com/blog/news/latest", + "https://www.publicdocsplatform.com/policy-updates", + "https://news.example.com/public-documents/archive", + "https://www.example.com/user-guide", + "https://events.example.com/workshop1-registration", + "https://www.example.com/faq-page", + "https://blog.example.com/tips-and-tricks", + "https://www.publicdocsplatform.com/newsletter-archive", + "https://news.example.com/public-documents/category1", + "https://www.example.com/video-tutorial1", + "https://events.example.com/conference2021", + "https://blog.example.com/research-findings", + "https://www.publicdocsplatform.com/privacy-policy", + "https://news.example.com/public-documents/case-studies", + "https://www.example.com/forum-discussion" + ], + "description": "This column is about storing the URLs for public documents related to the platform, such as event details, articles, notifications, and user interactions." + }, + { + "input": "public door_access_policies role", + "examples": [ + "Admin", + "Editor", + "Staff", + "Security", + "Speaker", + "VIP", + "Maintenance", + "Vendor", + "Volunteer", + "Guest", + "Manager", + "Team Lead", + "Cleaner", + "Caterer", + "Entertainer", + "Photographer", + "Technician", + "Concierge", + "Exhibitor", + "Visitor" + ], + "description": "This column is about storing the role associated with a specific door access policy in the context of managing a platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions with features like tagging, comments, and notifications." + }, + { + "input": "public door_access_policies information", + "examples": [ + "Access level 1 users can enter through all doors except the main entrance after 10 pm.", + "Employees with seniority level 3 are granted access to the executive floor through biometric authentication only.", + "Visitors are only allowed access to the lobby and reception area, escorted by a staff member at all times.", + "Keycard access to the server room is restricted to the IT department and authorized senior management.", + "Contractors have temporary access to designated doors during working hours, subject to security escort.", + "Special access permissions are granted to emergency response teams for unrestricted access during emergencies.", + "Access to specific meeting rooms is regulated based on reservation schedules and staff roles.", + "Certain doors automatically lock during non-operational hours and require security override for entry.", + "Access to sensitive areas requires dual authentication through a keycard and PIN code.", + "Access to the facility is prohibited for individuals with expired access badges.", + "Maintenance staff are provided with master keys for emergency access to all doors in the building.", + "Access to the storage room is only granted to inventory management personnel during specified inventory periods.", + "Access to the rooftop terrace is restricted to employees with rooftop access authorization.", + "Managers have the authority to grant temporary access privileges to team members for specific doors.", + "Access permissions are adjusted based on employee work schedules to ensure limited access during off-duty hours.", + "Access to secure zones is monitored through CCTV cameras, with real-time alerts for unauthorized access attempts.", + "Guests attending events in the cafeteria are provided with temporary access cards for the duration of the event.", + "Certain doors are equipped with facial recognition technology for seamless employee entry.", + "Access control policies are periodically reviewed and updated in compliance with security protocols.", + "Staff training includes sessions on proper door access procedures and badge usage to prevent security breaches." + ], + "description": "This column is about the information related to door access policies for the platform. It may include details such as access levels, restrictions, permissions, and rules regarding entry and exit through doors within the platform." + }, + { + "input": "public doors name", + "examples": [ + "Main Entrance", + "Conference Room A Door", + "Library Exit", + "Lobby Door 1", + "Auditorium Entrance", + "Restroom Door 2", + "Gymnasium Exit", + "Cafeteria Entrance", + "Office Front Door", + "Parking Lot Gate", + "Emergency Exit 1", + "Reception Area Door", + "Classroom Door 101", + "Swimming Pool Access", + "Staircase Door", + "Outdoor Patio Gate", + "Meeting Room Door", + "Theater Backstage Door", + "VIP Lounge Entrance", + "Training Room Exit" + ], + "description": "This column is about storing the name of the doors that are related to public spaces within the platform. It is likely used to identify specific doors for events, bookings, or other interactions within the system." + }, + { + "input": "public doors id", + "examples": [ + "PUB_DOOR_001", + "PUB_DOOR_002", + "MAIN_ENTRANCE", + "SIDE_DOOR_1", + "LIBRARY_DOOR", + "RECEPTION_ENTRANCE", + "EMERGENCY_EXIT_1", + "EXIT_DOOR_A", + "STAFF_ENTRANCE", + "PUB_DOOR_003", + "MEETING_ROOM_1", + "CONFERENCE_HALL_ENTRANCE", + "FIRE_EXIT_2", + "PUBLIC_RESTROOM_ENTRANCE", + "MAIN_GATE", + "ELEVATOR_ENTRANCE", + "STOREFRONT_DOOR", + "GALLERY_ENTRANCE", + "COURTYARD_GATE", + "PUBLIC_PARKING_ENTRANCE" + ], + "description": "This column is about storing the unique identifier for public doors in the platform." + }, + { + "input": "public doors verbose_name", + "examples": [ + "Main Entrance Doors", + "Garage Doors", + "Bedroom Doors", + "Office Doors", + "Emergency Exit Doors", + "Revolving Doors", + "Sliding Glass Doors", + "Fire Rated Doors", + "French Doors", + "Patio Doors", + "Bifold Doors", + "Soundproof Doors", + "Access Control Doors", + "Reinforced Doors", + "Interior Doors", + "Exterior Doors", + "Steel Doors", + "Wooden Doors", + "Automatic Doors", + "Folding Doors" + ], + "description": "This column is about providing a descriptive name for the 'doors' attribute in the 'public' section of the project. It likely serves to explain or label the purpose or function of the 'doors' attribute within the context of the platform." + }, + { + "input": "public elections markdown", + "examples": [ + "## Welcome to the Annual General Elections!\n\n### Important Dates:\n- Nomination Period: September 1st - September 15th\n- Voting Period: September 20th - September 30th\n\nLet's make this year's elections a huge success! :ballot_box_with_check:", + "### Candidate Profiles\nBelow are the profiles of the candidates running for the position of President:\n1. Jane Doe\n2. John Smith\n3. Samantha Lee\n\nCast your vote wisely! :ballot_box:", + "## Election Results\nThe votes have been tallied, and we are pleased to announce the winners of this year's elections!\n- President: Jane Doe\n- Vice President: John Smith\n\nCongratulations to the winners! :tada:", + "### Reminder: Voting is Now Open!\nDon't forget to cast your vote in this year's elections. Every vote counts! :ballot_box:", + "## Join the Election Committee\nWe are looking for dedicated individuals to join the Election Committee. If you are interested, please reach out to the admin team!", + "### Election Guidelines\nBefore you cast your vote, make sure to review the election guidelines to ensure a fair and transparent voting process.", + "## Calling for Nominations!\nDo you know someone who would be a great candidate for the upcoming elections? Nominate them today!", + "### Election Q&A\nGot questions about the election process? Check out our FAQ section or reach out to the election committee for assistance.", + "## Candidate Debate Night\nJoin us for a lively debate night where the candidates will discuss their platforms and answer questions from the voters.", + "### Get Out the Vote Campaign\nHelp us spread the word about the elections and encourage everyone to participate in the voting process. Together, we can make a difference!", + "## Election Day is Here!\nToday is the day to make your voice heard. Head to the polling stations and cast your vote for the candidates of your choice!", + "### Election Security Measures\nRest assured that we have implemented strict security measures to protect the integrity of the election process. Your vote is safe with us!", + "## Thank You for Voting!\nA big thank you to everyone who participated in this year's elections. Your engagement and support make our community stronger!", + "### Election Results Announcement\nStay tuned for the official announcement of the election results. Who will emerge victorious? Find out soon!", + "## Candidate Interviews\nGet to know the candidates better through exclusive interviews where they discuss their visions and plans for the future.", + "### Let Your Voice Be Heard\nYour vote is your voice in the decision-making process. Exercise your right to vote and shape the future of our community!", + "## Volunteer for Election Day\nWe are looking for volunteers to assist with various tasks on election day. Sign up now and be a part of this important event!", + "### Election Transparency\nWe are committed to transparency in the election process. All results will be publicly announced to ensure accountability and fairness.", + "## Final Reminder: Polls Close Soon!\nHurry up and cast your vote before the polls close. Every vote matters in shaping the leadership of our community!", + "### Annual Election Report\nFollowing the elections, a detailed report will be published summarizing the results and the overall conduct of the electoral process." + ], + "description": "This column is about storing markdown content related to elections in the platform, such as descriptions, announcements, or other textual information formatted using Markdown syntax." + }, + { + "input": "public elections markdown_en", + "examples": [ + "## Upcoming Local Elections\n### Date: August 15, 2022\n#### Candidate Information\n- John Smith: Current Mayor\n- Jane Doe: City Council Member\n#### Voting Procedures\n- Polling stations open 8am-8pm\n- Absentee ballots available upon request\n---", + "## Student Council Elections 2022\n### Cast Your Vote Today!\n#### Meet the Candidates\n- Sarah Johnson: Running for President\n- Alex Chen: Running for Vice President\n#### How to Vote\n- Log in to your student portal\n- Select 'Elections' tab\n---", + "## National Elections Update\n### Election Day: November 4, 2022\n#### Presidential Nominees\n- Emily Adams: Democratic Party\n- Michael Lee: Republican Party\n#### Voting Information\n- Early voting starts October 20\n- Check your voter registration status\n---", + "## State Senate Elections\n### Make Your Voice Heard!\n#### Candidate Profiles\n- Maria Rodriguez: Education Advocate\n- Sam Wilson: Small Business Owner\n#### Voting Reminders\n- Bring valid ID to polling stations\n- Voting hours 7am-7pm\n---", + "## City Mayor Elections\n### Your Vote Matters!\n#### Meet the Candidates\n- Thomas Brown: Former City Council Member\n- Jessica White: Community Activist\n#### Important Dates\n- Candidate Debates: September 25\n- Election Day: October 10\n---", + "## Youth Council Elections\n### Nominate a Leader Today!\n#### Youth Candidates\n- Jason Liu: Environmentalist\n- Maya Patel: Youth Advocate\n#### Voting Process\n- Registered youth can vote online\n- Results announced on June 30\n---", + "## Regional Elections Notice\n### Stay Informed & Engaged\n#### Candidate Platforms\n- Sarah Thompson: Healthcare Reform\n- David Nguyen: Economic Development\n#### Voter Participation\n- Encourage friends and family to vote\n- Volunteer as a poll worker\n---", + "## Congressional Elections Update\n### November 8, 2022\n#### Key Races\n- District 12: Incumbent vs. Newcomer\n- District 17: Tight Race Predicted\n#### Voting FAQs\n- Provisional ballot info\n- Polling place locator\n---", + "## Board of Trustees Elections\n### Support Your Community!\n#### Board Candidates\n- Rachel Baker: Business Owner\n- Eric Johnson: Retired Educator\n#### Voting Details\n- Mail-in ballot instructions\n- In-person voting centers\n---", + "## Special Elections Announcement\n### Fill the Vacant Seat\n#### Special Election Candidates\n- Robert Davis: Former Mayor\n- Angela Campbell: Local Activist\n#### Vote Today\n- Contact election office for absentee ballot\n- Special election day: September 20\n---", + "## Municipal Elections Update\n### Get Involved!\n#### Municipal Candidates\n- Mark Wilson: Public Safety Advocate\n- Sophia Martinez: Urban Planner\n#### Early Voting\n- Dates for early in-person voting\n- Secure drop-box locations\n---", + "## Senate Elections 2022\n### Your Vote, Your Future\n#### Senate Candidates\n- Julia Adams: Environmental Champion\n- Max Roberts: Business Leader\n#### Voting Resources\n- Voter guide link\n- Candidate forum schedule\n---", + "## School Board Elections\n### Shape Education Policy\n#### School Board Candidates\n- Lisa Thompson: Parent Advocate\n- David Garcia: Education Specialist\n#### Ballot Information\n- Sample ballot preview\n- Voting eligibility criteria\n---", + "## City Council Elections Update\n### Engage with Your Community\n#### Council Candidates\n- Sarah Brown: Local Business Owner\n- Alex Kim: Community Organizer\n#### Election Day Reminders\n- Voter registration deadline\n- Early voting options\n---", + "## State Assembly Elections\n### Know Your Candidates\n#### Assembly Profiles\n- Emily Wilson: Healthcare Champion\n- David Lee: Technology Innovator\n#### Voter Assistance\n- Language assistance available\n- Disability accommodations\n---", + "## Tribal Council Elections\n### Preserving Tradition & Values\n#### Tribal Candidates\n- John Yellowhawk: Tribal Elder\n- Mia Littlefox: Youth Representative\n#### Voting Information\n- Tribal member verification required\n- Absentee ballot request process\n---", + "## Health Board Elections\n### Prioritizing Community Health\n#### Health Board Candidates\n- Dr. Michael Chen: Public Health Expert\n- Maria Garcia: Healthcare Advocate\n#### Voter Engagement\n- Attend candidate forums\n- Submit questions for candidates\n---", + "## Governor Elections Update\n### State Governance Matters\n#### Governor Nominees\n- Daniel Thompson: Incumbent\n- Emma Roberts: State Senator\n#### Election Day Logistics\n- Polling locations and hours\n- Voter ID requirements\n---", + "## County Elections Notice\n### Countywide Representation\n#### County Candidates\n- Alex Hernandez: Agricultural Leader\n- Sophia Nguyen: Environmental Activist\n#### Stay Informed\n- Candidate town hall schedule\n- Voter registration deadline\n---", + "## Presidential Elections 2024\n### Looking Ahead\n#### Preview of Presidential Nominees\n- John Smith: Independent\n- Emily White: Progressive\n#### Voting Prep\n- Voter registration deadlines\n- Debate schedule announcement\n---" + ], + "description": "This column contains markdown content in English for elections on the platform. It may include information such as election details, candidates, voting procedures, and any other relevant information presented in a markdown format for display on the platform." + }, + { + "input": "public elections link", + "examples": [ + "https://www.electionportal.com/vote-now", + "https://electionresults2022.gov/stateX", + "https://www.candidateprofiles.org/candidate123", + "https://electionboard.gov/election-details", + "https://votenow.org/election2023", + "https://www.electionstats2022.org", + "https://electionnews.com/latest-updates", + "https://votingcenter.org/election-info", + "https://electionresults2022.gov/stateY", + "https://www.candidateprofiles.org/candidate456", + "https://electionboard.gov/election-results", + "https://votenow.org/election2024", + "https://www.electionstats2023.org", + "https://electionnews.com/candidate-interviews", + "https://votingcenter.org/polling-locations", + "https://electionresults2022.gov/stateZ", + "https://www.candidateprofiles.org/candidate789", + "https://electionboard.gov/voter-info", + "https://votenow.org/election2025", + "https://www.electionstats2024.org" + ], + "description": "This column contains the link associated with the elections in the platform. It may store URLs or references to external resources related to elections, such as voting pages, election results, candidate profiles, or any other election-related content." + }, + { + "input": "public email_aliases email", + "examples": [ + "john.doe@example.com", + "jdoe@examplemail.com", + "johndoe@workplace.com", + "doej@example.org", + "johndoe123@hotmail.com", + "johndoe_alt@gmail.com", + "johndoe_cool@outlook.com", + "jdoe+test@yahoo.com", + "john.doe123@company.com", + "doej@example.net", + "johndoe_alt2@school.edu", + "jdoe123@personal.com", + "john.doe_alt@college.edu", + "johndoe_work@company.com", + "jdoe_new@workplace.com", + "john.doe2@service.org", + "johndoe_home@home.com", + "johnny.doe@example.com", + "doej_new@gmail.com", + "johndoe.alias@workplace.com" + ], + "description": "This column is related to storing email aliases for a user in the public schema of the database. It may be used to associate additional email addresses with a user's account for communication or identification purposes." + }, + { + "input": "public event_comments content", + "examples": [ + "I really enjoyed the live music at the concert last night! Can't wait for the next one.", + "Does anyone know if there will be food trucks at the festival this weekend?", + "The workshop on digital marketing strategies was so informative. Thank you to the organizers!", + "I had such a great time at the charity run. It was for a good cause and the atmosphere was fantastic.", + "Could someone please share the schedule for the panel discussions at the conference?", + "The art exhibition was truly inspiring. So much talent showcased!", + "I had a question about the ticket prices for the play. Can someone clarify?", + "The outdoor yoga class was a rejuvenating experience. Highly recommend!", + "It was so cool meeting new people at the networking event. Looking forward to the next one.", + "The film screening left me speechless. Such a powerful story.", + "Great job to the performers at the dance showcase. They were amazing!", + "I hope there will be more workshops like the one on sustainable living in the future.", + "The guided tour of the museum was incredibly interesting. Learned a lot of new things.", + "The comedy show had me in stitches from laughing so much. What a fun night!", + "The book club meeting was insightful. Can't wait to discuss the next book.", + "The sports event was intense! Can't believe how close the game was.", + "The cooking class was a success. Can't wait to try out the recipes at home.", + "The fashion show was a visual treat. So many creative designs on display.", + "The tech conference was mind-blowing. So many innovations to explore!", + "The poetry reading was beautiful and moving. Such a lovely way to spend the evening." + ], + "description": "This column is about the content of comments related to events within the platform. Users can leave comments about events, share their thoughts, feedback, or ask questions related to specific events." + }, + { + "input": "public events title", + "examples": [ + "Summer Music Festival 2022", + "Yoga in the Park", + "Art Exhibition: Colors of Life", + "Local Farmer's Market", + "Charity Gala Night", + "Tech Talk: Future of AI", + "Cooking Class: Italian Cuisine", + "Movie Night Under the Stars", + "Community Cleanup Day", + "Fashion Show: Spring Collection", + "Book Club Meeting: Bestsellers Edition", + "Photography Workshop: Capturing Nature", + "Dance Performance: Rhythms of the World", + "Fitness Bootcamp in the Park", + "Science Fair for Kids", + "Health and Wellness Seminar", + "Sustainability Panel Discussion", + "Outdoor Adventure Day: Hiking Trails", + "Cultural Diversity Celebration", + "DIY Workshop: Home Renovation Ideas" + ], + "description": "This column is about storing the title of events in the public section of the platform." + }, + { + "input": "public events title_en", + "examples": [ + "Summer Music Festival", + "Art Exhibition Opening Night", + "Local Farmer's Market", + "Yoga Retreat in the Mountains", + "Tech Industry Conference 2022", + "Food Truck Festival", + "Children's Storytelling Workshop", + "Virtual Reality Gaming Expo", + "Wine Tasting Event", + "Charity Fundraiser Gala", + "Outdoor Movie Night", + "Fashion Show Charity Event", + "Dog Adoption Fair", + "Culinary Workshop Series", + "Live Stand-up Comedy Show", + "Environmental Conservation Summit", + "Holiday Craft Fair", + "DIY Home Renovation Workshop", + "Salsa Dancing Party", + "Poetry Slam Night" + ], + "description": "This column is a text field that stores the English title of events in the public section of the platform." + }, + { + "input": "public events description", + "examples": [ + "Join us for a day of technology innovation and networking at the Tech Conference 2022!", + "Learn the latest trends in marketing from industry experts at the Marketing Summit.", + "Virtual workshop on AI and Machine Learning for beginners - don't miss out on this opportunity!", + "Exciting panel discussion on sustainability and the future of our planet", + "Book club meetup to discuss the latest bestseller", + "Music festival featuring top artists from around the world", + "Interactive workshop on building effective leadership skills", + "Join us for a charity fundraising gala to support local communities in need", + "Yoga retreat in the mountains for a weekend of relaxation and wellness", + "Entrepreneurship bootcamp for aspiring business owners", + "Film screening of award-winning documentary followed by a Q&A with the director", + "Cooking class with a renowned chef to master the art of French cuisine", + "Fitness challenge event for all fitness levels - get ready to sweat!", + "Art exhibition showcasing local talent and creativity", + "Workshop series on mental health awareness and self-care practices", + "Panel discussion on diversity and inclusion in the workplace", + "Outdoor adventure retreat for thrill-seekers and nature enthusiasts", + "Fashion show featuring emerging designers and sustainable fashion", + "Educational seminar on personal finance and investment strategies", + "Community cleanup day to make our neighborhood a better place" + ], + "description": "This column is about storing the description of events in the platform. It may include details such as the event's purpose, activities, speakers, schedule, and any other relevant information for users." + }, + { + "input": "public events description_en", + "examples": [ + "Join us for a fun-filled evening of live music and dancing!", + "Discover the latest trends at our exclusive fashion show.", + "Learn from industry experts at our technology conference.", + "Experience the magic of our annual holiday extravaganza.", + "Unleash your creativity at our interactive art workshop.", + "Celebrate cultural diversity at our international food festival.", + "Get inspired at our motivational speaker series.", + "Network with professionals at our business networking event.", + "Explore local history on our guided walking tour.", + "Join us for a special screening of a critically acclaimed film.", + "Learn new skills at our hands-on cooking class.", + "Join our community cleanup event and make a difference.", + "Immerse yourself in the world of literature at our book club meeting.", + "Dance the night away at our themed masquerade ball.", + "Discover hidden gems at our antique and vintage fair.", + "Enjoy a family-friendly day out at our outdoor carnival.", + "Learn about sustainable living practices at our eco-friendly expo.", + "Support local artists at our artisan market.", + "Meet adoptable pets at our animal shelter adoption event.", + "Celebrate the season at our festive holiday market." + ], + "description": "This column is for storing the English description of events in the platform." + }, + { + "input": "public events link", + "examples": [ + "https://www.example.com/events/event1", + "https://www.domain.com/upcoming-event", + "https://eventplatform.org/event12345", + "https://events.companyx.com/festival2022", + "https://eventsite.net/summer-bash", + "https://www.eventsandmore.org/concert-series", + "https://eventworld.com/cultural-fair", + "https://communityevents.info/street-festival", + "https://eventexpo.net/sportingevent2023", + "https://www.festivities2022.com/workshop", + "https://www.eventsgalore.co.uk/charity-gala", + "https://upcomingevents.org/fashion-show", + "https://www.communityfestivities.com/music-festival", + "https://celebrateevent.com/annual-parade", + "https://eventplannersplatform.org/ted-talk", + "https://www.eventcentral.com/tech-conference", + "https://www.culturalevents.net/art-exhibit", + "https://www.globaleventsexpo.com/tradeshow", + "https://eventhub.co.uk/food-festival", + "https://www.eventworldwide.org/launch-party" + ], + "description": "This column contains the URL/link associated with the event in the public events section of the platform. This link may lead to more details about the event or redirect users to the event's dedicated page." + }, + { + "input": "public events location", + "examples": [ + "New York City, USA", + "Online webinar", + "London, England", + "Tokyo, Japan", + "Sydney Opera House, Australia", + "Virtual event via Zoom", + "Paris Fashion Week", + "Los Angeles Convention Center, USA", + "Berlin Tech Conference", + "Dubai Expo 2021", + "Machu Picchu, Peru", + "Virtual reality trade show", + "Milan Fashion Week", + "Cape Town, South Africa", + "San Francisco, USA", + "Art gallery opening in Barcelona, Spain", + "Rio de Janeiro Carnival, Brazil", + "Toronto, Canada", + "Singapore technology summit", + "Mount Everest Base Camp, Nepal" + ], + "description": "This column is about the location of events in the platform. It likely contains the physical or virtual location where the event will take place." + }, + { + "input": "public events organizer", + "examples": [ + "Creative Events LLC", + "Global Conferences Inc.", + "Community Events Committee", + "Tech Innovations Group", + "ABC Corporation Events", + "Diverse Communities Foundation", + "City Parks and Rec Department", + "Sunshine Event Planners", + "World Health Organization", + "Local Artisans Guild", + "Educational Institutions Consortium", + "Sports Enthusiasts Club", + "Environmental Awareness Society", + "Musical Talent Agency", + "Women Empowerment Network", + "Food Industry Federation", + "Annual Charity Gala Committee", + "Adventure Seekers Club", + "Fashion Industry Alliance", + "Youth Leadership Council" + ], + "description": "This column is about storing the organizer of the event in the public events section of the platform." + }, + { + "input": "public events short_description", + "examples": [ + "Join us for a night of live music and entertainment!", + "Learn new cooking techniques at our culinary workshop.", + "Explore the world of modern art at our gallery exhibition.", + "Discover the latest trends in fashion at our runway show.", + "Join a group meditation session for inner peace and relaxation.", + "Attend our business networking event for valuable connections.", + "Celebrate cultural diversity at our international food festival.", + "Join us for a charity fundraiser to support a good cause.", + "Experience the thrill of our adventure sports event.", + "Participate in our photography contest and showcase your skills.", + "Join a panel discussion on sustainability and environmental issues.", + "Learn about mindfulness and self-care at our wellness retreat.", + "Attend a poetry reading session with renowned poets.", + "Join a dance workshop and learn new moves.", + "Experience the magic of our outdoor music festival.", + "Explore the wonders of astronomy at our stargazing event.", + "Join us for a film screening of award-winning documentaries.", + "Learn about local history on our guided heritage walk.", + "Celebrate the spirit of entrepreneurship at our startup pitch event.", + "Join a DIY craft workshop and unleash your creativity." + ], + "description": "This column contains a short description of the events in the platform. It is likely a brief summary or teaser of the event to provide a quick overview to users." + }, + { + "input": "public events short_description_en", + "examples": [ + "Join us for a night of music and dance!", + "Discover the secrets of Italian cuisine in our cooking class.", + "Learn to improve your photography skills with our workshop.", + "Yoga session to start your day with positive energy.", + "Explore the wonders of marine life in our virtual aquarium tour.", + "Join our book club for engaging discussions and book recommendations.", + "Get ready to laugh at our stand-up comedy show.", + "Workshop on sustainable gardening practices for beginners.", + "Join us for a virtual tour of ancient civilizations.", + "Learn the art of meditation for a peaceful mind and soul.", + "Cooking competition with a twist - surprise ingredients only!", + "Join our online fitness challenge and stay active from home.", + "Discover the history of art in a guided museum tour.", + "Improve your communication skills with our public speaking workshop.", + "Join us for a community cleanup event in the local park.", + "Dive into the world of astronomy with our stargazing event.", + "Learn the basics of coding in a fun and interactive workshop.", + "Join our mindfulness retreat for a weekend of relaxation.", + "Get creative with our DIY craft session for all ages.", + "Join our nature hike for a breath of fresh air and scenic views." + ], + "description": "This column contains a short description in English for an event in the platform. It is a brief summary of the event that can be used to provide a quick overview for users." + }, + { + "input": "public events slug", + "examples": [ + "summer-music-festival-2022", + "art-exhibit-opening-night", + "yoga-in-the-park", + "virtual-cooking-class", + "charity-run-for-hunger-relief", + "wine-tasting-under-the-stars", + "family-picnic-and-games", + "outdoor-movie-night", + "coding-workshop-for-beginners", + "book-club-meeting-mystery-novels", + "salsa-dance-competition-finals", + "community-gardening-day", + "puppy-adoption-event", + "local-farmers-market", + "diy-home-improvement-seminar", + "beach-clean-up-day", + "history-walking-tour-downtown", + "painting-workshop-sunset-scenery", + "music-concert-in-the-park", + "fitness-bootcamp-challenge" + ], + "description": "This column contains unique identifiers (slugs) for events within the public section of the platform. Slugs are typically used in URLs to represent the title of the event in a more user-friendly format." + }, + { + "input": "public events image_url", + "examples": [ + "https://www.example.com/event1.jpg", + "images/event2.png", + "/public/events/event3.jpeg", + "https://www.example.com/posters/event4.jpg", + "http://cdn.example.net/flyers/event5.png", + "/images/event6.jpg", + "https://www.sample.net/public/events/event7.png", + "/promo_images/event8.jpeg", + "https://cdn.images.org/events/event9.jpg", + "flyers/event10.png", + "/public/events/event11.jpg", + "http://www.example.com/images/posters/event12.jpeg", + "event13.jpg", + "https://promo.example.net/event14.png", + "/event15.jpg", + "https://cdn.example.com/public/events/event16.jpeg", + "images/event17.jpg", + "/posters/event18.png", + "https://www.imagestore.net/events/event19.jpg", + "flyers/event20.jpeg" + ], + "description": "This column 'public.events.imageUrl' contains the URL or file path of the image associated with the event in the public events section of the platform. This could be used to display an image related to the event, such as a poster, flyer, or promotional image." + }, + { + "input": "public expense_items cost_center", + "examples": [ + "CC-101", + "CC-202", + "CC-305", + "CC-410", + "CC-515", + "CC-622", + "CC-730", + "CC-845", + "CC-912", + "CC-1020", + "CC-1130", + "CC-1245", + "CC-1334", + "CC-1450", + "CC-1501", + "CC-1682", + "CC-1765", + "CC-1843", + "CC-1900", + "CC-2010" + ], + "description": "This column contains the cost center associated with each expense item. The cost center is used to track and categorize expenses within the platform for events, articles, bookings, memberships, notifications, orders, products, and user interactions." + }, + { + "input": "public expense_items comment", + "examples": [ + "Dinner meeting with clients at Italian restaurant.", + "Uber ride to airport for business trip.", + "Purchase of office supplies from Staples.", + "Hotel accommodation for attending conference.", + "Team lunch for project celebration at local cafe.", + "Subscription renewal for project management software.", + "Equipment rental for offsite team building activity.", + "Payment for freelance graphic design services.", + "Catering for company holiday party.", + "Training workshop registration fee.", + "Repair services for office printer.", + "Milestone bonus for team member.", + "Coffee and snacks for brainstorming session.", + "Travel reimbursement for sales team member.", + "Consultant fee for strategic planning session.", + "Marketing campaign materials printing costs.", + "Expenses for team offsite retreat.", + "Membership renewal for industry association.", + "Shipping costs for client gift packages.", + "Miscellaneous office maintenance and repairs." + ], + "description": "This column is for storing comments related to expense items. It may include additional information, notes, or details about the expense incurred." + }, + { + "input": "public expense_items receipt_url", + "examples": [ + "http://www.example.com/expenses/receipt123.jpg", + "https://eventplatform.com/receipts/event456.pdf", + "http://articlesite.org/expenses/receipt789.png", + "https://bookingplatform.com/receipts/booking321.jpg", + "http://membershipsite.com/expenses/receipt567.pdf", + "https://notificationplatform.net/receipts/notification001.png", + "https://ordersystem.com/expenses/receipt999.jpg", + "http://productplatform.org/receipts/product234.pdf", + "https://expensemanagement.com/receipts/expense777.png", + "http://userinteraction.io/receipts/interaction555.jpg", + "https://eventtickets.com/expenses/receipt777.pdf", + "http://articleshub.net/receipts/article888.png", + "https://bookingpro.com/receipts/booking999.jpg", + "http://membershipportal.org/expenses/receipt1010.pdf", + "https://notificationapp.io/receipts/notification888.png", + "https://ordersystem.net/expenses/order123.jpg", + "http://productstore.com/receipts/product432.pdf", + "https://expenseapp.io/receipts/expense111.png", + "http://userinteract.net/expenses/interaction123.jpg", + "https://eventmanagement.com/receipts/event789.pdf" + ], + "description": "This column contains the URL of the receipt associated with an expense item in the platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions. It is used to store the location of the receipt image or document for the expense item." + }, + { + "input": "public expenses description", + "examples": [ + "Office supplies for Q2 2021", + "Team lunch meeting at local restaurant", + "Software subscription renewal for project management tool", + "Travel expenses for sales team conference", + "Marketing materials for upcoming product launch", + "Monthly cleaning service for office", + "Consulting fees for financial audit", + "Employee training workshop registration", + "IT equipment upgrade and maintenance", + "Web hosting subscription renewal", + "Printing and shipping costs for client proposals", + "Research and development expenses for new product", + "Utilities bill for office space", + "Advertising campaign expenses for holiday promotion", + "Office furniture purchase for new branch", + "Legal services for contract review", + "Travel accommodation for visiting clients", + "Employee rewards and recognition program expenses", + "Insurance premium payment for business coverage", + "Professional development course fees for employees" + ], + "description": "This column contains the description or details related to expenses in the platform, such as the purpose or reason for the expense, item details, or any additional information regarding the expenditure." + }, + { + "input": "public expo_tokens expo_token", + "examples": [ + "ExponentPushToken[dCrB7R0Q0m2tFfM0VMub1a]", + "ExponentPushToken[ej_NbmY1W5Z3O7bHb1C5em]", + "ExponentPushToken[m1UQBXfATS2P6wigbXG3n3]", + "ExponentPushToken[RaNt19I7RR7ml1j9wZ1n7u]", + "ExponentPushToken[9sWotmF2VzmT6g27sW7eS3]", + "ExponentPushToken[3vbHpX3tFbegJnXsmXk0wi]", + "ExponentPushToken[Xrbrac0CSGGb87s1RrB2N1]", + "ExponentPushToken[maTWNOK0X25K09jO5nkG7o]", + "ExponentPushToken[7eutFsW1bF3aG8sVN7e6bd]", + "ExponentPushToken[qOe7Jg6GS5WG3n1mRbV6b2]", + "ExponentPushToken[ReV7JA01n3o7sX5rS1v6Bn]", + "ExponentPushToken[03gsRn5XF9bm14bCG7n3Xw]", + "ExponentPushToken[2POkO9jn5evf7LbG1Hw7nb]", + "ExponentPushToken[7vmGsP0RBf3k4NstZn1eST]", + "ExponentPushToken[h3FO9sRbJ24w6nL5kFbsA2]", + "ExponentPushToken[Rb91b4kXn5gG70Y1oSW8sa]", + "ExponentPushToken[sTn2P4brb5xN87yFG0eV4B]", + "ExponentPushToken[2bHsN7eV6g1bR0mnWt4Kjk]", + "ExponentPushToken[b3Nzd09Y8MP7g3GswZqB8e]", + "ExponentPushToken[2cS8g8N4b31nY7t0V2bS0N]" + ], + "description": "This column stores the Expo push notification tokens for users in the platform, allowing the system to send push notifications to specific devices for events, articles, bookings, memberships, orders, and other relevant interactions." + }, + { + "input": "public item_question title", + "examples": [ + "How to Plan a Successful Event: A Step-by-Step Guide", + "Top 10 Must-Read Articles for Event Planners", + "Book Your Seat for the Exclusive Industry Networking Event", + "Upgrade Your Membership to Premium for VIP Access", + "New Notification: Important Updates Regarding Your Account", + "Order Confirmation: Your Purchase is on the Way", + "Introducing Latest Products for Spring Collection", + "Track Your Expenses Easily with our Expense Management Tool", + "Join the Discussion: Share Your Thoughts on the Latest Trend", + "Event Reminder: Don't Miss Out on Tomorrow's Workshop", + "Articles on Health and Wellness: Stay Informed and Healthy", + "Book Your Spot for the Annual Gala Dinner", + "Membership Renewal: Ensure Uninterrupted Access to Premium Features", + "Notification Alert: Time-Sensitive Information Regarding Your Order", + "New Products Launch Event: Be the First to Explore", + "Expense Report Submission Deadline Approaching", + "Engage with Other Users: Start a Conversation Today", + "Exclusive Webinar: Learn Strategies for Business Growth", + "Limited Seats Available for the Photography Workshop", + "Top 5 Tips for Optimizing Your Order Process" + ], + "description": "This column is about storing the title of an item or question in the database table related to the project which involves managing a platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions, with features like tagging, comments, and notifications." + }, + { + "input": "public item_question title_en", + "examples": [ + "Summer Sale Event", + "How to Create an Account", + "Booking Confirmation", + "Premium Membership Benefits", + "New Notification System", + "Order Tracking", + "Product Catalog Update", + "Expense Report Submission", + "User Feedback Survey", + "Winter Collection Launch", + "Article: Healthy Eating Habits", + "Event Registration", + "Membership Renewal Reminder", + "Notification Preferences", + "Order Refund Process", + "Product Review Submission", + "Travel Expenses Approval", + "User Profile Update", + "Spring Sale Promotion", + "Article: Home Decorating Tips" + ], + "description": "This column stores the English title of the item or question related to the project, such as events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions." + }, + { + "input": "public item_question description", + "examples": [ + "New event added: 'Annual Charity Gala'", + "Article: 'Top 10 Tips for Better Sleep'", + "Booking confirmed for Room 301 on 8/15/2023", + "Membership renewal notification for Gold tier", + "New order received for 2x t-shirts, 1x jeans", + "Product added: 'Wireless Bluetooth Headphones'", + "Expense report submitted by John Doe", + "User commented on post: 'Great article!'", + "Tagged in photo: 'Fun times at the beach'", + "Notification: 'Account balance is low'", + "Event reminder: 'Webinar on Digital Marketing'", + "Article shared on social media: 'Healthy Eating Habits'", + "Booking canceled for Dinner Reservation on 8/20/2023", + "Membership upgrade to Platinum status", + "New order shipped for 1x laptop", + "Product out of stock: 'Smartphone model X'", + "Expense approved for Team Lunch", + "User liked your post on 'Travel Destinations'", + "Tag added: 'Workout Inspiration'", + "Notification: 'Password reset requested'" + ], + "description": "This column is about the description of an item or question in the context of the platform. It may contain details about events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions related to the item or question. The description might include information about features like tagging, comments, and notifications as they pertain to the item or question." + }, + { + "input": "public item_question description_en", + "examples": [ + "What is the capital of France?", + "Who wrote the famous novel 'Pride and Prejudice'?", + "Explain the concept of gravitational force.", + "What is the main function of the liver in the human body?", + "Describe the process of photosynthesis.", + "How does the internet work?", + "What are the different types of renewable energy sources?", + "Discuss the impact of climate change on polar bears.", + "Explain the theory of relativity in simple terms.", + "What is the significance of the Fibonacci sequence?", + "Describe the structure of DNA.", + "How does the human digestive system work?", + "What are the causes of the American Civil War?", + "Discuss the role of mitochondria in cellular respiration.", + "Explain the concept of supply and demand.", + "What are the benefits of regular exercise?", + "Describe the water cycle.", + "What are the characteristics of a good leader?", + "Explain the difference between weather and climate.", + "Discuss the process of mitosis." + ], + "description": "This column contains the English version of the description of item questions in the public domain." + }, + { + "input": "public item_question type", + "examples": [ + "events", + "articles", + "bookings", + "memberships", + "notifications", + "orders", + "products", + "expenses", + "user interactions", + "photos", + "videos", + "surveys", + "polls", + "forums", + "comments", + "reviews", + "tickets", + "reservations", + "transactions", + "chats" + ], + "description": "This column is about the type of item or question in the platform which could include events, articles, bookings, memberships, notifications, orders, products, expenses, or user interactions. It categorizes the different types of content or functionality within the platform." + }, + { + "input": "public item_question_option answer", + "examples": [ + "Yes", + "No", + "Maybe", + "Not applicable", + "Agree", + "Disagree", + "Partially agree", + "Strongly agree", + "Male", + "Female", + "Other", + "High school", + "Bachelor's degree", + "Master's degree", + "PhD", + "Red", + "Blue", + "Green", + "Yellow", + "Multiple times a day" + ], + "description": "This column is about storing the possible answers or options for a question related to items in the platform. It may contain text or data related to the answer choices that users can select from when interacting with the platform." + }, + { + "input": "public item_question_option answer_en", + "examples": [ + "Yes, it is available", + "No, it is currently out of stock", + "Sorry, that item is discontinued", + "Please contact customer service for more information", + "Limited quantities remaining", + "Check our website for the latest updates", + "This item is eligible for free shipping", + "Available in different colors and sizes", + "Bestseller item of the month", + "Recommended for outdoor use", + "New arrival, grab it before it's gone", + "Exciting discounts on this item", + "Popular choice among customers", + "Great for gift-giving", + "Back in stock, get yours now", + "Top-rated item in our store", + "Customization options available", + "Contactless delivery option available", + "Highly recommended by our experts", + "Perfect for special occasions" + ], + "description": "This column is about storing the English version of the answer option for a question related to items in a public setting. It may be used in a multi-lingual system to provide answers in English for questions related to items accessible by the public." + }, + { + "input": "public item_question_response answer", + "examples": [ + "Great product! I love it.", + "The item was exactly what I was looking for.", + "I am satisfied with my purchase.", + "I had a problem with the product but customer service resolved it quickly.", + "The quality of the item is top-notch.", + "This product exceeded my expectations.", + "It was easy to assemble the item.", + "The item arrived damaged, I need a replacement.", + "I wish the item came in more color options.", + "The price of the product is very reasonable.", + "I would recommend this item to others.", + "The item stopped working after a few days.", + "The packaging was damaged but the product was unaffected.", + "The item is lightweight and easy to carry around.", + "The size of the item is perfect for my needs.", + "I found the item to be overpriced for its quality.", + "The instructions for the item were clear and easy to follow.", + "The item was out of stock when I tried to purchase it.", + "The item is versatile and can be used for multiple purposes.", + "I received the wrong item in my order.", + "The item was back-ordered but eventually arrived." + ], + "description": "This column is about storing the answers given by users or respondents to specific questions related to items or products in the system." + }, + { + "input": "public keycloak keycloak_id", + "examples": [ + "abc123xyz456", + "user789keycloak345", + "keycloakid_678", + "id1234_keycloak", + "keycloak_9876_id", + "userkeycloak_54321", + "keycloakid_2468", + "user_id_keycloak", + "keycloak4321user", + "keycloak789_user", + "id_keycloak_65432", + "userkeycloak_id987", + "keycloakuser123", + "user456keycloakid", + "keycloak_id_0123", + "id_keycloak_user", + "keycloakid_7890", + "userkeycloak123id", + "keycloakuser456id", + "id_keycloak789user" + ], + "description": "This column is for storing the Keycloak ID, which is a unique identifier associated with users in the Keycloak identity and access management system. It is used to authenticate and authorize users within the platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions. This ID is likely used for linking user data across different tables and functionalities within the database." + }, + { + "input": "public markdowns name", + "examples": [ + "Introduction_to_Data_Analysis", + "Product_Launch_Checklist", + "Financial_Statement_Analysis", + "Beginners_Guide_to_Machine_Learning", + "SEO_Best_Practices", + "Healthy_Lifestyle_Tips", + "Recipe_Collection", + "Travel_Destinations_Guide", + "Career_Development_Strategies", + "Web_Development_Trends", + "Project_Management_Tools", + "Budget_Planning_Template", + "Startup_Success_Story", + "Digital_Marketing_Strategies", + "Parenting_Advice", + "Photography_Tips_and_Tricks", + "Self_Care_Routine", + "Fictional_Short_Story", + "DIY_Home_Decor_Ideas", + "Fitness_Workout_Plans" + ], + "description": "This column is about storing the name of the markdown content. It likely serves as a unique identifier or title for the markdown content stored in the database table." + }, + { + "input": "public markdowns markdown", + "examples": [ + "### Welcome to Our Annual Charity Gala!\nThis year's gala will be held at the Grand Plaza Hotel on December 15th. Join us for an unforgettable evening of giving back to the community.", + "# New Product Release: Eco-Friendly Reusable Water Bottles\nIntroducing our latest product line of sustainable and stylish water bottles. Say goodbye to single-use plastics and make a positive impact on the environment with our eco-friendly bottles.", + "## Important Notice: System Maintenance\nPlease be advised that our platform will undergo scheduled maintenance on November 20th from 10:00 PM to 2:00 AM (EST). We apologize for any inconvenience this may cause and appreciate your understanding.", + "*Order #12345*\n- Product: Organic Cotton Tote Bag\n- Quantity: 2\n- Total: $25.00\n- Status: Shipped\n- Expected Delivery Date: November 25th\nThank you for shopping with us!", + "#### Budget Update - Q4 2021\nWe are pleased to report that our expenses remain within budget for the fourth quarter. This positive trend is a result of our team's diligent efforts in cost management.", + "### User Feedback Request: Your Opinion Matters!\nWe value your feedback and would like to hear about your experience with our platform. Please take a moment to share your thoughts in our brief survey.", + "# Exclusive Holiday Sale - Up to 50% Off!\n'Tis the season for savings! Shop our holiday collection and enjoy discounts of up to 50% on select items. Hurry, limited stock available!", + "## Weekly Digest: Top Articles of the Week\nStay informed with our curated selection of articles covering industry trends, tips for success, and inspiring stories. Read more to expand your knowledge.", + "### Event Reminder: Virtual Networking Mixer\nDon't forget to join us for our upcoming virtual networking event on November 30th at 6:00 PM. Connect with industry professionals and expand your network from the comfort of your home.", + "*Expense Report - Q3 2021*\n- Total Expenses: $10,500\n- Categories:\n - Marketing: $3,000\n - Operations: $4,500\n - Supplies: $2,000\n- Analysis: Expenses are in line with projections.", + "#### Important Updates: New Features Coming Soon!\nWe are excited to announce that a series of new features will be launched on our platform next month. Stay tuned for more information on how these enhancements will elevate your user experience.", + "# Product Spotlight: Smart Wearable Fitness Tracker\nAchieve your health goals with our innovative fitness tracker that monitors your activity levels, heart rate, and sleep patterns. Get yours today and start your journey to a healthier lifestyle!", + "### Membership Renewal Reminder\nYour membership is due for renewal on December 5th. Keep enjoying exclusive benefits and access by renewing your membership today.", + "## COVID-19 Update: Safety Measures in Place\nThe health and safety of our community are our top priorities. We have implemented strict safety protocols on our premises to ensure a secure environment for all visitors and staff.", + "*Notification*\n- Title: New Message Received\n- Sender: JohnDoe123\n- Message: Hi there! Just wanted to touch base on the upcoming project. Let's chat when you have a moment.", + "#### Recipe of the Week: Pumpkin Spice Latte\nIndulge in the flavors of fall with our delicious pumpkin spice latte recipe. Treat yourself to a warm and comforting beverage that's perfect for cozy evenings.", + "### Thank You for Your Purchase!\nWe appreciate your recent order of our handmade artisan candles. Your support enables us to continue creating high-quality products for our customers.", + "# Upcoming Webinar: Digital Marketing Trends 2022\nStay ahead of the curve with insights into the latest digital marketing trends for the upcoming year. Register now to secure your spot in this informative webinar.", + "## Employee Recognition: Employee of the Month\nCongratulations to Sarah Johnson for her outstanding performance and dedication to her work. Sarah's contributions have been invaluable to our team.", + "### Holiday Gift Guide: Thoughtful Presents for Everyone\nFind the perfect gifts for your loved ones this holiday season with our curated gift guide. From unique accessories to personalized items, we have something for everyone!" + ], + "description": "This column is about storing the markdown content for various items within the platform, such as event descriptions, articles, notifications, orders, products, expenses, and user interactions. It is likely used for displaying formatted text on the platform." + }, + { + "input": "public markdowns markdown_en", + "examples": [ + "### Welcome to our platform!\n\nJoin us for exciting events and stay updated on the latest news and articles.", + "## Upcoming Event\n\nJoin us for a special webinar on 'Digital Marketing Strategies' on Thursday, June 10th at 3:00 PM (EST). Register now!", + "### Membership Benefits\n\nUnlock exclusive content, attend VIP events, and connect with like-minded individuals by becoming a premium member today.", + "## Breaking News!\n\nStay tuned for the launch of our new feature that will revolutionize your user experience. Exciting updates coming soon!", + "### Important Notification\n\nPlease note that the platform will undergo scheduled maintenance on Sunday, June 20th. We apologize for any inconvenience caused.", + "## Featured Article\n\nDiscover the top 5 productivity tips to enhance your daily workflow and achieve your goals faster.", + "### Let's Connect!\n\nFollow us on social media for more updates, behind-the-scenes content, and engaging discussions.", + "## Exclusive Offer\n\nLimited time offer: Get 20% off your next purchase with code 'SUMMER20'. Shop now!", + "### Expert Panel Discussion\n\nJoin industry leaders for an insightful panel discussion on 'The Future of Technology' this Friday at 2:00 PM (PST).", + "## Monthly Newsletter\n\nDon't miss out on our latest newsletter with exclusive interviews, upcoming events, and valuable resources.", + "### Feedback Survey\n\nHelp us improve by sharing your feedback in our quick survey. Your input is valuable to us!", + "## Educational Workshop\n\nSign up for our upcoming workshop on 'Entrepreneurship Fundamentals' and gain valuable insights from successful entrepreneurs.", + "### Job Opportunity\n\nExciting career opportunity: We are hiring a Marketing Specialist to join our dynamic team. Apply now!", + "## Community Spotlight\n\nMeet Sarah, our Member of the Month, and learn about her inspiring journey in the community.", + "### Wellness Challenge\n\nJoin our 30-day wellness challenge and prioritize your health and well-being. Let's start this journey together!", + "## Volunteer Opportunity\n\nMake a difference in your community by volunteering for our upcoming charity event. Your support means the world to us.", + "### Product Launch\n\nIntroducing our latest product innovation that will revolutionize how you experience our platform. Explore now!", + "## Expert Interview\n\nGain valuable insights from our exclusive interview with Dr. Alex Green on 'The Future of Healthcare'.", + "### Tech Talk\n\nJoin us for a tech talk session on 'Artificial Intelligence in Business' and explore the latest trends and applications.", + "## Support Center\n\nNeed assistance? Our support team is here to help. Contact us via live chat, email, or phone for quick solutions." + ], + "description": "This column is for storing the English version of markdown content in the public.markdowns table. It is used for displaying formatted text in English for various components of the platform such as events, articles, memberships, and notifications." + }, + { + "input": "public meetings title", + "examples": [ + "Monthly Team Meeting", + "Quarterly Sales Review", + "Executive Board Strategy Session", + "Marketing Campaign Kickoff", + "Product Development Brainstorm", + "Client Onboarding Session", + "Leadership Training Workshop", + "Company All-Hands Meeting", + "Customer Feedback Focus Group", + "Project Status Update Meeting", + "Vendor Negotiation Meeting", + "Job Interview Panel Discussion", + "Training for New Hires", + "Community Event Planning Meeting", + "Investor Pitch Presentation", + "Staff Performance Review Meeting", + "Industry Conference Panel Discussion", + "Team Building Retreat Planning", + "Customer Support Q&A Session", + "Financial Planning Seminar" + ], + "description": "This column is about storing the title of meetings on the platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions. Each record in this column would likely contain a specific title for a meeting scheduled on the platform." + }, + { + "input": "public meetings url", + "examples": [ + "https://zoom.us/meeting/12345", + "https://teams.microsoft.com/meeting/67890", + "https://webex.com/meeting/23456", + "https://gotomeeting.com/meeting/78901", + "https://skype.com/meeting/34567", + "https://hangouts.google.com/meeting/89012", + "https://join.me/meeting/45678", + "https://appear.in/meeting/90123", + "https://bluejeans.com/meeting/56789", + "https://whereby.com/meeting/12378", + "https://jitsi.org/meeting/76543", + "https://zoom.us/meeting/34219", + "https://teams.microsoft.com/meeting/09876", + "https://webex.com/meeting/56432", + "https://gotomeeting.com/meeting/21987", + "https://skype.com/meeting/65324", + "https://hangouts.google.com/meeting/12345", + "https://join.me/meeting/67890", + "https://appear.in/meeting/23456", + "https://bluejeans.com/meeting/78901" + ], + "description": "This column is about storing the URL or link associated with meetings in the platform." + }, + { + "input": "public members student_id", + "examples": [ + "AB1234", + "CD5678", + "EF9012", + "GH3456", + "IJ7890", + "KL2345", + "MN6789", + "OP1234", + "QR5678", + "ST9012", + "UV3456", + "WX7890", + "YZ2345", + "ABC6789", + "DEF1234", + "GHI5678", + "JKL9012", + "MNO3456", + "PQR7890", + "STU2345" + ], + "description": "This column is used to store the unique identifier for each student within the public.members table of the database." + }, + { + "input": "public members first_name", + "examples": [ + "Alice", + "John", + "Emily", + "Michael", + "Sophia", + "Daniel", + "Olivia", + "Liam", + "Emma", + "Alexander", + "Isabella", + "Matthew", + "Grace", + "Ethan", + "Ava", + "William", + "Mia", + "Samuel", + "Amelia", + "Benjamin" + ], + "description": "This column is about storing the first name of a student who is a member of the public. It is likely used for personal identification and communication purposes within the platform." + }, + { + "input": "public members nickname", + "examples": [ + "CoolCat23", + "SunshineGirl", + "TechWiz", + "GamerDude", + "MusicLover88", + "SparklyUnicorn", + "AdventureSeeker", + "Bookworm77", + "FitnessFanatic", + "FoodieGuru", + "Fashionista22", + "NatureLover", + "MovieBuff99", + "TravelBug", + "ArtisticSoul", + "Dreamer123", + "SuperMom", + "SportsFanatic", + "PetLover", + "DIYEnthusiast" + ], + "description": "This column is about storing the nickname or alias of the members in the public section of the platform. It is used to provide a more personalized and informal way of identifying and addressing the members." + }, + { + "input": "public members last_name", + "examples": [ + "Smith", + "Johnson", + "Williams", + "Jones", + "Brown", + "Davis", + "Miller", + "Garcia", + "Martinez", + "Hernandez", + "Young", + "King", + "Scott", + "Adams", + "Green", + "Patel", + "Ivanov", + "Choi", + "Silva", + "Nguyen" + ], + "description": "This column is about storing the last name of students who are members of the public group." + }, + { + "input": "public members picture_path", + "examples": [ + "images/students/john_doe.jpg", + "images/members/emma_smith.png", + "profile_pics/alexander_wong.jpeg", + "avatars/user123.jpg", + "profile_images/sarah_adams.png", + "members/photos/kevin_garcia.jpg", + "pictures/profiles/olivia_parker.png", + "user_pics/michael_jenkins.jpeg", + "student_images/lucy_brown.jpg", + "avatars/avatar4.png", + "photos/maria_rodriguez.jpg", + "profile_pictures/steven_murray.png", + "images/users/andrew_hall.jpeg", + "member_photos/laura_taylor.jpg", + "pictures/profile_pics/patrick_clark.png", + "profile_images/jessica_carter.jpeg", + "user_avatars/ryan_phillips.jpg", + "members/profile_images/diana_baker.png", + "student_pictures/matthew_scott.jpeg", + "avatars/avatar2.png" + ], + "description": "This column is for storing the file path of the picture of the student/member in the database. It is used to store the location of the image file associated with the student/member's profile picture." + }, + { + "input": "public members class_programme", + "examples": [ + "Bachelor of Science in Computer Science", + "Master of Business Administration", + "Diploma in Nursing", + "Engineering Design and Innovation Program", + "Bachelor of Arts in Psychology", + "Doctor of Medicine", + "Certificate in Digital Marketing", + "Bachelor of Engineering in Civil Engineering", + "Data Science Bootcamp", + "Ph.D. in Economics", + "Fashion Design and Merchandising", + "Associate Degree in Criminal Justice", + "Music Production Workshop", + "Professional Cooking Course", + "Bachelor of Fine Arts in Graphic Design", + "Cybersecurity Training Program", + "English Language Proficiency Course", + "Robotics and Automation Certification", + "Interior Design Masterclass", + "Photography Composition Workshop" + ], + "description": "This column is about storing the class programme that a student is enrolled in. It likely contains information such as the name or code of the programme the student is attending." + }, + { + "input": "public members food_preference", + "examples": [ + "Vegetarian", + "Gluten-free", + "Vegan", + "No nuts", + "Halal only", + "Pescatarian", + "Keto diet", + "Allergic to shellfish", + "Paleo", + "Lactose intolerant", + "Diabetic-friendly", + "Low-carb", + "Love spicy food", + "No dairy products", + "Organic only", + "Raw vegan", + "Mediterranean diet", + "Nut-free", + "Carnivore", + "Locavore" + ], + "description": "This column is about storing the food preferences of the members who are participating in events or using the platform. It could include details such as dietary restrictions, favorite cuisines, or any specific food requirements." + }, + { + "input": "public members bio", + "examples": [ + "Passionate software engineer with a love for creating innovative solutions.", + "Marketing professional with a knack for storytelling and brand development.", + "Adventure seeker who enjoys exploring new cultures and cuisines.", + "Animal lover dedicated to fostering and rescuing furry friends in need.", + "Fitness enthusiast empowering others to achieve their health goals.", + "Artistic soul who finds inspiration in nature and abstract paintings.", + "Tech geek obsessed with the latest gadgets and digital trends.", + "Travel junkie with a bucket list of destinations waiting to be explored.", + "Foodie at heart who enjoys experimenting with exotic recipes.", + "Bookworm with a passion for classic literature and contemporary fiction.", + "Social media influencer promoting positivity and self-love.", + "Fashionista keeping up with the latest runway styles and trends.", + "Music aficionado always on the lookout for hidden gems in the industry.", + "Environmental activist striving to make a difference in sustainability.", + "Sports enthusiast cheering for their favorite teams and athletes.", + "Film buff who appreciates both indie films and Hollywood blockbusters.", + "History buff fascinated by ancient civilizations and historical events.", + "Yoga instructor sharing the benefits of mindfulness and meditation.", + "DIY enthusiast showcasing creative projects and home decor ideas.", + "Entrepreneur with a vision to revolutionize the way we work and live." + ], + "description": "This column is about storing the biographical information of the members in the public section of the platform. It may include details about the member's background, interests, skills, or any other information they choose to share." + }, + { + "input": "public members stripe_customer_id", + "examples": [ + "cus_JkSbqRzP7Xqn5", + "cus_HlU3yRzQ9Gxk3", + "cus_FvOp7EzK5Yqa1", + "cus_BrT4dEpL2Top9", + "cus_AgPj6ZmN3Vqf4", + "cus_CnQo9DxR8Mpb2", + "cus_TjLe5YtH0Nzv6", + "cus_XmPr2UwS6Fdp8", + "cus_RkBa1QtV4Koq7", + "cus_LoPf3QrV2Fcj9", + "cus_GwKl9HxU3Hpe5", + "cus_VbPh5ZxT9Odq2", + "cus_UcNs8PiO1Rqh3", + "cus_EoLb0ZnV7Atk1", + "cus_QjDv6WaL5Udc8", + "cus_SmKt4MrW8Efo2", + "cus_JrLg9GoS2Fci4", + "cus_NfPy3RlQ1Zmd6", + "cus_PmIf7GbQ6Bfl8", + "cus_YfPu2QdL0Sbn3" + ], + "description": "This column contains the Stripe customer ID associated with a member in the public.members table. It is used to store the unique identifier for the member's Stripe account, which is used for processing payments and managing subscriptions or transactions." + }, + { + "input": "public members email", + "examples": [ + "john.doe@example.com", + "jane.smith@example.com", + "alexander123@gmail.com", + "sara1987@yahoo.com", + "mike_anderson@hotmail.com", + "annabelle_34@outlook.com", + "thomas.johnson@example.com", + "olivia.brown@gmail.com", + "chloe1985@yahoo.com", + "david.smith@example.com", + "emily_789@hotmail.com", + "william98@gmail.com", + "laura.jones@yahoo.com", + "robert.smith@example.com", + "emma.miller@hotmail.com", + "matthew.brown@outlook.com", + "grace96@example.com", + "nathan.cook@gmail.com", + "ava1990@yahoo.com", + "daniel_wilson@example.com" + ], + "description": "This column is about storing the email addresses of the members who are registered in the public section of the platform." + }, + { + "input": "public notifications title", + "examples": [ + "New Feature Update: Dark Mode Now Available!", + "Upcoming Maintenance: Platform Downtime on Friday", + "Limited Time Offer: 50% Off Premium Subscription", + "Important Security Alert: Update Your Password", + "Community Event: Virtual Cooking Class this Saturday", + "Your Order Has Been Shipped! Track Your Package Now", + "Celebrate with Us: Platform Anniversary Sale", + "Get Ready: Exciting Changes Coming Next Week", + "Join Our Webinar: Mastering Social Media Marketing", + "Announcing Winners: Monthly Giveaway Results", + "Exclusive Access: VIP Members Only Sale", + "Share Your Feedback: Platform Survey Now Live", + "Stay Informed: Subscribe to Our Newsletter", + "Join the Discussion: Live Q&A with Industry Experts", + "Upgrade Your Experience: Try Our New Premium Features", + "Seasonal Sale Alert: Spring Collection Now Available", + "Learn Something New: Free Online Course Available", + "Don't Miss Out: Limited Edition Products Restocked", + "Thank You for Your Support: Platform Milestone Achieved", + "Stay Safe: Tips for Cybersecurity Awareness Month" + ], + "description": "This column is about storing the title of notifications that are intended for public display to users on the platform." + }, + { + "input": "public notifications message", + "examples": [ + "Welcome to our community! Stay updated with our latest events and news.", + "Don't miss our sale this weekend! Get up to 50% off on selected items.", + "Congratulations to John Smith for winning our contest. Check your inbox for details.", + "Join us for a free webinar on digital marketing strategies this Friday.", + "Important notice: Changes to our store hours starting next week.", + "Celebrate Mother's Day with us! Special discount for all mothers on Sunday.", + "New product alert! Introducing our latest gadget with innovative features.", + "Reminder: Your subscription to our newsletter expires soon. Renew now!", + "Happy holidays from our team! Wishing you a joyful and peaceful season.", + "Exciting news: Our app now supports multiple languages. Update now!", + "We are hiring! Join our team and be part of a dynamic work environment.", + "Stay safe during the flu season. Get your flu shot at our clinic today.", + "Upgrade your membership to unlock exclusive benefits and rewards.", + "Limited time offer: Buy one, get one free on selected items.", + "Thank you for your feedback. We are constantly improving our services.", + "Follow us on social media for daily updates and special promotions.", + "Get ready for our upcoming event. Save the date and RSVP now!", + "We value your opinion. Take our survey and get a chance to win a prize.", + "Protect yourself from online scams. Learn how to spot fraudulent emails.", + "Happy birthday to our valued customers! Enjoy a special discount today." + ], + "description": "This column is about storing the message content for notifications that are meant for public display." + }, + { + "input": "public notifications type", + "examples": [ + "event update", + "article notification", + "booking confirmation", + "membership alert", + "order notification", + "product update", + "expense notification", + "user interaction notification", + "meeting reminder", + "payment receipt", + "survey invitation", + "new feature announcement", + "account activation", + "delivery status update", + "upcoming webinar alert", + "bug report", + "password reset request", + "subscription renewal reminder", + "security alert", + "employee recognition" + ], + "description": "This column is about indicating the type of notification being sent, such as event updates, article notifications, booking confirmations, membership alerts, order notifications, product updates, expense notifications, or user interaction notifications." + }, + { + "input": "public notifications link", + "examples": [ + "https://www.example.com/notification1", + "https://www.example.com/notification2", + "https://www.example.com/notification3", + "https://www.example.com/notification4", + "https://www.example.com/notification5", + "https://www.example.com/notification6", + "https://www.example.com/notification7", + "https://www.example.com/notification8", + "https://www.example.com/notification9", + "https://www.example.com/notification10", + "https://www.example.com/notification11", + "https://www.example.com/notification12", + "https://www.example.com/notification13", + "https://www.example.com/notification14", + "https://www.example.com/notification15", + "https://www.example.com/notification16", + "https://www.example.com/notification17", + "https://www.example.com/notification18", + "https://www.example.com/notification19", + "https://www.example.com/notification20" + ], + "description": "This column is about storing the link associated with notifications in the public section of the database." + }, + { + "input": "public order student_id", + "examples": [ + "STU1234", + "STU5678", + "STU9876", + "STU3456", + "STU6543", + "STU2109", + "STU8801", + "STU4402", + "STU1122", + "STU9988", + "STU7755", + "STU3366", + "STU4433", + "STU2299", + "STU8866", + "STU5544", + "STU6677", + "STU1122", + "STU9900", + "STU3355" + ], + "description": "This column stores the unique identifier of the student associated with an order in the public schema of the database." + }, + { + "input": "public payment student_id", + "examples": [ + "STU12345", + "STU98765", + "STU23456", + "STU45678", + "STU78901", + "STU34567", + "STU56789", + "STU89012", + "STU67890", + "STU12356", + "STU78923", + "STU34589", + "STU56712", + "STU90123", + "STU23478", + "STU45690", + "STU89034", + "STU56789", + "STU12345", + "STU67890" + ], + "description": "This column contains the unique identifier for each student making a payment in the public payment table." + }, + { + "input": "public payment swish_id", + "examples": [ + "SWISH123456", + "SWISH987654", + "SWISH111222", + "SWISH555444", + "SWISH777888", + "SWISH246810", + "SWISH135792", + "SWISH369258", + "SWISH987123", + "SWISH456789", + "SWISH654321", + "SWISH321654", + "SWISH789654", + "SWISH951753", + "SWISH147258", + "SWISH369147", + "SWISH258963", + "SWISH852741", + "SWISH456123", + "SWISH654789" + ], + "description": "This column is about storing the Swish ID of the payment made by a student. Swish is a popular mobile payment system in Sweden, and this column likely holds the unique identifier associated with the transaction made using Swish." + }, + { + "input": "public payment payment_method", + "examples": [ + "Credit Card", + "Bank Transfer", + "Swish", + "PayPal", + "Apple Pay", + "Google Pay", + "Venmo", + "Cash App", + "Zelle", + "Cryptocurrency", + "Stripe", + "Square", + "Klarna", + "WeChat Pay", + "Alipay", + "Amazon Pay", + "Prepaid Card", + "Gift Card", + "ACH Transfer", + "Western Union" + ], + "description": "This column is about storing the payment method used for a transaction in the platform, such as credit card, bank transfer, Swish, PayPal, etc." + }, + { + "input": "public payment payment_status", + "examples": [ + "Successful", + "Pending", + "Declined", + "Processing", + "Cancelled", + "Refunded", + "Failed", + "Completed", + "Authorized", + "Expired", + "Voided", + "Partially Paid", + "Overdue", + "On Hold", + "Error", + "Authorized", + "Approved", + "Partially Refunded", + "Settled", + "Disputed" + ], + "description": "This column is about the status of the payment made by the student, which could indicate whether the payment was successful, pending, declined, or any other relevant status related to the payment process." + }, + { + "input": "public payment payment_amount", + "examples": [ + "$50.00", + "$75.25", + "$100.50", + "$120.75", + "$85.20", + "$60.30", + "$150.00", + "$95.75", + "$110.50", + "$70.25", + "$125.80", + "$135.40", + "$80.60", + "$65.35", + "$140.25", + "$90.00", + "$55.50", + "$115.75", + "$130.90", + "$145.70" + ], + "description": "This column contains the amount of payment made by the student for a specific transaction." + }, + { + "input": "public payment payment_currency", + "examples": [ + "USD", + "EUR", + "GBP", + "JPY", + "AUD", + "CAD", + "CHF", + "CNY", + "HKD", + "INR", + "RUB", + "NZD", + "SEK", + "SGD", + "AED", + "DKK", + "KRW", + "MXN", + "NOK", + "ZAR" + ], + "description": "This column is about storing the currency in which the payment amount is made in the public payment transactions. It indicates the currency code (e.g., USD, EUR) used for the transaction." + }, + { + "input": "public phadder_groups name", + "examples": [ + "Tech Enthusiasts", + "Fitness Fanatics", + "Book Club", + "Adventure Seekers", + "Foodies Society", + "Pet Lovers", + "Creative Artists", + "Startup Warriors", + "Travel Junkies", + "Music Makers", + "Yoga Tribe", + "Gaming Guild", + "Film Buffs", + "Language Buffs", + "Wellness Warriors", + "Investment Gurus", + "Fashionistas Network", + "Environmentalists Alliance", + "Craft Beer Connoisseurs", + "Photography Enthusiasts" + ], + "description": "This column is about storing the name of groups related to the Phadder feature in the project, which could be used for organizing events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions within specific groupings." + }, + { + "input": "public phadder_groups description", + "examples": [ + "Group for event organizers to collaborate and share resources", + "Exclusive group for premium members with VIP access to events and discounts", + "Book club group for discussing and sharing literature recommendations", + "Fitness enthusiasts group for sharing workout routines and healthy recipes", + "Group for tech enthusiasts to discuss the latest gadgets and innovations", + "Support group for mental health discussions and sharing coping strategies", + "Local neighborhood group for sharing updates on community events and news", + "Photography group for sharing tips, techniques, and showcasing work", + "Group for dog lovers to share cute pictures and pet care advice", + "Entrepreneurs group for networking, idea sharing, and business tips", + "Study group for students preparing for exams and sharing study materials", + "Travel enthusiasts group for sharing travel stories, tips, and destination recommendations", + "Parenting group for sharing tips on raising children and family bonding activities", + "Art and design group for sharing creative works and getting feedback", + "Fitness challenge group for motivating each other to reach workout goals", + "Foodies group for sharing recipes, restaurant recommendations, and foodie adventures", + "Gaming group for organizing multiplayer sessions and discussing game strategies", + "Fashionistas group for sharing fashion trends, styling tips, and shopping hauls", + "Green living group for discussing sustainability practices and eco-friendly living tips", + "Music lovers group for sharing favorite songs, discovering new music, and discussing concerts" + ], + "description": "This column is about the description of the Phadder groups in the platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions. It likely contains details or information describing the purpose, goals, or characteristics of the Phadder groups." + }, + { + "input": "public phadder_groups image_url", + "examples": [ + "https://example.com/phadder-group1.jpg", + "https://example.com/group2-image.png", + "https://example.com/phaddergroup3.jpeg", + "https://example.com/phadder_group4.jpg", + "https://example.com/group5.png", + "https://example.com/phadder-group6.jpg", + "https://example.com/group7-image.png", + "https://example.com/phaddergroup8.jpeg", + "https://example.com/phadder_group9.jpg", + "https://example.com/group10.png", + "https://example.com/phadder-group11.jpg", + "https://example.com/group12-image.png", + "https://example.com/phaddergroup13.jpeg", + "https://example.com/phadder_group14.jpg", + "https://example.com/group15.png", + "https://example.com/phadder-group16.jpg", + "https://example.com/group17-image.png", + "https://example.com/phaddergroup18.jpeg", + "https://example.com/phadder_group19.jpg", + "https://example.com/group20.png" + ], + "description": "This column contains the URL of the image associated with a specific Phadder group." + }, + { + "input": "public positions id", + "examples": [ + "evt-35421", + "art-9876", + "bk-12345", + "memb-5432", + "notif-7890", + "ord-45678", + "prod-2345", + "exp-98765", + "ui-76543", + "evt-12345", + "art-3456", + "bk-65432", + "memb-8765", + "notif-2345", + "ord-56789", + "prod-8765", + "exp-12345", + "ui-54321", + "evt-67890", + "art-1234" + ], + "description": "This column is the unique identifier for positions within the platform, such as event positions, article positions, booking positions, membership positions, notification positions, order positions, product positions, expense positions, and user interaction positions." + }, + { + "input": "public positions name", + "examples": [ + "CEO", + "Marketing Manager", + "Software Engineer", + "Customer Support Specialist", + "Product Designer", + "Sales Representative", + "Human Resources Coordinator", + "Finance Analyst", + "Operations Manager", + "Content Writer", + "Data Scientist", + "Graphic Designer", + "IT Support Specialist", + "Business Development Manager", + "Legal Counsel", + "Quality Assurance Tester", + "Project Manager", + "Event Coordinator", + "Social Media Specialist", + "Chief Technology Officer" + ], + "description": "This column is about storing the name of positions within the public context of the platform. It likely contains titles or names of roles or positions within the system." + }, + { + "input": "public positions name_en", + "examples": [ + "Event Organizer", + "Article Writer", + "Member", + "Social Media Manager", + "Graphic Designer", + "Volunteer Coordinator", + "Public Relations Specialist", + "Web Developer", + "Marketing Coordinator", + "Program Manager", + "Community Outreach Coordinator", + "Content Creator", + "Fundraising Manager", + "Education Coordinator", + "IT Specialist", + "HR Coordinator", + "Finance Officer", + "Research Analyst", + "Customer Service Representative", + "Project Coordinator" + ], + "description": "This column is used to store the English name of different positions within the public section of the project, such as event organizer, article writer, member, etc." + }, + { + "input": "public positions email", + "examples": [ + "ceo@company.com", + "marketing.manager@organization.org", + "sales_representative@retail.com", + "editor@publication.com", + "customer.service@company.net", + "volunteer.coordination@nonprofit.org", + "it.support@techcompany.com", + "event.coordinator@eventplanning.com", + "admin@school.edu", + "communications.manager@prfirm.com", + "hr@corporation.com", + "project.manager@constructionco.com", + "support.specialist@gamingstudio.com", + "research.assistant@university.edu", + "social_media@agency.com", + "intern@start-up.com", + "sponsorship.coordinator@festival.org", + "data.analyst@analyticscompany.com", + "internal.communications@enterprise.com", + "membership.director@association.org" + ], + "description": "This column is the email address associated with a position or role within the public part of the platform. It can be used for communication, identification, and notifications related to the position." + }, + { + "input": "public positions description", + "examples": [ + "Responsible for managing social media accounts and creating engaging content", + "Looking for a software engineer with experience in Python, Java, and web development", + "The position involves customer service, processing orders, and handling inquiries", + "Seeking a marketing specialist with expertise in digital marketing and SEO", + "Responsible for maintaining inventory, restocking shelves, and assisting customers", + "Looking for a sales associate with strong communication and negotiation skills", + "The role includes conducting market research, analyzing data, and identifying trends", + "Seeking a graphic designer proficient in Adobe Creative Suite and web design", + "Responsible for overseeing project timelines, budgets, and deliverables", + "Looking for a content writer to create SEO-friendly blog posts and website copy", + "The position involves event planning, coordinating vendors, and managing logistics", + "Seeking a financial analyst with knowledge of financial modeling and forecasting", + "Responsible for troubleshooting technical issues and providing customer support", + "Looking for a human resources coordinator to assist with recruitment and onboarding", + "The role includes collaborating with cross-functional teams to drive product innovation", + "Seeking a healthcare provider with experience in patient care and medical record management", + "Responsible for creating visual assets for marketing campaigns and branding initiatives", + "Looking for a project manager with experience in Agile methodologies and team leadership", + "The position involves conducting interviews, writing articles, and editing content", + "Seeking a data analyst to interpret and present data insights to stakeholders" + ], + "description": "This column is about the description of positions within the public domain. It likely contains information or explanations related to the different positions available within the platform such as roles, responsibilities, requirements, or any other relevant details." + }, + { + "input": "public positions description_en", + "examples": [ + "Senior Software Engineer responsible for designing and developing scalable applications", + "Marketing Manager overseeing campaigns and brand strategy for a global fashion brand", + "Financial Analyst analyzing market trends and forecasting financial performance", + "Customer Service Representative providing assistance and resolving inquiries for online customers", + "Human Resources Coordinator managing recruitment processes and employee relations", + "Project Manager leading cross-functional teams to deliver projects on time and within budget", + "Data Scientist utilizing machine learning algorithms to drive business insights", + "Sales Associate responsible for driving revenue through client relationships and product knowledge", + "Graphic Designer creating visual assets for digital marketing campaigns", + "Operations Manager optimizing operational processes and supply chain management", + "Content Writer producing engaging and informative content for websites and social media", + "Quality Assurance Specialist ensuring product quality and compliance with industry standards", + "Business Development Executive identifying new business opportunities and strategic partnerships", + "Legal Counsel providing legal advice and support on contractual matters", + "Event Coordinator planning and executing corporate events and conferences", + "IT Support Specialist troubleshooting technical issues and providing IT solutions", + "Account Manager managing client accounts and fostering long-term relationships", + "Research Analyst conducting market research and financial analysis", + "Public Relations Officer developing PR strategies and managing media relations", + "Executive Assistant providing administrative support to senior executives" + ], + "description": "This column is a description of positions in the public domain, written in English." + }, + { + "input": "public product name", + "examples": [ + "iPhone X", + "Nike Air Max 270", + "Samsung Galaxy S20", + "Sony PlayStation 5", + "Canon EOS 80D DSLR Camera", + "KitchenAid Stand Mixer", + "Fitbit Versa 2 Smartwatch", + "Dyson V11 Cordless Vacuum", + "HP Spectre x360 Laptop", + "Ray-Ban Wayfarer Sunglasses", + "Kindle Paperwhite E-Reader", + "Fujifilm Instax Mini 9 Camera", + "Beats Solo Pro Headphones", + "Lululemon Align Leggings", + "Nintendo Switch Console", + "Yeti Tundra Cooler", + "Vitamix Blender", + "GoPro Hero 8 Black", + "Tiffany & Co. Heart Necklace", + "S'well Water Bottle" + ], + "description": "This column is about storing the names of products available on the platform." + }, + { + "input": "public product description", + "examples": [ + "This smartwatch tracks your daily activities and heart rate, keeping you healthy and connected.", + "Our wireless headphones deliver premium sound quality with noise-cancellation technology for an immersive listening experience.", + "A compact and durable backpack with multiple compartments, perfect for organizing your essentials on-the-go.", + "Transform your living room with this sleek and modern coffee table, adding a touch of elegance to your space.", + "Stay cozy and warm with this plush and ultra-soft blanket, ideal for cuddling up on chilly nights.", + "Achieve salon-worthy hair at home with this professional ceramic hair straightener that reduces frizz and adds shine.", + "Upgrade your kitchen with this versatile 10-piece cookware set, designed for easy cooking and cleaning.", + "This portable power bank charges your devices rapidly, ensuring you stay connected while on the move.", + "Experience true wireless freedom with these Bluetooth earbuds that offer clear sound and a secure fit.", + "Revamp your workspace with this ergonomic office chair that provides comfort and support for long hours of sitting.", + "Illuminate your garden with these solar-powered outdoor lights, creating a charming ambiance for your outdoor space.", + "Protect your phone from scratches and drops with this slim and stylish phone case, available in various colors.", + "Enhance your gaming experience with this high-performance gaming mouse that offers customizable settings and precision control.", + "Start your day right with this programmable coffee maker that brews your favorite blend of coffee at the perfect temperature.", + "Organize your jewelry collection with this elegant jewelry box featuring multiple compartments and a mirror.", + "Create delicious and healthy smoothies with this powerful blender that crushes ice and blends ingredients smoothly.", + "Elevate your home entertainment system with this 4K smart TV that delivers stunning picture quality and smart features.", + "Stay hydrated on-the-go with this insulated water bottle that keeps your drinks cold or hot for hours.", + "Get a restful night's sleep with these ultra-soft and breathable bed sheets that provide comfort and style.", + "Stay active and track your fitness goals with this waterproof fitness tracker that monitors your steps and calories burned." + ], + "description": "This column is about providing a short description or details of a product in the platform, such as its features, specifications, or benefits." + }, + { + "input": "public product image_url", + "examples": [ + "https://example.com/product123_image.jpg", + "https://example.com/product456_image.png", + "https://example.com/product789_image.jpeg", + "https://example.com/product321_image.jpg", + "https://example.com/product654_image.png", + "https://example.com/product987_image.jpeg", + "https://example.com/product135_image.jpg", + "https://example.com/product246_image.png", + "https://example.com/product579_image.jpeg", + "https://example.com/product753_image.jpg", + "https://example.com/product864_image.png", + "https://example.com/product192_image.jpeg", + "https://example.com/product573_image.jpg", + "https://example.com/product468_image.png", + "https://example.com/product924_image.jpeg", + "https://example.com/product357_image.jpg", + "https://example.com/product786_image.png", + "https://example.com/product543_image.jpeg", + "https://example.com/product219_image.jpg", + "https://example.com/product786_image.png" + ], + "description": "This column contains the URL of the image associated with a product in the platform. It is used to display visual representation of the product in the user interface." + }, + { + "input": "public product_category name", + "examples": [ + "Electronics", + "Apparel", + "Home Goods", + "Beauty & Personal Care", + "Sports & Outdoors", + "Books & Literature", + "Health & Wellness", + "Automotive", + "Toys & Games", + "Home Decor", + "Outdoor Furniture", + "Kitchen & Dining", + "Pet Supplies", + "Art & Craft", + "Fitness Equipment", + "Electrical Appliances", + "Travel & Luggage", + "Office Supplies", + "Baby Products", + "Gardening Tools" + ], + "description": "This column is about storing the category name of products in the public section of the platform, which could include categories such as electronics, apparel, home goods, etc." + }, + { + "input": "public product_category description", + "examples": [ + "Electronics and Gadgets", + "Home and Kitchen Appliances", + "Fashion and Accessories", + "Books and Stationery", + "Beauty and Personal Care", + "Sports and Outdoor Equipment", + "Toys and Games", + "Health and Wellness Products", + "Pet Supplies", + "Industrial and Scientific Tools", + "Automotive Parts and Accessories", + "Home Improvement Products", + "Food and Beverages", + "Travel and Luggage", + "Art and Craft Supplies", + "Office Products", + "Music and Entertainment", + "Fitness and Exercise Gear", + "Baby and Kids Essentials", + "Outdoor Furniture and Decor" + ], + "description": "This column is about providing a description of the category to which a product belongs in the public product database table." + }, + { + "input": "public product_discount name", + "examples": [ + "Summer Sale", + "Clearance Event", + "Holiday Special", + "Back to School Deal", + "Flash Sale", + "Bundle Discount", + "End of Season Sale", + "New Year's Promotion", + "Black Friday Offer", + "Cyber Monday Discount", + "Spring Clearance", + "Customer Appreciation Sale", + "Early Bird Discount", + "BOGO Sale", + "Limited Time Offer", + "Warehouse Clearance", + "Friends and Family Sale", + "Student Discount", + "VIP Exclusive Deal", + "Teacher Appreciation Discount" + ], + "description": "This column is about the name of the discount applied to a product in the public product catalog." + }, + { + "input": "public product_discount description", + "examples": [ + "Get 20% off on all electronics this weekend!", + "Buy 1 Get 1 Free on select clothing items", + "Limited time offer: Save $50 on your next purchase", + "Get a free gift with purchase of any beauty product", + "Student discount: 15% off on all school supplies", + "Family bundle offer: Save 30% on a set of 4 items", + "Flash sale: Up to 50% off on home decor items", + "Weekend special: Buy 2 items and get 1 at half price", + "Early bird discount: Save 10% on orders before noon", + "Exclusive online offer: 25% off on all orders", + "Seasonal clearance sale: Huge discounts on winter wear", + "Refer a friend and both get 20% off on your next purchase", + "Summer sale: Save up to 40% on swimwear and beach accessories", + "Birthday special: 25% off for birthday month purchases", + "Bundle deal: Buy 3 items and get the cheapest one free", + "Veterans Day promotion: Extra 15% off for military personnel", + "First-time buyer discount: Save $10 on your initial order", + "Holiday savings: Special discount codes for festive season", + "Employee appreciation week: 20% off for all staff members", + "Join our loyalty program and get 10% off on all future purchases" + ], + "description": "This column is about the description of the discount offered on a product in the public product table." + }, + { + "input": "public product_inventory variant", + "examples": [ + "Size: Large, Color: Blue", + "Size: Medium, Color: Red", + "Size: Small, Color: Yellow", + "Style: Casual, Color: Green", + "Style: Formal, Color: Black", + "Material: Cotton, Color: White", + "Material: Denim, Color: Blue", + "Material: Leather, Color: Brown", + "Size: XL, Color: Gray", + "Size: XS, Color: Pink", + "Style: Sporty, Color: Red", + "Pattern: Striped, Color: Blue", + "Pattern: Floral, Color: Pink", + "Pattern: Checkered, Color: Green", + "Size: 42, Color: Black", + "Size: 38, Color: White", + "Material: Silk, Color: Red", + "Material: Wool, Color: Gray", + "Style: Bohemian, Color: Purple", + "Size: 8, Color: Orange" + ], + "description": "This column is about storing the different variants of products in the product inventory. Variants could include different sizes, colors, styles, or other variations of a particular product." + }, + { + "input": "public readme title", + "examples": [ + "Getting Started with Project X", + "User Guide for Application Y", + "Introducing Our Latest Release: Version 2.0", + "Exploring the Features of Product Z", + "How to Install and Configure the Software", + "Understanding Data Analysis in Project A", + "Maximizing Efficiency with Tool B", + "Welcome to Our Open Source Project", + "Mastering the Basics of Framework C", + "Best Practices for Project Management", + "Tips and Tricks for Effective Collaboration", + "Unlocking the Power of AI in Project D", + "Navigating the Interface of Tool E", + "Meet the Team Behind the Project", + "Troubleshooting Common Issues in Application F", + "Enhancing Security Measures for Platform G", + "The Ultimate Guide to Integration with System H", + "Optimizing Performance in Solution I", + "Creating Custom Extensions for Library J", + "Stay Updated with Our Project News" + ], + "description": "This column is about storing the title of the public readme document for the project. It is likely used to provide a concise and informative title for the publicly accessible project readme, which may contain important information about the project, its features, and how to use it." + }, + { + "input": "public readme url", + "examples": [ + "https://github.com/username/project/blob/main/README.md", + "https://gitlab.com/username/project/-/blob/master/README.md", + "https://bitbucket.org/username/project/raw/master/README.md", + "https://dev.to/username/project", + "https://about.gitlab.com/handbook/engineering/development/readmes/", + "https://www.digitalocean.com/community/tutorials/how-to-write-a-readme", + "https://www.npmjs.com/package/package-name", + "https://pypi.org/project/package-name/", + "https://docs.docker.com/docker-hub/builds/#resource-readme", + "https://www.redhat.com/en/topics/cloud-computing/what-is-readme", + "https://www.codespaces.com/docs/github/writing-a-readme.html", + "https://docs.microsoft.com/en-us/powershell/scripting/developer/module/how-to-write-doc-help", + "https://developer.mozilla.org/en-US/docs/Learn/Server-side/Express_Nodejs", + "https://www.ruby-lang.org/en/documentation/", + "https://docs.python.org/3/tutorial/", + "https://www.ibm.com/docs/en/zos/2.4.1?topic=concepts/readme", + "https://developer.android.com/guide", + "https://www.jetbrains.com/help/idea/meet-intellij-idea.html#whatsnew", + "https://docs.oracle.com/en/database/oracle/oracle-database/", + "https://help.sap.com/viewer/p/SAP_BW_CONNECTOR" + ], + "description": "This column is about storing the URL of the public readme file associated with the project. The readme file is likely to contain information about the project's purpose, functionality, setup instructions, and other relevant details for users or developers." + }, + { + "input": "public shoppable title", + "examples": [ + "Handmade Leather Wallet", + "Vintage Floral Dress", + "Eco-Friendly Bamboo Toothbrush Set", + "Online Yoga Classes Subscription", + "Wireless Noise-Canceling Headphones", + "Customized Family Portrait Painting", + "Organic Cotton Bedding Set", + "Gourmet Cooking Class Experience", + "Handcrafted Ceramic Mug", + "Ethically Sourced Gemstone Necklace", + "Smart Home Security System", + "Personalized Handwritten Love Letter", + "Artisanal Chocolate Truffle Box", + "Sustainable Bamboo Cutting Board", + "Beginner's Acrylic Painting Kit", + "Remote Personal Training Sessions", + "Natural Skincare Gift Set", + "Limited Edition Graphic Print T-shirt", + "Local Farm Fresh Produce Delivery", + "Handwoven Bohemian Area Rug" + ], + "description": "This column is about the title of shoppable items available for the public on the platform. These items could be products, services, or other offerings that users can browse and purchase." + }, + { + "input": "public shoppable title_en", + "examples": [ + "Vintage Leather Handbag", + "Wireless Bluetooth Earbuds", + "Organic Cotton T-shirt", + "Handcrafted Wooden Desk Organizer", + "Sustainable Bamboo Toothbrush Set", + "Eco-Friendly Reusable Water Bottle", + "Men's Classic Leather Wallet", + "Women's Linen Summer Dress", + "Artisanal Ceramic Coffee Mug", + "Silver Charm Bracelet", + "Retro Polaroid Instant Camera", + "Luxury Scented Soy Candle", + "Minimalist Stainless Steel Watch", + "Handwoven Rattan Basket", + "Travel-Friendly Packing Cubes Set", + "Natural Gemstone Pendant Necklace", + "Designer Aviator Sunglasses", + "Gourmet Chocolate Gift Box", + "Smart Home Security Camera System", + "Fitness Tracker with Heart Rate Monitor" + ], + "description": "This column is for storing the English title of shoppable items in a public context, such as products that can be purchased on the platform." + }, + { + "input": "public shoppable description", + "examples": [ + "Discover the latest trend in fashion with our new collection of designer handbags. Limited stock available!", + "Get your hands on the perfect gift for your loved ones this holiday season. Buy now and enjoy free gift wrapping!", + "Looking for a comfortable and stylish outfit for your next workout session? Check out our new activewear line!", + "Upgrade your home office with our ergonomic desk chair. Available in multiple colors to suit your style.", + "Make a fashion statement with our statement earrings. Handcrafted with care for a unique look.", + "Don't miss out on our exclusive sale - up to 50% off on selected items. Limited time offer!", + "Planning a special dinner? Our gourmet cooking set has everything you need to impress your guests.", + "Stay warm and cozy this winter with our soft fleece blankets. Perfect for movie nights at home.", + "Get ready for a beach day with our trendy swimsuits. High-quality fabric for a comfortable fit.", + "Transform your living room with our decorative throw pillows. Choose from a variety of patterns and colors.", + "Complete your skincare routine with our organic beauty products. Cruelty-free and sustainable.", + "Protect your eyes in style with our polarized sunglasses. UV protection for sunny days.", + "Elevate your morning coffee routine with our premium coffee beans. Ethically sourced and freshly roasted.", + "Bring a touch of nature into your home with our indoor plant collection. Easy to care for and beautiful to look at.", + "Experience the ultimate relaxation with our luxurious spa bath set. Treat yourself to a spa day at home.", + "Upgrade your tech game with our latest gadgets and accessories. Stay connected in style.", + "Start your day right with our nutritious breakfast bundle. Energize your mornings with a healthy meal.", + "Add a pop of color to your wardrobe with our vibrant scarves. Versatile and fashionable.", + "Make meal prep a breeze with our durable kitchen utensil set. Cooking made easy.", + "Travel in style with our lightweight and durable luggage collection. Explore the world with ease." + ], + "description": "This column is about the description of shoppable items available for purchase on the platform. It may include details such as the product features, pricing, availability, and any other information relevant to potential buyers." + }, + { + "input": "public shoppable description_en", + "examples": [ + "This elegant dress is perfect for special occasions.", + "A versatile bag that complements any outfit.", + "Upgrade your kitchen with this modern espresso machine.", + "Stay cozy in this soft and luxurious blanket.", + "Add a pop of color to your living room with this vibrant pillow.", + "Achieve a flawless complexion with this high-quality foundation.", + "These stylish sneakers are a must-have for every fashionista.", + "Bring nature indoors with this beautiful potted plant.", + "Enhance your workspace with this ergonomic office chair.", + "Treat yourself to a spa-like experience with this plush bathrobe.", + "Organize your jewelry collection with this elegant jewelry box.", + "Enjoy a relaxing bath with this soothing bath bomb set.", + "Stay hydrated on-the-go with this insulated water bottle.", + "Transform your home decor with this artistic wall tapestry.", + "Protect your eyes in style with these trendy sunglasses.", + "Create delicious meals with this professional chef's knife set.", + "Unwind after a long day with this aromatherapy scented candle.", + "Upgrade your workout gear with these breathable leggings.", + "Accessorize your outfit with this chic statement necklace.", + "Keep your skin glowing with this nourishing face serum." + ], + "description": "This column contains the English version of the description for a shoppable item in the public domain. The description provides additional information about the shoppable item for users who speak English." + }, + { + "input": "public shoppable_access_policies role", + "examples": [ + "admin", + "manager", + "editor", + "viewer", + "customer_support", + "supplier", + "developer", + "designer", + "member", + "moderator", + "premium_member", + "guest", + "affiliate", + "tester", + "analyst", + "assistant", + "coordinator", + "publisher", + "buyer", + "seller" + ], + "description": "This column 'role' in the public.shoppable_access_policies table likely stores the different roles or access levels that control permissions related to shoppable features on the platform, such as viewing, editing, or managing products, orders, and memberships. These roles may define what actions users with different levels of access are allowed to perform within the shoppable section of the platform." + }, + { + "input": "public songs title", + "examples": [ + "Dancing in the Moonlight", + "Summer of '69", + "Bohemian Rhapsody", + "Shape of You", + "Smells Like Teen Spirit", + "Can't Stop the Feeling", + "Sweet Child o' Mine", + "Girls Just Want to Have Fun", + "Billie Jean", + "Livin' on a Prayer", + "Sorry", + "Havana", + "Sweet Home Alabama", + "Uptown Funk", + "I Will Always Love You", + "Hotel California", + "Superstition", + "Brown Eyed Girl", + "All About That Bass", + "Walking on Sunshine" + ], + "description": "This column is about storing the title of a song in the database table that is part of a project for managing a platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions, with features like tagging, comments, notifications, and notifications." + }, + { + "input": "public songs lyrics", + "examples": [ + "I'm feeling like a star, you can't stop my shine", + "In the end, it doesn't even matter", + "Dancing in the dark, with you between my arms", + "I got that sunshine in my pocket", + "I'm a survivor, I'm not gon' give up", + "We found love in a hopeless place", + "Don't stop believin', hold on to that feelin'", + "Cause baby, you're a firework", + "I will always love you", + "I've got the eye of the tiger", + "It's like you're always stuck in second gear", + "Said I'd catch you if you fall", + "Cause all of me, loves all of you", + "Every little thing is gonna be alright", + "I'm on the pursuit of happiness", + "This is the rhythm of the night", + "I wanna dance with somebody", + "No one, no one, no one", + "Hello, it's me", + "You were my sun, you were my earth" + ], + "description": "This column is about storing the lyrics of songs in the database table for the project related to managing a platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions, with features like tagging, comments, and notifications." + }, + { + "input": "public songs melody", + "examples": [ + "C G Am F", + "E A D Bm", + "F#m D A E", + "G Em C D", + "D A Bm G", + "A E D A", + "Am Fmaj7 C G", + "Bm G D A", + "Cmaj7 G Em F", + "Dm Am G C", + "G C D G", + "F Bb C F", + "E B E A", + "D A Em G", + "A D E A", + "Bm F#m D A", + "C G Am F", + "G D Em C", + "D A G D", + "Em C G D" + ], + "description": "This column is about storing the musical arrangement or tune of the song. It represents the composition of notes and rhythms that create the melody of the song." + }, + { + "input": "public songs category", + "examples": [ + "Pop", + "Rock", + "Hip-hop", + "Country", + "R&B", + "Classical", + "Electronic", + "Jazz", + "Reggae", + "Folk", + "Indie", + "Blues", + "Metal", + "Punk", + "Alternative", + "Dance", + "Soul", + "Funk", + "Gospel", + "Rap" + ], + "description": "This column is about categorizing the songs in the database." + }, + { + "input": "public songs slug", + "examples": [ + "never-gonna-give-you-up", + "bohemian-rhapsody", + "shape-of-you", + "black-or-white", + "sweet-child-o-mine", + "uptown-funk", + "smooth-criminal", + "billie-jean", + "hotel-california", + "thinking-out-loud", + "stairway-to-heaven", + "dancing-queen", + "i-will-always-love-you", + "superstition", + "another-brick-in-the-wall", + "baby-one-more-time", + "livin-on-a-prayer", + "wonderwall", + "crazy-in-love", + "eye-of-the-tiger" + ], + "description": "This column is about storing a unique identifier or permalink for each song in the database table." + }, + { + "input": "public special_receivers email", + "examples": [ + "john.doe@example.com", + "sarah.smith@gmail.com", + "michael_jones@hotmail.com", + "emily_wong@yahoo.com", + "david.brown@example.com", + "lisa.miller@gmail.com", + "alex.smith@example.com", + "jennifer.wilson@gmail.com", + "brian_green@yahoo.com", + "natalie.lawson@example.com", + "kevin.nguyen@gmail.com", + "stephanie.white@example.com", + "chris.johnson@hotmail.com", + "amanda.taylor@gmail.com", + "peter.carter@yahoo.com", + "victoria.hall@example.com", + "gregory.ramirez@gmail.com", + "mia.collins@hotmail.com", + "nathan.rodriguez@example.com", + "olivia.perez@gmail.com" + ], + "description": "This column is about storing the email addresses of special recipients who have opted in to receive specific notifications or updates related to the platform's events, articles, bookings, memberships, orders, products, expenses, and user interactions." + }, + { + "input": "public special_receivers target_email", + "examples": [ + "john.doe@example.com", + "alice.smith@gmail.com", + "customer.support@company.com", + "events@eventplanners.com", + "article_notifications@news.com", + "bookings.special@hotel.com", + "memberships@community.org", + "orders.notifications@onlineshop.com", + "product.updates@techcompany.com", + "expenses.approval@finance.com", + "user.interactions@platform.com", + "marketing.team@company.com", + "vip.clients@luxurybrand.com", + "feedback@surveytool.com", + "info@startupincubator.org", + "support@onlineservice.com", + "updates@socialmedia.com", + "notifications@healthapp.com", + "partnerships@techstartup.com", + "subscribers@newsletter.com" + ], + "description": "This column is about storing the email address of the special receivers for notifications or communication, specifically targeted within the context of the platform's various functionalities such as events, articles, bookings, memberships, orders, products, expenses, and user interactions." + }, + { + "input": "public special_senders email", + "examples": [ + "eventmanager@example.com", + "vipwriter@specialdomain.com", + "bookingadministrator@companyname.com", + "membershipsupport_agent@example.org", + "notificationboss@notificationhub.com", + "ordersupervisor@ecommerceplatform.com", + "productmanager@productline.com", + "financeconsultant@financialservices.com", + "feedbackcollector@surveycompany.com", + "customeradvocate@customersupport.com", + "eventplanner@specialevents.com", + "contentcurator@blogsite.com", + "bookingspecialist@travelagency.com", + "membershipcoordinator@membersportal.com", + "notificationengineer@techsolutions.com", + "orderspecialist@retailstore.com", + "productdesigner@manufacturingcompany.com", + "financeanalyst@investmentfirm.com", + "feedbackmoderator@socialmedia.com", + "customerrelations@onlineshopping.com" + ], + "description": "This column is for storing the email addresses of special senders in the platform. These special senders may have specific privileges or roles related to events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions within the platform." + }, + { + "input": "public special_senders student_id", + "examples": [ + "STU1234", + "STU5678", + "STU9012", + "STU3456", + "STU7890", + "STU2345", + "STU6789", + "STU0123", + "STU4567", + "STU8901", + "STU5432", + "STU8765", + "STU2109", + "STU6543", + "STU0987", + "STU4321", + "STU7654", + "STU3210", + "STU6543", + "STU9876" + ], + "description": "This column is about storing the unique identifier for students in the platform who are considered as special senders for notifications or messages." + }, + { + "input": "public special_senders keycloak_id", + "examples": [ + "jsmith123", + "admin_user", + "special_sender_01", + "keycloak_987", + "vip_sender", + "keycloak_abc", + "manager_xyz", + "privileged_user", + "123keycloak", + "special_guru", + "sender_007", + "keycloak_321", + "power_user_42", + "keycloak_def", + "top_sender_one", + "keycloak_888", + "key_user", + "special_knight", + "knight123", + "keycloak_abc123" + ], + "description": "This column is about storing the unique identifier (keycloak_id) associated with a special sender in the platform. Special senders could be users with specific privileges or roles within the system." + }, + { + "input": "public subscription_settings type", + "examples": [ + "Free", + "Basic", + "Premium", + "Trial", + "Student", + "Family", + "Business", + "Lifetime", + "Silver", + "Gold", + "Platinum", + "Standard", + "Plus", + "Enterprise", + "VIP", + "Exclusive", + "Monthly", + "Annual", + "Quarterly", + "Student Premium" + ], + "description": "This column is about the type of subscription settings for the public users in the platform. It may include different types of subscription plans or settings that users can choose from for accessing certain features or services." + }, + { + "input": "public tags name", + "examples": [ + "event", + "article", + "booking", + "membership", + "notification", + "order", + "product", + "expense", + "interaction", + "featured", + "vip", + "urgent", + "pending", + "completed", + "technology", + "fashion", + "food", + "sports", + "entertainment" + ], + "description": "This column is about storing the tags associated with different entities (events, articles, bookings, memberships, notifications, orders, products, expenses, user interactions) in the platform. It contains the name of the tags used for categorizing or labeling the various items or interactions within the system." + }, + { + "input": "public tags name_en", + "examples": [ + "Concerts", + "Technology", + "Travel", + "Food", + "Fitness", + "Fashion", + "Science", + "Business", + "Art", + "Health", + "Education", + "Environment", + "Sports", + "Music", + "Movies", + "Crafts", + "Photography", + "Books", + "Cooking", + "Pets" + ], + "description": "This column is about storing the English names of tags used in the system for categorizing different items such as events, articles, bookings, memberships, products, expenses, etc. across the platform." + }, + { + "input": "public tags color", + "examples": [ + "Red", + "Blue", + "Green", + "Yellow", + "Purple", + "Orange", + "Pink", + "Black", + "White", + "Brown", + "Gray", + "Teal", + "Navy", + "Magenta", + "Turquoise", + "Lavender", + "Maroon", + "Gold", + "Silver", + "Indigo" + ], + "description": "This column is about representing the color tags associated with the items in the platform, such as events, articles, bookings, memberships, products, expenses, etc. The color tags are used for categorizing and visually representing these items within the platform." + }, + { + "input": "public user_inventory student_id", + "examples": [ + "STU001", + "STU002", + "STU003", + "STU004", + "STU005", + "STU006", + "STU007", + "STU008", + "STU009", + "STU010", + "STU011", + "STU012", + "STU013", + "STU014", + "STU015", + "STU016", + "STU017", + "STU018", + "STU019", + "STU020" + ], + "description": "This column is the unique identifier for each student in the user inventory table." + }, + { + "input": "public user_inventory_item student_id", + "examples": [ + "STU12345", + "STU56789", + "STU24680", + "STU10293", + "STU38475", + "STU61529", + "STU74920", + "STU83647", + "STU59472", + "STU30928", + "STU46105", + "STU72836", + "STU92374", + "STU17839", + "STU65092", + "STU48261", + "STU93568", + "STU29374", + "STU50697", + "STU74963" + ], + "description": "This column is about storing the unique identifier for the student related to the user inventory item. It likely serves as a foreign key to link the inventory item to a specific student in the system." + }, + { + "input": "public user_inventory_item name", + "examples": [ + "Summer BBQ Party", + "Red Leather Handbag", + "Tech Gadgets Sale", + "Healthy Recipe E-book", + "Vintage Vinyl Records Collection", + "Fitness Tracker Watch", + "Virtual Yoga Classes", + "Customized Wedding Invitations", + "Sustainable Fashion Workshop", + "DIY Home Improvement Guide", + "Local Farmers Market", + "Online Photography Course", + "Kids Educational Toys Bundle", + "Live Music Concert Tickets", + "Personal Finance Management App", + "Handmade Ceramic Mugs Set", + "Travel Essentials Bundle", + "Gourmet Cooking Class Voucher", + "Career Development Webinar Series", + "Green Living Eco-Friendly Products" + ], + "description": "This column is about storing the name or title of the inventory item belonging to a user in the public user profile. It could represent the name of an event, article, product, or any other item that the user is managing within the platform." + }, + { + "input": "public user_inventory_item description", + "examples": [ + "Red velvet cake for birthday events", + "Gold membership with access to exclusive content", + "Nike Air Max 270 sneakers in black and white", + "2021 MacBook Pro with 16GB RAM and 512GB SSD", + "Notification: Your order has been shipped", + "Organic cotton T-shirt in blue color", + "Workshop registration for digital marketing strategies", + "Book: 'The Power of Habit' by Charles Duhigg", + "Expenses report for August 2022", + "Order: 2 sets of dinner plates and cutlery", + "Diamond earrings with certificate of authenticity", + "Product: Smart home security camera with motion detection", + "Luxury staycation package for two nights", + "Notification: Don't miss out on our latest offers!", + "Membership upgrade to VIP status", + "Event ticket for music concert on July 15th", + "High-performance gaming laptop with RGB keyboard", + "Article: 10 tips for better sleep hygiene", + "Appointment booking for a haircut and styling", + "User interaction: Liked post by user123" + ], + "description": "This column is about providing a description or details of the user's inventory item in the platform for events, articles, bookings, memberships, notifications, orders, products, expenses, and user interactions. It may include information about the item's features, specifications, or any other relevant details." + }, + { + "input": "public user_inventory_item image_url", + "examples": [ + "https://example.com/images/item123.jpg", + "https://example.com/images/item456.png", + "https://cdn.site.com/inventory/items/item789.jpg", + "https://assets.mysite.net/images/inventory/item101.png", + "https://uploads.mysite.com/user1/items/item555.jpg", + "https://images.shop.com/user2/items/item999.png", + "https://cdn.storexyz.com/inventory/item234.jpg", + "https://images.mystore.com/items/item777.png", + "https://cdn.shop123.com/user3/items/item222.jpg", + "https://assets.mysite.net/images/inventory/item333.png", + "https://uploads.mysite.com/user4/items/item888.jpg", + "https://images.shop.com/user5/items/item444.png", + "https://cdn.storexyz.com/inventory/item555.jpg", + "https://images.mystore.com/items/item666.png", + "https://cdn.shop123.com/user6/items/item777.jpg", + "https://assets.mysite.net/images/inventory/item888.png", + "https://uploads.mysite.com/user7/items/item999.jpg", + "https://images.shop.com/user8/items/item111.png", + "https://cdn.storexyz.com/inventory/item222.jpg", + "https://images.mystore.com/items/item333.png" + ], + "description": "This column is about storing the image URL of the inventory items associated with users in the system. It likely holds the file path or URL pointing to the image file representing the inventory item." + }, + { + "input": "public user_inventory_item variant", + "examples": [ + "Red", + "Large", + "Version 2", + "Silver", + "Small", + "Black", + "Standard Edition", + "XL", + "Gold", + "Limited Edition", + "White", + "Classic", + "Rose Gold", + "Pro Version", + "Green", + "Special Edition", + "Blue", + "Compact", + "Premium", + "Space Gray" + ], + "description": "This column is about storing the variant of a specific inventory item belonging to a user in the public user inventory. It could specify the specific type, version, model, or variation of the inventory item." + } +] \ No newline at end of file diff --git a/src/routes/(app)/admin/qr/+page.server.ts b/src/routes/(app)/admin/qr/+page.server.ts index 7a3d88d93..89fd3e9fc 100644 --- a/src/routes/(app)/admin/qr/+page.server.ts +++ b/src/routes/(app)/admin/qr/+page.server.ts @@ -23,10 +23,10 @@ export const load: PageServerLoad = async ({ locals, url }) => { tickets: { some: { stock: { - gt: 0 - } - } - } + gt: 0, + }, + }, + }, }, }); @@ -40,10 +40,10 @@ export const load: PageServerLoad = async ({ locals, url }) => { tickets: { some: { stock: { - gt: 0 - } - } - } + gt: 0, + }, + }, + }, }, orderBy: { startDatetime: "desc", diff --git a/src/routes/(app)/events/[slug]/+page.svelte b/src/routes/(app)/events/[slug]/+page.svelte index f1060f951..b7ed4e444 100644 --- a/src/routes/(app)/events/[slug]/+page.svelte +++ b/src/routes/(app)/events/[slug]/+page.svelte @@ -29,7 +29,7 @@ class="btn btn-square btn-ghost btn-md" title="QR Scanner" > - + {/if} {#if data.canEdit} diff --git a/src/routes/(app)/events/[slug]/scan/[consumable]/+page.svelte b/src/routes/(app)/events/[slug]/scan/[consumable]/+page.svelte index 6a0b2bdc7..1eff11fd2 100644 --- a/src/routes/(app)/events/[slug]/scan/[consumable]/+page.svelte +++ b/src/routes/(app)/events/[slug]/scan/[consumable]/+page.svelte @@ -56,7 +56,7 @@
+ {m.events_camera_init_failure()}
Error: {errorMessage}
No events found
-Try changing your search term
+{m.events_no_events_found()}
+{m.events_change_search_term()}
{m.events_scanDescription()}
+ {#if error} ++ {error} +
+ {/if}- {member.firstName} - {member.lastName} - ({member.studentId}) -
++ {member.firstName} + {member.lastName} + ({member.studentId}) +
+