Skip to content

Festival Structure

Woody edited this page May 24, 2024 · 4 revisions

Overview

OpenFestival aims to provide a beautiful and user-friendly app for Users while maintaining a plain and straightforward data structure. The data driving the app is designed to be simple, enabling future developers to build on this system. Our goal is to propose this as the base standard for maintaining an open-source database of festival schedules accessible to everyone.

Key Principles

  1. Simplicity: The data structure is kept plain to ensure ease of understanding and editing.
  2. Flexibility: Use common plain-text formats to ease editing and improve portability.
  3. Openness: The project encourages community contributions and aims to be a standard for open-source festival schedule data.

Folder and File Structure

Testivl/2024/
├── generalInfo.yaml
├── stages.yaml
├── contactInfo.yaml
├── rulesAndGuidelines.md
├── schedules/
│   ├── 05-25-2024.yaml
│   ├── 05-26-2024.yaml
│   └── 05-27-2024.yaml
└── artists/
    ├── Sunspear.md
    ├── Subsonic.md
    └── Rhythmbox.md

Example File Contents

Testival/generalInfo.yaml

# General Information
name: "Testival"
address: "123 Festival Road, Music City"
timeZone: "America/Seattle"
  
# Images
imageURL: "http://example.com/event-image.jpg"
siteMapImageURL: "http://example.com/site-map.jpg"

# Colors
colorScheme:
  primaryColor: "#FF5733"
  workshopsColor: "#C70039"

Testival/2024/stages.yaml

- name: "Mystic Grove"
  color: "#1DB954"
  imageURL: "http://example.com/mystic-grove.jpg"
  
- name: "Bass Haven"
  color: "#FF5733"
  imageURL: "http://example.com/bass-haven.jpg"
  
- name: "Tranquil Meadow"
  color: "#4287f5"
  imageURL: "http://example.com/tranquil-meadow.jpg"

Testival/2024/contactInfo.yaml

- phoneNumber: "+1234567890" 
  title: "General Info" 
   
- phoneNumber: "+0987654321" 
  title: "Emergency" 
  numberDescription: "For emergencies only"

Testival/2024/schedules/05-25-2024.yaml

Bass Haven:
  - time: "10:00 PM"
    artist: "Prism Sound"
    
  - time: "11:30 PM"
    title: "Subsonic B2B Sylvan"
    artists: 
       - "Subsonic"
       - "Sylvan Beats"

  - time: "12:30 AM"
    endTime: "2:00 AM"
    artist: "Space Chunk"

Mystic Grove:
  - time: "4:30 PM"
    artist: "Sunspear"

  - time: "6:30 PM"
    artist: "Phantom Groove"

  - time: "10:30 PM"
    artist: "Oaktrail"

  - time: "12:00 AM"
    endTime: "4:00 AM" 
    artist: "Rhythmbox"

Tranquil Meadow:
  - time: "3:00 PM"
    artist: "Float On"
    
  - time: "4:30 PM"
    artist: "Floods"

  - time: "04:00 PM"
  - endtime: "6:00 PM"
    artist: "Overgrowth"

  - time: "1:00 AM"
    endtime: "2:00 AM"
    artist: "The Sleepies"
    title: "The Wind Down"

Testival/2024/artists/Subsonic.md

---
imageURL: "http://example.com/subsonic.jpg"
links:
  - "http://soundcloud.com/subsonic"
  - "http://facebook.com/subsonic"
---

Subsonic delivers powerful bass-driven music that shakes the ground and moves the crowd, known for their high-energy performances and deep, resonant beats.