schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
yippee-ki-json_config_schema.json
|
predicateIsNull
|
Is null predicate
|
{"type": "object", "properties": {"name": {"type": "string", "const": "isNull"}}, "required": ["name"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "isNull"}
|
yippee-ki-json_config_schema.json
|
predicateNoneMatch
|
None Match predicate
|
{"type": "object", "properties": {"name": {"type": "string", "const": "noneMatch"}, "from": {"type": "array", "items": {}, "minItems": 1, "additionalItems": false}}, "required": ["from", "name"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "noneMatch"}
|
yippee-ki-json_config_schema.json
|
predicateNotNull
|
Not null predicate
|
{"type": "object", "properties": {"name": {"type": "string", "const": "notNull"}}, "required": ["name"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "notNull"}
|
yippee-ki-json_config_schema.json
|
predicateRegex
|
RegEx predicate
|
{"type": "object", "properties": {"name": {"type": "string", "const": "regex"}, "pattern": {"type": "string"}}, "required": ["name", "pattern"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "regex"}
|
yippee-ki-json_config_schema.json
|
pattern
|
The regular expression we want to match.
|
{"type": "string"}
|
yippee-ki-json_config_schema.json
|
predicateSpEL
|
SpEL predicate
|
{"type": "object", "properties": {"name": {"type": "string", "const": "SpEL"}, "expression": {"type": "string"}}, "required": ["expression", "name"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "SpEL"}
|
yippee-ki-json_config_schema.json
|
expression
|
The SpEL expression we want to match.
|
{"type": "string"}
|
yippee-ki-json_config_schema.json
|
supplierTypes
|
Definition of known supplier types
|
{"definitions": {"supplierConverting": {"type": "object", "properties": {"name": {"type": "string", "const": "converting"}, "stringSource": {"allOf": [{}, {}]}, "converter": {"allOf": [{}, {}]}}, "required": ["converter", "name", "stringSource"], "additionalProperties": false}, "supplierEpochMillisRelativeDate": {"type": "object", "properties": {"name": {"type": "string", "const": "epochMillisRelativeDate"}, "amount": {"type": "integer"}, "unit": {"allOf": [{}, {}]}, "relativeTo": {"type": "integer"}}, "required": ["amount", "name", "unit"], "additionalProperties": false}, "supplierFile": {"type": "object", "properties": {"name": {"type": "string", "const": "file"}, "path": {"type": "string"}, "charset": {"allOf": [{}, {}]}}, "required": ["name", "path"], "additionalProperties": false}, "supplierHttpResource": {"type": "object", "properties": {"name": {"type": "string", "const": "httpResource"}, "uri": {"type": "string"}, "httpMethod": {"allOf": [{}, {}]}, "httpHeaders": {"allOf": [{}, {}]}, "charset": {"allOf": [{}, {}]}}, "required": ["name", "uri"], "additionalProperties": false}, "supplierJsonSchema": {"type": "object", "properties": {"name": {"type": "string", "const": "jsonSchema"}, "source": {"allOf": [{}, {}]}}, "required": ["name", "source"], "additionalProperties": false}, "supplierRelativeStringDate": {"type": "object", "properties": {"name": {"type": "string", "const": "relativeStringDate"}, "formatter": {"type": "string"}, "amount": {"type": "integer"}, "unit": {"allOf": [{}, {}]}, "relativeTo": {"type": "string"}}, "required": ["amount", "formatter", "name", "unit"], "additionalProperties": false}, "supplierSchemaStore": {"type": "object", "properties": {"name": {"type": "string", "const": "schemaStore"}, "schemaName": {"type": "string"}}, "required": ["name", "schemaName"], "additionalProperties": false}, "supplierStaticBoolean": {"type": "object", "properties": {"name": {"type": "string", "const": "staticBoolean"}, "value": {"type": "boolean"}}, "required": ["name", "value"], "additionalProperties": false}, "supplierStaticDecimal": {"type": "object", "properties": {"name": {"type": "string", "const": "staticDecimal"}, "value": {"type": "number"}}, "required": ["name", "value"], "additionalProperties": false}, "supplierStaticInteger": {"type": "object", "properties": {"name": {"type": "string", "const": "staticInteger"}, "value": {"type": "integer"}}, "required": ["name", "value"], "additionalProperties": false}, "supplierStaticJson": {"type": "object", "properties": {"name": {"type": "string", "const": "staticJson"}, "value": {"type": "string"}}, "required": ["name", "value"], "additionalProperties": false}, "supplierStaticString": {"type": "object", "properties": {"name": {"type": "string", "const": "staticString"}, "value": {"type": "string"}}, "required": ["name", "value"], "additionalProperties": false}, "jsonSchemaSupplierType": {"allOf": [{"type": "object", "properties": {"name": {"type": "string", "enum": ["jsonSchema"], "additionalItems": false}}, "required": ["name"]}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "jsonSchema"}}}, "then": {}}]}, "stringSupplierType": {"allOf": [{"type": "object", "properties": {"name": {"type": "string", "enum": ["file", "httpResource", "relativeStringDate", "schemaStore", "staticString"], "additionalItems": false}}, "required": ["name"]}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "file"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "httpResource"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "relativeStringDate"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "schemaStore"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "staticString"}}}, "then": {}}]}, "bigDecimalSupplierType": {"allOf": [{"type": "object", "properties": {"name": {"type": "string", "enum": ["staticDecimal"], "additionalItems": false}}, "required": ["name"]}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "staticDecimal"}}}, "then": {}}]}, "anySupplierType": {"allOf": [{"type": "object", "properties": {"name": {"type": "string", "enum": ["converting", "epochMillisRelativeDate", "file", "httpResource", "jsonSchema", "relativeStringDate", "schemaStore", "staticBoolean", "staticDecimal", "staticInteger", "staticJson", "staticString"], "additionalItems": false}}, "required": ["name"]}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "converting"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "epochMillisRelativeDate"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "file"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "httpResource"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "jsonSchema"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "relativeStringDate"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "schemaStore"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "staticBoolean"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "staticDecimal"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "staticInteger"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "staticJson"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "staticString"}}}, "then": {}}]}}}
|
yippee-ki-json_config_schema.json
|
supplierConverting
|
Converting supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "converting"}, "stringSource": {"allOf": [{}, {}]}, "converter": {"allOf": [{}, {}]}}, "required": ["converter", "name", "stringSource"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "converting"}
|
yippee-ki-json_config_schema.json
|
stringSource
|
The supplier of the raw String data we will use as input.
|
{}
|
yippee-ki-json_config_schema.json
|
converter
|
The function that will convert the string data.
|
{}
|
yippee-ki-json_config_schema.json
|
supplierEpochMillisRelativeDate
|
Epoch Millis Relative Date supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "epochMillisRelativeDate"}, "amount": {"type": "integer"}, "unit": {"allOf": [{}, {}]}, "relativeTo": {"type": "integer"}}, "required": ["amount", "name", "unit"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "epochMillisRelativeDate"}
|
yippee-ki-json_config_schema.json
|
amount
|
The amount of time units we need to add to the current date time.
|
{"type": "integer"}
|
yippee-ki-json_config_schema.json
|
unit
|
The time unit we want to use to interpret the amount.
|
{}
|
yippee-ki-json_config_schema.json
|
relativeTo
|
The value we want to be relative to (in case it is not the current time).
|
{"type": "integer"}
|
yippee-ki-json_config_schema.json
|
supplierFile
|
File content supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "file"}, "path": {"type": "string"}, "charset": {"allOf": [{}, {}]}}, "required": ["name", "path"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "file"}
|
yippee-ki-json_config_schema.json
|
path
|
The path of the file we want to use as input.
|
{"type": "string"}
|
yippee-ki-json_config_schema.json
|
charset
|
The charset used for reading the contents of the file. Defaults to UTF-8.
|
{}
|
yippee-ki-json_config_schema.json
|
supplierHttpResource
|
HTTP resource content supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "httpResource"}, "uri": {"type": "string"}, "httpMethod": {"allOf": [{}, {}]}, "httpHeaders": {"allOf": [{}, {}]}, "charset": {"allOf": [{}, {}]}}, "required": ["name", "uri"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "httpResource"}
|
yippee-ki-json_config_schema.json
|
uri
|
The URI we want to send the request to.
|
{"type": "string"}
|
yippee-ki-json_config_schema.json
|
httpMethod
|
The HTTP request method we want to use. Defaults to GET.
|
{}
|
yippee-ki-json_config_schema.json
|
httpHeaders
|
HTTP headers we want to send with our request.
|
{}
|
yippee-ki-json_config_schema.json
|
charset
|
The charset used for reading the contents of the response. Defaults to UTF-8.
|
{}
|
yippee-ki-json_config_schema.json
|
supplierJsonSchema
|
JSON schema supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "jsonSchema"}, "source": {"allOf": [{}, {}]}}, "required": ["name", "source"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "jsonSchema"}
|
yippee-ki-json_config_schema.json
|
source
|
The supplier of the String of the JSON Schema which we will use as input.
|
{}
|
yippee-ki-json_config_schema.json
|
supplierRelativeStringDate
|
Relative String Date supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "relativeStringDate"}, "formatter": {"type": "string"}, "amount": {"type": "integer"}, "unit": {"allOf": [{}, {}]}, "relativeTo": {"type": "string"}}, "required": ["amount", "formatter", "name", "unit"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "relativeStringDate"}
|
yippee-ki-json_config_schema.json
|
formatter
|
The format String we need to use for date time parsing. [See](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/time/format/DateTimeFormatter.html)
|
{"type": "string"}
|
yippee-ki-json_config_schema.json
|
amount
|
The amount of time units we need to add to the current date time.
|
{"type": "integer"}
|
yippee-ki-json_config_schema.json
|
unit
|
The time unit we want to use to interpret the amount.
|
{}
|
yippee-ki-json_config_schema.json
|
relativeTo
|
The value we want to be relative to (in case it is not the current time).
|
{"type": "string"}
|
yippee-ki-json_config_schema.json
|
supplierSchemaStore
|
SchemaStore schema supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "schemaStore"}, "schemaName": {"type": "string"}}, "required": ["name", "schemaName"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "schemaStore"}
|
yippee-ki-json_config_schema.json
|
schemaName
|
The name of the JSON schema as found in the SchemaStore.org catalog.
|
{"type": "string"}
|
yippee-ki-json_config_schema.json
|
supplierStaticBoolean
|
Static Boolean supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "staticBoolean"}, "value": {"type": "boolean"}}, "required": ["name", "value"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "staticBoolean"}
|
yippee-ki-json_config_schema.json
|
value
|
The static value that must be returned each time the supplier is called.
|
{"type": "boolean"}
|
yippee-ki-json_config_schema.json
|
supplierStaticDecimal
|
Static BigDecimal supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "staticDecimal"}, "value": {"type": "number"}}, "required": ["name", "value"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "staticDecimal"}
|
yippee-ki-json_config_schema.json
|
value
|
The static value that must be returned each time the supplier is called.
|
{"type": "number"}
|
yippee-ki-json_config_schema.json
|
supplierStaticInteger
|
Static BigInteger supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "staticInteger"}, "value": {"type": "integer"}}, "required": ["name", "value"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "staticInteger"}
|
yippee-ki-json_config_schema.json
|
value
|
The static value that must be returned each time the supplier is called.
|
{"type": "integer"}
|
yippee-ki-json_config_schema.json
|
supplierStaticJson
|
Static JSON supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "staticJson"}, "value": {"type": "string"}}, "required": ["name", "value"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "staticJson"}
|
yippee-ki-json_config_schema.json
|
value
|
The static JSON value we want to supply every time our supplier is called.
|
{"type": "string"}
|
yippee-ki-json_config_schema.json
|
supplierStaticString
|
Static String supplier
|
{"type": "object", "properties": {"name": {"type": "string", "const": "staticString"}, "value": {"type": "string"}}, "required": ["name", "value"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "staticString"}
|
yippee-ki-json_config_schema.json
|
value
|
The static value that must be returned each time the supplier is called.
|
{"type": "string"}
|
yippee-ki-json_config_schema.json
|
ruleTypes
|
Definition of known rule types
|
{"definitions": {"ruleAdd": {"type": "object", "properties": {"name": {"type": "string", "const": "add"}, "path": {}, "params": {"type": "object", "properties": {"key": {"allOf": [{}, {}]}, "value": {"allOf": [{}, {}]}}, "required": ["key", "value"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}, "ruleCalculate": {"type": "object", "properties": {"name": {"type": "string", "const": "calculate"}, "path": {}, "params": {"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "numberFunction": {"allOf": [{}, {}]}}, "required": ["numberFunction"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}, "ruleCopy": {"type": "object", "properties": {"name": {"type": "string", "const": "copy"}, "path": {}, "params": {"type": "object", "properties": {"key": {"allOf": [{}, {}]}, "to": {"type": "object", "properties": {"value": {"allOf": [{}, {}]}}, "required": ["value"], "additionalProperties": false}}, "required": ["key", "to"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}, "ruleDelete": {"type": "object", "properties": {"name": {"type": "string", "const": "delete"}, "path": {}}, "required": ["name", "path"], "additionalProperties": false}, "ruleDeleteFrom": {"type": "object", "properties": {"name": {"type": "string", "const": "deleteFrom"}, "path": {}, "params": {"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "keepKey": {"allOf": [{}, {}]}, "deleteKey": {"allOf": [{}, {}]}, "keepValue": {"allOf": [{}, {}]}, "deleteValue": {"allOf": [{}, {}]}}, "minProperties": 1, "maxProperties": 5, "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}, "ruleRename": {"type": "object", "properties": {"name": {"type": "string", "const": "rename"}, "path": {}, "params": {"type": "object", "properties": {"oldKey": {"allOf": [{}, {}]}, "newKey": {"allOf": [{}, {}]}}, "required": ["newKey", "oldKey"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}, "ruleReplace": {"type": "object", "properties": {"name": {"type": "string", "const": "replace"}, "path": {}, "params": {"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "stringFunction": {"allOf": [{}, {}]}}, "required": ["stringFunction"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}, "ruleReplaceMap": {"type": "object", "properties": {"name": {"type": "string", "const": "replaceMap"}, "path": {}, "params": {"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "mapFunction": {"allOf": [{}, {}]}}, "required": ["mapFunction"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}, "ruleValidate": {"type": "object", "properties": {"name": {"type": "string", "const": "validate"}, "path": {"type": "string", "const": "$"}, "params": {"type": "object", "properties": {"schema": {"allOf": [{}, {}]}, "onFailure": {"type": "object", "properties": {"transformation": {"type": "string", "enum": ["ABORT", "SKIP_REST", "CONTINUE"], "additionalItems": false}, "violation": {"type": "string", "enum": ["LOG_ONLY", "COMMENT_JSON", "IGNORE"], "additionalItems": false}}, "required": ["transformation", "violation"], "additionalProperties": false}}, "required": ["onFailure", "schema"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}, "anyRuleType": {"allOf": [{"type": "object", "properties": {"name": {"type": "string", "enum": ["add", "calculate", "copy", "delete", "deleteFrom", "rename", "replace", "replaceMap", "validate"], "additionalItems": false}, "path": {}, "params": {"type": "object"}}, "required": ["name", "path"], "additionalProperties": false}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "add"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "calculate"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "copy"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "delete"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "deleteFrom"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "rename"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "replace"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "replaceMap"}}}, "then": {}}, {"if": {"type": "object", "properties": {"name": {"type": "string", "const": "validate"}}}, "then": {}}]}}}
|
yippee-ki-json_config_schema.json
|
ruleAdd
|
Add
|
{"type": "object", "properties": {"name": {"type": "string", "const": "add"}, "path": {}, "params": {"type": "object", "properties": {"key": {"allOf": [{}, {}]}, "value": {"allOf": [{}, {}]}}, "required": ["key", "value"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "add"}
|
yippee-ki-json_config_schema.json
|
params
|
Additional parameters of the rule.
|
{"type": "object", "properties": {"key": {"allOf": [{}, {}]}, "value": {"allOf": [{}, {}]}}, "required": ["key", "value"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
key
|
The supplier that will define the key of the new node.
|
{}
|
yippee-ki-json_config_schema.json
|
value
|
The supplier that will define the value assigned to the new node identified by the key.
|
{}
|
yippee-ki-json_config_schema.json
|
ruleCalculate
|
Calculate
|
{"type": "object", "properties": {"name": {"type": "string", "const": "calculate"}, "path": {}, "params": {"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "numberFunction": {"allOf": [{}, {}]}}, "required": ["numberFunction"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "calculate"}
|
yippee-ki-json_config_schema.json
|
params
|
Additional parameters of the rule.
|
{"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "numberFunction": {"allOf": [{}, {}]}}, "required": ["numberFunction"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
predicate
|
The predicate that will determine whether we should apply the function.
|
{}
|
yippee-ki-json_config_schema.json
|
numberFunction
|
The function that will tell the rule what kind of calculation needs to be done.
|
{}
|
yippee-ki-json_config_schema.json
|
ruleCopy
|
Copy
|
{"type": "object", "properties": {"name": {"type": "string", "const": "copy"}, "path": {}, "params": {"type": "object", "properties": {"key": {"allOf": [{}, {}]}, "to": {"type": "object", "properties": {"value": {"allOf": [{}, {}]}}, "required": ["value"], "additionalProperties": false}}, "required": ["key", "to"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "copy"}
|
yippee-ki-json_config_schema.json
|
params
|
Additional parameters of the rule.
|
{"type": "object", "properties": {"key": {"allOf": [{}, {}]}, "to": {"type": "object", "properties": {"value": {"allOf": [{}, {}]}}, "required": ["value"], "additionalProperties": false}}, "required": ["key", "to"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
key
|
The supplier that will define the key we want to copy.
|
{}
|
yippee-ki-json_config_schema.json
|
value
|
The destination path where this rule will attempt to create the copied node.
|
{}
|
yippee-ki-json_config_schema.json
|
ruleDelete
|
Delete
|
{"type": "object", "properties": {"name": {"type": "string", "const": "delete"}, "path": {}}, "required": ["name", "path"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "delete"}
|
yippee-ki-json_config_schema.json
|
ruleDeleteFrom
|
Delete from
|
{"type": "object", "properties": {"name": {"type": "string", "const": "deleteFrom"}, "path": {}, "params": {"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "keepKey": {"allOf": [{}, {}]}, "deleteKey": {"allOf": [{}, {}]}, "keepValue": {"allOf": [{}, {}]}, "deleteValue": {"allOf": [{}, {}]}}, "minProperties": 1, "maxProperties": 5, "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "deleteFrom"}
|
yippee-ki-json_config_schema.json
|
params
|
Additional parameters of the rule.
|
{"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "keepKey": {"allOf": [{}, {}]}, "deleteKey": {"allOf": [{}, {}]}, "keepValue": {"allOf": [{}, {}]}, "deleteValue": {"allOf": [{}, {}]}}, "minProperties": 1, "maxProperties": 5, "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
predicate
|
Determines whether any deletion should be performed for the matching node
|
{}
|
yippee-ki-json_config_schema.json
|
keepKey
|
The predicate that will be used to test whether a key should be kept, keeping only the matching keys.
|
{}
|
yippee-ki-json_config_schema.json
|
deleteKey
|
The predicate that will be used to test whether a key should be deleted, deleting all the matching keys.
|
{}
|
yippee-ki-json_config_schema.json
|
keepValue
|
The predicate that will be used to test whether a key should be kept, keeping only the matching keys.
|
{}
|
yippee-ki-json_config_schema.json
|
deleteValue
|
The predicate that will be used to test whether an entry should be deleted, deleting all of them with matching values.
|
{}
|
yippee-ki-json_config_schema.json
|
ruleRename
|
Rename
|
{"type": "object", "properties": {"name": {"type": "string", "const": "rename"}, "path": {}, "params": {"type": "object", "properties": {"oldKey": {"allOf": [{}, {}]}, "newKey": {"allOf": [{}, {}]}}, "required": ["newKey", "oldKey"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "rename"}
|
yippee-ki-json_config_schema.json
|
params
|
Additional parameters of the rule.
|
{"type": "object", "properties": {"oldKey": {"allOf": [{}, {}]}, "newKey": {"allOf": [{}, {}]}}, "required": ["newKey", "oldKey"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
oldKey
|
Provides the name of the key we want to rename under the node matching the `path` parameter at the time of evaluation.
|
{}
|
yippee-ki-json_config_schema.json
|
newKey
|
Provides the new name we want to use after the child node was renamed.
|
{}
|
yippee-ki-json_config_schema.json
|
ruleReplace
|
Replace
|
{"type": "object", "properties": {"name": {"type": "string", "const": "replace"}, "path": {}, "params": {"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "stringFunction": {"allOf": [{}, {}]}}, "required": ["stringFunction"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "replace"}
|
yippee-ki-json_config_schema.json
|
params
|
Additional parameters of the rule.
|
{"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "stringFunction": {"allOf": [{}, {}]}}, "required": ["stringFunction"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
predicate
|
Adds an opportunity to filter by value before we apply the replace `stringFunction`.
|
{}
|
yippee-ki-json_config_schema.json
|
stringFunction
|
Defines how the existing value needs to change during the operation.
|
{}
|
yippee-ki-json_config_schema.json
|
ruleReplaceMap
|
Replace map
|
{"type": "object", "properties": {"name": {"type": "string", "const": "replaceMap"}, "path": {}, "params": {"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "mapFunction": {"allOf": [{}, {}]}}, "required": ["mapFunction"], "additionalProperties": false}}, "required": ["name", "params", "path"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
name
|
The name of the component.
|
{"type": "string", "const": "replaceMap"}
|
yippee-ki-json_config_schema.json
|
params
|
Additional parameters of the rule.
|
{"type": "object", "properties": {"predicate": {"allOf": [{}, {}]}, "mapFunction": {"allOf": [{}, {}]}}, "required": ["mapFunction"], "additionalProperties": false}
|
yippee-ki-json_config_schema.json
|
predicate
|
The predicate that will determine whether we need to run the rule on the matching path.
|
{}
|
yippee-ki-json_config_schema.json
|
mapFunction
|
The function that defines the transformation which needs to be done on the selected map/object.
|
{}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.