{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "enums",
  "$defs": {
    "genre": { "type": "string", "enum": ["ambient", "electronic", "synthwave", "hiphop", "cinematic", "rock", "metal", "pop", "jazz", "experimental", "other"] },
    "mood": { "type": "string", "enum": ["nocturnal", "still", "driving", "melancholic", "euphoric", "tense", "warm", "cold", "playful", "epic"] },
    "musicalKey": { "type": ["string", "null"], "enum": ["C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B", "Cm", "C#m", "Dm", "D#m", "Em", "Fm", "F#m", "Gm", "G#m", "Am", "A#m", "Bm", null] },
    "releaseType": { "type": "string", "enum": ["single", "ep", "album"] },
    "category": { "type": "string", "enum": ["post", "tutorial", "behind-the-scenes"] },
    "reviewType": { "type": "string", "enum": ["gear", "plugin", "pack"] },
    "platform": { "type": "string", "enum": ["spotify", "youtube", "youtubeMusic", "soundcloud", "bandcamp", "appleMusic"] },
    "background": { "type": "string", "enum": ["none", "aurora", "mesh", "cover", "image"] },
    "surface": { "type": "string", "enum": ["solid", "glass"] },
    "layout": { "type": "string", "enum": ["flow", "bento", "landing"] },
    "fxEffect": { "type": "string", "enum": ["scanlines", "grain", "vignette"] }
  }
}
