1
0

first commit

This commit is contained in:
2026-01-26 15:20:35 +01:00
commit 1e1a3213df
3 changed files with 992 additions and 0 deletions

22
mstr-config-schema.json Normal file
View File

@@ -0,0 +1,22 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"repositories": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"commands": {
"type": "array",
"items": {
"type": "string"
}
},
"variables": {
"type": "object"
}
}
}