{"id":20820719,"url":"https://github.com/webdad/lib-songbeamer","last_synced_at":"2026-05-26T20:07:41.168Z","repository":{"id":143885830,"uuid":"116277607","full_name":"WebDaD/lib-songbeamer","owner":"WebDaD","description":"A Module for transforming [SongBeamer](https://www.songbeamer.de/) Song-Files and Ablaufplan-Files into JSON and Back","archived":false,"fork":false,"pushed_at":"2018-01-05T13:23:42.000Z","size":896,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-18T18:24:47.338Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WebDaD.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-04T15:43:56.000Z","updated_at":"2021-05-31T19:40:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"315ab8d5-99b4-4d69-9989-0bb3f025825d","html_url":"https://github.com/WebDaD/lib-songbeamer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebDaD%2Flib-songbeamer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebDaD%2Flib-songbeamer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebDaD%2Flib-songbeamer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebDaD%2Flib-songbeamer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WebDaD","download_url":"https://codeload.github.com/WebDaD/lib-songbeamer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243166980,"owners_count":20247008,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-17T22:09:56.353Z","updated_at":"2025-12-11T20:37:16.765Z","avatar_url":"https://github.com/WebDaD.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lib-Songbeamer\r\n\r\nA Module for transforming [SongBeamer](https://www.songbeamer.de/) Song-Files and Ablaufplan-Files into JSON and Back\r\n\r\n## PSA\r\n\r\nThis Module was written for a specific purpose:\r\n\r\n- Load all Ablaufplan-Files in a Folder into JSON, in order to perform some stuff with the json.\r\n\r\nAll other Things (write back to file, songs) were put in for \"completion\"-reasons.\r\n\r\nStill expect much stuff to be missing.\r\n\r\nBut i am looking forward to improve this, so write them issues, or even butter:\r\n\r\n**Make some Pull-Requests :-)**\r\n\r\n## Installation\r\n\r\n... is as simple as `npm install lib-songbeamer`\r\n\r\n## Usage\r\n\r\nFirst, require the Module:\r\n\r\n`const songbeamer = require('lib-songbeamer')`\r\n\r\nThen you may perform the following actions:\r\n\r\n### Read in a Song-File (.sng) into json\r\n\r\n```js\r\nsongbeamer.song2JSON('examples/song.sng', function (err, json) {\r\n  if (err) {\r\n    console.error(err)\r\n  } else {\r\n    // Do Something with the JSON\r\n  }\r\n})\r\n```\r\n\r\n### Read in an Ablaufplan-File (.col) into json\r\n\r\n```js\r\nsongbeamer.ablauf2JSON('examples/ablaufplan.col', function (err, json) {\r\n  if (err) {\r\n    console.error(err)\r\n  } else {\r\n    // Do Something with the JSON\r\n  }\r\n})\r\n```\r\n\r\n### Write Some JSON into a Song-File (.sng)\r\n\r\n```js\r\nsongbeamer.json2Song(json, 'examples/song.sng', function (err) {\r\n  if (err) {\r\n    console.error(err)\r\n  } else {\r\n    // All was good\r\n  }\r\n})\r\n```\r\n\r\nRemember: The JSON must be fitting (see Documentation\u003eJSON)\r\n\r\n### Write Some JSON into an Ablaufplan-File (.col)\r\n\r\n```js\r\nsongbeamer.json2Ablauf(json, 'examples/ablaufplan.col', function (err) {\r\n  if (err) {\r\n    console.error(err)\r\n  } else {\r\n    // All was good\r\n  }\r\n})\r\n```\r\n\r\nRemember: The JSON must be fitting (see Documentation\u003eJSON)\r\n\r\n## Dependencies\r\n\r\nNone.\r\n\r\n## Documentation for Developers\r\n\r\nHere be Some Infos to make this even better.\r\n\r\n### Libs\r\n\r\nClassDiagram:\r\n\r\n![The diagram](https://github.com/WebDaD/lib-songbeamer/raw/master/docs/classdiagram.png \"The class Diagram\")\r\n\r\nCan be found in docs/classdiagram.png\r\n\r\nAlso as editable plantUML-File.\r\n\r\nJSDOC. See also HTML Version @ docs/jsdoc/index.html\r\n\r\n#### index\r\nPacks the libs\r\n\r\n**Requires**: \u003ccode\u003emodule:song\u003c/code\u003e, \u003ccode\u003emodule:ablauf\u003c/code\u003e, \u003ccode\u003emodule:fs\u003c/code\u003e  \r\n**Version**: 1.0  \r\n**Author**: Dominik Sigmund  \r\n\r\n* [index](#module_index)\r\n    * [.song2JSON(file, callback)](#module_index.song2JSON) ÔçÆ\r\n    * [.ablauf2JSON(file, callback)](#module_index.ablauf2JSON) ÔçÆ\r\n    * [.json2Song(object, file, callback)](#module_index.json2Song) ÔçÆ\r\n    * [.json2Ablauf(object, file, callback)](#module_index.json2Ablauf) ÔçÆ\r\n\r\n\u003ca name=\"module_index.song2JSON\"\u003e\u003c/a\u003e\r\n\r\n##### index.song2JSON(file, callback) ÔçÆ\r\nRead in Song-File and callback a json\r\n\r\n**Kind**: static method of [\u003ccode\u003eindex\u003c/code\u003e](#module_index)  \r\n**Returns**: Nothing  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| file | \u003ccode\u003estring\u003c/code\u003e | Path to a Song-File |\r\n| callback | [\u003ccode\u003ejsonSongCallback\u003c/code\u003e](#index..jsonSongCallback) | A Callback with an error or the Json |\r\n\r\n\u003ca name=\"module_index.ablauf2JSON\"\u003e\u003c/a\u003e\r\n\r\n##### index.ablauf2JSON(file, callback) ÔçÆ\r\nRead in Ablaufplan-File and callback a json\r\n\r\n**Kind**: static method of [\u003ccode\u003eindex\u003c/code\u003e](#module_index)  \r\n**Returns**: Nothing  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| file | \u003ccode\u003estring\u003c/code\u003e | Path to a Ablaufplan-File |\r\n| callback | [\u003ccode\u003ejsonAblaufCallback\u003c/code\u003e](#index..jsonAblaufCallback) | A Callback with an error or the Json |\r\n\r\n\u003ca name=\"module_index.json2Song\"\u003e\u003c/a\u003e\r\n\r\n##### index.json2Song(object, file, callback) ÔçÆ\r\nRead in JSON, Write to File and callback possible Errors\r\n\r\n**Kind**: static method of [\u003ccode\u003eindex\u003c/code\u003e](#module_index)  \r\n**Returns**: Nothing  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| object | \u003ccode\u003eobject\u003c/code\u003e | A JSON-Song-Object |\r\n| file | \u003ccode\u003estring\u003c/code\u003e | Path to a Song-File |\r\n| callback | [\u003ccode\u003eerrorCallback\u003c/code\u003e](#index..errorCallback) | A Callback with an error or nothing |\r\n\r\n\u003ca name=\"module_index.json2Ablauf\"\u003e\u003c/a\u003e\r\n\r\n##### index.json2Ablauf(object, file, callback) ÔçÆ\r\nRead in JSON, Write to File and callback possible Errors\r\n\r\n**Kind**: static method of [\u003ccode\u003eindex\u003c/code\u003e](#module_index)  \r\n**Returns**: Nothing  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| object | \u003ccode\u003eobject\u003c/code\u003e | A JSON-Ablaufplan-Object |\r\n| file | \u003ccode\u003estring\u003c/code\u003e | Path to an Ablaufplan-File |\r\n| callback | [\u003ccode\u003eerrorCallback\u003c/code\u003e](#index..errorCallback) | A Callback with an error or nothing |\r\n\r\n#### song\r\n\r\nGets Json from and json to song-files\r\n\r\n**Version**: 1.0  \r\n**Author**: Dominik Sigmund  \r\n\r\n* [song](#module_song)\r\n    * _static_\r\n        * [.toJSON(data, callback)](#module_song.toJSON) ÔçÆ\r\n        * [.toFile(json, callback)](#module_song.toFile) ÔçÆ\r\n    * _inner_\r\n        * [~isCaption(text)](#module_song..isCaption) ÔçÆ \u003ccode\u003ebool\u003c/code\u003e\r\n\r\n\u003ca name=\"module_song.toJSON\"\u003e\u003c/a\u003e\r\n\r\n##### song.toJSON(data, callback) ÔçÆ\r\nGet Json from a string\r\n\r\n**Kind**: static method of [\u003ccode\u003esong\u003c/code\u003e](#module_song)  \r\n**Returns**: Nothing  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| data | \u003ccode\u003estring\u003c/code\u003e | String as delivered by fs.readFile |\r\n| callback | [\u003ccode\u003ejsonCallback\u003c/code\u003e](#song..jsonCallback) | A Callback with an error or the Json |\r\n\r\n\u003ca name=\"module_song.toFile\"\u003e\u003c/a\u003e\r\n\r\n##### song.toFile(json, callback) ÔçÆ\r\nWrite Json to a File String\r\n\r\n**Kind**: static method of [\u003ccode\u003esong\u003c/code\u003e](#module_song)  \r\n**Returns**: Nothing  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| json | \u003ccode\u003eobject\u003c/code\u003e | String as delivered by fs.readFile |\r\n| callback | [\u003ccode\u003estringCallback\u003c/code\u003e](#song..stringCallback) | A Callback with an error or the String as delivered to fs.writeFile |\r\n\r\n\u003ca name=\"module_song..isCaption\"\u003e\u003c/a\u003e\r\n\r\n##### song~isCaption(text) ÔçÆ \u003ccode\u003ebool\u003c/code\u003e\r\nChecks if a string is a caption (Vers, Bridge, Chorus, ...)\r\n\r\n**Kind**: inner method of [\u003ccode\u003esong\u003c/code\u003e](#module_song)  \r\n**Returns**: \u003ccode\u003ebool\u003c/code\u003e - - True, if is a caption, else false  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| text | \u003ccode\u003estring\u003c/code\u003e | A Line of Text |\r\n\r\n#### ablaufplan\r\n\r\nGets Json from and json to Ablaufplan-files\r\n\r\n**Version**: 1.0  \r\n**Author**: Dominik Sigmund  \r\n\r\n* [ablauf](#module_ablauf)\r\n    * _static_\r\n        * [.toFile(json, callback)](#module_ablauf.toFile) ÔçÆ\r\n    * _inner_\r\n        * [~regex](#module_ablauf..regex) ÔçÆ\r\n        * [~clean(text)](#module_ablauf..clean) ÔçÆ \u003ccode\u003eString\u003c/code\u003e\r\n        * [~color2Hex(color)](#module_ablauf..color2Hex) ÔçÆ \u003ccode\u003estring\u003c/code\u003e\r\n        * [~hex2Color(hex)](#module_ablauf..hex2Color) ÔçÆ \u003ccode\u003estring\u003c/code\u003e\r\n        * [~getType(caption, filename)](#module_ablauf..getType) ÔçÆ \u003ccode\u003estring\u003c/code\u003e\r\n        * [~colourNameToHex(colour)](#module_ablauf..colourNameToHex) ÔçÆ \u003ccode\u003estring\u003c/code\u003e\r\n\r\n\u003ca name=\"module_ablauf.toFile\"\u003e\u003c/a\u003e\r\n\r\n##### ablauf.toFile(json, callback) ÔçÆ\r\nWrite Json to a File String\r\n\r\n**Kind**: static method of [\u003ccode\u003eablauf\u003c/code\u003e](#module_ablauf)  \r\n**Returns**: Nothing  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| json | \u003ccode\u003eobject\u003c/code\u003e | String as delivered by fs.readFile |\r\n| callback | [\u003ccode\u003estringCallback\u003c/code\u003e](#ablauf..stringCallback) | A Callback with an error or the String as delivered to fs.writeFile |\r\n\r\n\u003ca name=\"module_ablauf..regex\"\u003e\u003c/a\u003e\r\n\r\n##### ablauf~regex ÔçÆ\r\nGet Json from a string\r\n\r\n**Kind**: inner constant of [\u003ccode\u003eablauf\u003c/code\u003e](#module_ablauf)  \r\n**Returns**: Nothing  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| data | \u003ccode\u003estring\u003c/code\u003e | String as delivered by fs.readFile |\r\n| callback | [\u003ccode\u003ejsonCallback\u003c/code\u003e](#ablauf..jsonCallback) | A Callback with an error or the Json |\r\n\r\n\u003ca name=\"module_ablauf..clean\"\u003e\u003c/a\u003e\r\n\r\n##### ablauf~clean(text) ÔçÆ \u003ccode\u003eString\u003c/code\u003e\r\nRemoves Strange Symbols from the Text for a better json\r\n\r\n**Kind**: inner method of [\u003ccode\u003eablauf\u003c/code\u003e](#module_ablauf)  \r\n**Returns**: \u003ccode\u003eString\u003c/code\u003e - - A cleaner bit of Text  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| text | \u003ccode\u003estring\u003c/code\u003e | A Bite of Text |\r\n\r\n\u003ca name=\"module_ablauf..color2Hex\"\u003e\u003c/a\u003e\r\n\r\n##### ablauf~color2Hex(color) ÔçÆ \u003ccode\u003estring\u003c/code\u003e\r\nTakes Color Information and returns a css-hex-representation\r\n\r\n**Kind**: inner method of [\u003ccode\u003eablauf\u003c/code\u003e](#module_ablauf)  \r\n**Returns**: \u003ccode\u003estring\u003c/code\u003e - - A clean hex-rep  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| color | \u003ccode\u003estring\u003c/code\u003e | Some weird color (string, windows decimal, ...) |\r\n\r\n\u003ca name=\"module_ablauf..hex2Color\"\u003e\u003c/a\u003e\r\n\r\n##### ablauf~hex2Color(hex) ÔçÆ \u003ccode\u003estring\u003c/code\u003e\r\nTakes a Hex-Color and makes a windows-decimal-color out of it.\r\n\r\n**Kind**: inner method of [\u003ccode\u003eablauf\u003c/code\u003e](#module_ablauf)  \r\n**Returns**: \u003ccode\u003estring\u003c/code\u003e - - Windows Decimal Color  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| hex | \u003ccode\u003estring\u003c/code\u003e | A Hex Color |\r\n\r\n\u003ca name=\"module_ablauf..getType\"\u003e\u003c/a\u003e\r\n\r\n##### ablauf~getType(caption, filename) ÔçÆ \u003ccode\u003estring\u003c/code\u003e\r\nGuesses the Type of the Item\r\n\r\n**Kind**: inner method of [\u003ccode\u003eablauf\u003c/code\u003e](#module_ablauf)  \r\n**Returns**: \u003ccode\u003estring\u003c/code\u003e - - Type, may be: song, video, powerpoint, sermon, unknown  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| caption | \u003ccode\u003estring\u003c/code\u003e | The Caption of the item |\r\n| filename | \u003ccode\u003estring\u003c/code\u003e | The Filename of the item |\r\n\r\n\u003ca name=\"module_ablauf..colourNameToHex\"\u003e\u003c/a\u003e\r\n\r\n##### ablauf~colourNameToHex(colour) ÔçÆ \u003ccode\u003estring\u003c/code\u003e\r\nTakes a cssColor-Name and returns the hex-value or an empty string\r\n\r\n**Kind**: inner method of [\u003ccode\u003eablauf\u003c/code\u003e](#module_ablauf)  \r\n**Returns**: \u003ccode\u003estring\u003c/code\u003e - - A Hex-Color or an empty String  \r\n\r\n| Param | Type | Description |\r\n| --- | --- | --- |\r\n| colour | \u003ccode\u003estring\u003c/code\u003e | A ColourName |\r\n\r\n\r\n\r\n### Tests\r\n\r\nThe Tests are written using the assert-class and can be found in the tests-folder\r\n\r\nYou may use your favorite Test-Runner to do them yourself.\r\n\r\nMy Commandline is as follows:\r\n\r\n`istanbul cover _mocha -- tests/*.js -R mochawesome`\r\n\r\n#### Results\r\n\r\nCoverage: docs/coverage/lcov-report/index.html\r\nMochawesome-Report: docs/mochawesome-report/index.html\r\n\r\n### JSON\r\n\r\nHere are the Schema-Files of the JSON-Objects\r\n\r\n#### Song\r\n\r\n```js\r\n{\r\n  \"definitions\": {},\r\n  \"$schema\": \"http://json-schema.org/draft-06/schema#\",\r\n  \"$id\": \"http://lib-songbeamer.com/song.json\",\r\n  \"type\": \"object\",\r\n  \"properties\": {\r\n    \"slides\": {\r\n      \"$id\": \"/properties/slides\",\r\n      \"type\": \"array\",\r\n      \"items\": {\r\n        \"$id\": \"/properties/slides/items\",\r\n        \"type\": \"object\",\r\n        \"properties\": {\r\n          \"lines\": {\r\n            \"$id\": \"/properties/slides/items/properties/lines\",\r\n            \"type\": \"array\",\r\n            \"items\": {\r\n              \"$id\": \"/properties/slides/items/properties/lines/items\",\r\n              \"type\": \"string\",\r\n              \"title\": \"The 0 Schema\",\r\n              \"description\": \"A Line of Song-Text\",\r\n              \"default\": \"\",\r\n              \"examples\": [\r\n                \"Our Father everlasting,\"\r\n              ]\r\n            }\r\n          },\r\n          \"caption\": {\r\n            \"$id\": \"/properties/slides/items/properties/caption\",\r\n            \"type\": \"string\",\r\n            \"title\": \"The Caption Schema\",\r\n            \"description\": \"The Caption of a Slide.\",\r\n            \"default\": \"\",\r\n            \"examples\": [\r\n              \"Verse 1\"\r\n            ]\r\n          }\r\n        }\r\n      }\r\n    },\r\n    \"LangCount\": {\r\n      \"$id\": \"/properties/LangCount\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Langcount Schema\",\r\n      \"description\": \"How many Languages are there\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"2\"\r\n      ]\r\n    },\r\n    \"Title\": {\r\n      \"$id\": \"/properties/Title\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Title Schema\",\r\n      \"description\": \"Original Title of the Song\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"This I Believe (The Creed)\"\r\n      ]\r\n    },\r\n    \"Editor\": {\r\n      \"$id\": \"/properties/Editor\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Editor Schema\",\r\n      \"description\": \"How was this created.\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"SongBeamer 4.14a\"\r\n      ]\r\n    },\r\n    \"Version\": {\r\n      \"$id\": \"/properties/Version\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Version Schema\",\r\n      \"description\": \"Version of this Song.\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"3\"\r\n      ]\r\n    },\r\n    \"TitleFormat\": {\r\n      \"$id\": \"/properties/TitleFormat\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Titleformat Schema\",\r\n      \"description\": \"How the Title is formatted\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"U\"\r\n      ]\r\n    },\r\n    \"BackgroundImage\": {\r\n      \"$id\": \"/properties/BackgroundImage\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Backgroundimage Schema\",\r\n      \"description\": \"Path to the bg-image\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"bgvideos://Blanko f�r Songbeamer-1.jpg\"\r\n      ]\r\n    },\r\n    \"(c)\": {\r\n      \"$id\": \"/properties/(c)\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The (c) Schema\",\r\n      \"description\": \"Copyrights\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"Hillsong Worship\"\r\n      ]\r\n    },\r\n    \"Translation\": {\r\n      \"$id\": \"/properties/Translation\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Translation Schema\",\r\n      \"description\": \"Name of the translators\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"Martin Bruch \u0026 Dennis Strehl\"\r\n      ]\r\n    },\r\n    \"Author\": {\r\n      \"$id\": \"/properties/Author\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Author Schema\",\r\n      \"description\": \"Name of the Text-Author.\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"Ben Fielding \u0026 Matthew Crocker\"\r\n      ]\r\n    },\r\n    \"Melody\": {\r\n      \"$id\": \"/properties/Melody\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Melody Schema\",\r\n      \"description\": \"Name of the Melody-Author.\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"Ben Fielding \u0026 Matthew Crocker\"\r\n      ]\r\n    },\r\n    \"TitleLang2\": {\r\n      \"$id\": \"/properties/TitleLang2\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Titlelang2 Schema\",\r\n      \"description\": \"Second Title in different Language\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"Das glaube ich\"\r\n      ]\r\n    },\r\n    \"VerseOrder\": {\r\n      \"$id\": \"/properties/VerseOrder\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Verseorder Schema\",\r\n      \"description\": \"Order of Slides, by captions\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"Verse 1,Chorus,Verse 2,Chorus,Bridge,Chorus\"\r\n      ]\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n#### Ablaufplan\r\n\r\n```json\r\n{\r\n  \"definitions\": {},\r\n  \"$schema\": \"http://json-schema.org/draft-06/schema#\",\r\n  \"$id\": \"http://lib-songbeamer.com/ablauf.json\",\r\n  \"type\": \"object\",\r\n  \"properties\": {\r\n    \"title\": {\r\n      \"$id\": \"/properties/title\",\r\n      \"type\": \"string\",\r\n      \"title\": \"The Title Schema\",\r\n      \"description\": \"The Title of the Ablaufplan\",\r\n      \"default\": \"\",\r\n      \"examples\": [\r\n        \"examples/ablaufplan.col\"\r\n      ]\r\n    },\r\n    \"items\": {\r\n      \"$id\": \"/properties/items\",\r\n      \"type\": \"array\",\r\n      \"items\": {\r\n        \"$id\": \"/properties/items/items\",\r\n        \"type\": \"object\",\r\n        \"properties\": {\r\n          \"filename\": {\r\n            \"$id\": \"/properties/items/items/properties/filename\",\r\n            \"type\": \"string\",\r\n            \"title\": \"The Filename Schema\",\r\n            \"description\": \"Filename of an Item. May be Empty if no File\",\r\n            \"default\": \"\",\r\n            \"examples\": [\r\n              \"..\\\\..\\\\Vorspann\\\\Vorspann 31.12.2017.ppt\"\r\n            ]\r\n          },\r\n          \"caption\": {\r\n            \"$id\": \"/properties/items/items/properties/caption\",\r\n            \"type\": \"string\",\r\n            \"title\": \"The Caption Schema\",\r\n            \"description\": \"The Caption, as seen in the Songbeamer\",\r\n            \"default\": \"\",\r\n            \"examples\": [\r\n              \"Vorspann 31.12.2017\"\r\n            ]\r\n          },\r\n          \"color\": {\r\n            \"$id\": \"/properties/items/items/properties/color\",\r\n            \"type\": \"string\",\r\n            \"title\": \"The Color Schema\",\r\n            \"description\": \"The Color of the Item\",\r\n            \"default\": \"\",\r\n            \"examples\": [\r\n              \"#000000\"\r\n            ]\r\n          },\r\n          \"type\": {\r\n            \"$id\": \"/properties/items/items/properties/type\",\r\n            \"type\": \"string\",\r\n            \"title\": \"The Type Schema\",\r\n            \"description\": \"The guessed Type.\",\r\n            \"default\": \"\",\r\n            \"examples\": [\r\n              \"powerpoint\"\r\n            ]\r\n          }\r\n        }\r\n      }\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n## Authors\r\n\r\n* Dominik Sigmund \u003cdominik.sigmund@webdad.eu\u003e\r\n\r\n## License\r\n\r\nThis is free and unencumbered software released into the public domain.\r\n\r\nAnyone is free to copy, modify, publish, use, compile, sell, or\r\ndistribute this software, either in source code form or as a compiled\r\nbinary, for any purpose, commercial or non-commercial, and by any\r\nmeans.\r\n\r\nIn jurisdictions that recognize copyright laws, the author or authors\r\nof this software dedicate any and all copyright interest in the\r\nsoftware to the public domain. We make this dedication for the benefit\r\nof the public at large and to the detriment of our heirs and\r\nsuccessors. We intend this dedication to be an overt act of\r\nrelinquishment in perpetuity of all present and future rights to this\r\nsoftware under copyright law.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\r\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\r\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\r\nOTHER DEALINGS IN THE SOFTWARE.\r\n\r\nFor more information, please refer to \u003chttp://unlicense.org/\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebdad%2Flib-songbeamer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebdad%2Flib-songbeamer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebdad%2Flib-songbeamer/lists"}