Skip to content

Commit

Permalink
feat: plugin descriptor json scheme generator (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cdm2883 authored Oct 3, 2024
1 parent 91e9ad8 commit 8f54607
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions docs/advanced/plugin_descriptor_json_scheme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"authors": {
"type": "array",
"items": {
"type": "string"
}
},
"dependencies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"optional": {
"type": "boolean"
},
"version": {
"type": "string"
}
}
}
},
"description": {
"type": "string"
},
"entrance": {
"type": "string"
},
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"website": {
"type": "string"
}
}
}

0 comments on commit 8f54607

Please sign in to comment.