Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Latest commit

 

History

History
55 lines (49 loc) · 696 Bytes

Useful JSON Templates.md

File metadata and controls

55 lines (49 loc) · 696 Bytes

The basic template that every song needs

{
    "name": "",
    "truename": 0,
    "artists": "",
    "altnames": "",
    "link": "",
    "versions": [],
}

File Versions template

{
"name" : "",
"info" : "",
"source" : "",
"sourcelinks": ""
}

Media Info template

"date": "",
"truedate" : ,
"uses": ""

The basic template + source and medias

{
    "name": "",
    "truename": 0,
    "artists": "",
    "altnames": "",
    "link": "",
    "versions": [
        {
            "name": "",
            "info": "",
            "source": "",
            "sourcelinks": ""
        }
    ],
    "": {
        "date": "",
        "truedate": ,
        "uses": ""
    }
}