aboutsummaryrefslogtreecommitdiff
path: root/schemas_json/action.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'schemas_json/action.yaml')
-rw-r--r--schemas_json/action.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/schemas_json/action.yaml b/schemas_json/action.yaml
new file mode 100644
index 0000000..67f6550
--- /dev/null
+++ b/schemas_json/action.yaml
@@ -0,0 +1,15 @@
+---
+"$schema": "http://json-schema.org/schema#"
+id: "hatter://action.yaml#"
+type: object
+required:
+ - image
+ - command
+properties:
+ image:
+ type: string
+ description: container image
+ command:
+ type: string
+ description: shell commands
+...