Last active
February 29, 2024 13:06
-
-
Save Subtixx/85ab724c3a91a938dcca7ab59345393b to your computer and use it in GitHub Desktop.
Revisions
-
Subtixx revised this gist
Feb 29, 2024 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,8 @@ "type": "object", "properties": { "name": { "type": "string", "pattern": "^[A-Za-z0-9 -_]+$" }, "alias": { "type": "string" -
Subtixx revised this gist
Feb 29, 2024 . 1 changed file with 1 addition and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -44,13 +44,9 @@ "name", "alias", "description", "keywords", "providers", "files" ] } -
Subtixx created this gist
Feb 29, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,56 @@ { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "type": "string" }, "alias": { "type": "string" }, "description": { "type": "string" }, "version": { "type": "string" }, "keywords": { "type": "array", "items": {} }, "order": { "type": "integer" }, "providers": { "type": "array", "items": {} }, "aliases": { "type": "array", "items": {} }, "files": { "type": "array", "items": {} }, "requires": { "type": "array", "items": {} } }, "required": [ "name", "alias", "description", "version", "keywords", "order", "providers", "aliases", "files", "requires" ] }