Last active
July 5, 2020 23:53
-
-
Save lostintangent/5290f684afc38cfe713246226c1d0f72 to your computer and use it in GitHub Desktop.
GistPad - Showcase Manifest Schema #schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "Schema for GistPad showcases.", | |
"type": "object", | |
"required": [ | |
"categories" | |
], | |
"properties": { | |
"categories": { | |
"type": "array", | |
"description": "Specifies the list of categories within the showcase.", | |
"default": [], | |
"items": { | |
"type": "object", | |
"required": [ | |
"title", | |
"gists" | |
], | |
"properties": { | |
"title": { | |
"type": "string", | |
"description": "Specifies the name of the showcase category." | |
}, | |
"gists": { | |
"type": "array", | |
"items": { | |
"type": "string" | |
}, | |
"description": "Specifies an array of gist IDs that are included in this shwocase category." | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment