diff options
Diffstat (limited to '.frontmatter/config/data')
| -rw-r--r-- | .frontmatter/config/data/files/bs-timeline.json (renamed from .frontmatter/config/data/folders/data.json) | 17 | ||||
| -rw-r--r-- | .frontmatter/config/data/files/knightlabs.json | 44 | ||||
| -rw-r--r-- | .frontmatter/config/data/types/bs-timeline.json (renamed from .frontmatter/config/data/types/timeline.json) | 8 | ||||
| -rw-r--r-- | .frontmatter/config/data/types/knightlabs.json | 86 |
4 files changed, 143 insertions, 12 deletions
diff --git a/.frontmatter/config/data/folders/data.json b/.frontmatter/config/data/files/bs-timeline.json index 77ffcf2..f845efe 100644 --- a/.frontmatter/config/data/folders/data.json +++ b/.frontmatter/config/data/files/bs-timeline.json @@ -1,11 +1,11 @@ { - "$schema": "https://frontmatter.codes/config/data.folders.schema.json", - "id": "Data", - "path": "[[workspace]]/data", - "singleEntry": false, - "enableFileCreation": true, + "$schema": "https://frontmatter.codes/config/data.files.schema.json", + "id": "bs-timeline", + "title": "bs-timeline", + "file": "[[workspace]]/data/bs-timeline.yml", + "labelField": "name", "fileType": "yaml", - "type": "timeline", + "singleEntry": true, "schema": { "title": "Timeline", "type": "object", @@ -14,7 +14,7 @@ "date" ], "properties": { - "title": { + "name": { "type": "string", "title": "Title" }, @@ -39,5 +39,6 @@ "title": "Content" } } - } + }, + "type": "bs-timeline" }
\ No newline at end of file diff --git a/.frontmatter/config/data/files/knightlabs.json b/.frontmatter/config/data/files/knightlabs.json new file mode 100644 index 0000000..e8d5aac --- /dev/null +++ b/.frontmatter/config/data/files/knightlabs.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://frontmatter.codes/config/data.files.schema.json", + "id": "knightlabs", + "title": "knightlabs", + "file": "[[workspace]]/data/knightlabs.json", + "labelField": "name", + "fileType": "json", + "singleEntry": true, + "schema": { + "title": "Timeline", + "type": "object", + "required": [ + "name", + "date" + ], + "properties": { + "name": { + "type": "string", + "title": "Title" + }, + "date": { + "type": "string", + "title": "Date" + }, + "icon": { + "type": "string", + "title": "Icon" + }, + "color": { + "type": "string", + "title": "Color" + }, + "url": { + "type": "string", + "title": "URL" + }, + "content": { + "type": "string", + "title": "Content" + } + } + }, + "type": "knightlabs" +}
\ No newline at end of file diff --git a/.frontmatter/config/data/types/timeline.json b/.frontmatter/config/data/types/bs-timeline.json index fb6d713..54a2ecc 100644 --- a/.frontmatter/config/data/types/timeline.json +++ b/.frontmatter/config/data/types/bs-timeline.json @@ -1,15 +1,15 @@ { "$schema": "https://frontmatter.codes/config/data.files.schema.json", - "id": "timeline", + "id": "bs-timeline", "schema": { - "title": "Timeline", + "title": "Bootstrap Timeline", "type": "object", "required": [ - "title", + "name", "date" ], "properties": { - "title": { + "name": { "type": "string", "title": "Title" }, diff --git a/.frontmatter/config/data/types/knightlabs.json b/.frontmatter/config/data/types/knightlabs.json new file mode 100644 index 0000000..8d9fc80 --- /dev/null +++ b/.frontmatter/config/data/types/knightlabs.json @@ -0,0 +1,86 @@ +{ + "$schema": "https://frontmatter.codes/config/data.files.schema.json", + "id": "knightlabs", + "schema": { + "title": "Knightlabs Timeline", + "type": "object", + "required": [ + "name", + "date" + ], + "properties": { + "year": { + "type": "number", + "title": "Year" + }, + "month": { + "type": "number", + "title": "Month" + }, + "day": { + "title": "Day", + "type": "number" + }, + "time": { + "title": "Time", + "type": "string" + }, + "end year": { + "type": "number", + "title": "End Year" + }, + "end month": { + "type": "number", + "title": "End Month" + }, + "end day": { + "title": "End Day", + "type": "number" + }, + "end time": { + "title": "End Time", + "type": "string" + }, + "display date": { + "title": "Display Date", + "type": "string" + }, + "headline": { + "title": "headline", + "type": "string" + }, + "text": { + "type": "string", + "title": "Text" + }, + "media": { + "type": "string", + "title": "Media" + }, + "media credit": { + "type": "string", + "title": "Media Credit" + }, + "media caption": { + "type": "string", + "title": "Media Caption" + }, + "media thumbnail": { + "type": "string", + "title": "Media Thumbnail" + }, + "type": { + "type": "string", + "title": "Type" + }, + "group": { + "title": "Group", + "type": "string" + }, + "background": { + "title": "Background", + "type": "string" + } + } + } +}
\ No newline at end of file |
