Skip to content

Instantly share code, notes, and snippets.

@lostintangent
Last active July 5, 2020 23:53
Show Gist options
  • Save lostintangent/5290f684afc38cfe713246226c1d0f72 to your computer and use it in GitHub Desktop.
Save lostintangent/5290f684afc38cfe713246226c1d0f72 to your computer and use it in GitHub Desktop.
GistPad - Showcase Manifest Schema #schema
{
"$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