Skip to content

Instantly share code, notes, and snippets.

@monsieuroeuf
Created January 30, 2024 23:46
Show Gist options
  • Save monsieuroeuf/cf29ed3dd3c1ef719df7528b28a949ab to your computer and use it in GitHub Desktop.
Save monsieuroeuf/cf29ed3dd3c1ef719df7528b28a949ab to your computer and use it in GitHub Desktop.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "array",
"items": {
"type": "object",
"properties": {
"clipname": {
"description": "The unique identifier for a product",
"type": "string"
},
"dest": {
"description": "Folder to put it",
"type": "string"
},
"preset": {
"description": "what preset innit",
"type": "string"
}
},
"required": [
"clipname",
"dest"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment