feat: pipeline improvements

This commit is contained in:
2023-11-07 18:51:55 +01:00
parent 51602ffa0f
commit fdec5a5baa
20 changed files with 118 additions and 150 deletions

View File

@@ -0,0 +1,18 @@
{
"$schema": "https://json-schema.org/draft-07/schema",
"$ref": "#/definitions/MappingSchema",
"definitions": {
"MappingSchema": {
"type": "object",
"properties": {
"schema": {
"$ref": "https://json-schema.org/draft-07/schema"
},
"config": {
"type": "object"
}
},
"required": ["schema", "config"]
}
}
}