@@ -1741,6 +1741,54 @@ definitions:
17411741 $parameters :
17421742 type : object
17431743 additionalProperties : true
1744+ KeyValueExtractor :
1745+ title : Key Value Extractor
1746+ description : Record extractor that extract with .
1747+ type : object
1748+ required :
1749+ - type
1750+ - keys_extractor
1751+ - values_extractor
1752+ properties :
1753+ type :
1754+ type : string
1755+ enum : [ KeyValueExtractor ]
1756+ keys_extractor :
1757+ description : placeholder
1758+ anyOf :
1759+ - " $ref " : " #/definitions/DpathExtractor"
1760+ - " $ref " : " #/definitions/CustomRecordExtractor"
1761+ values_extractor :
1762+ description : placeholder
1763+ anyOf :
1764+ - " $ref " : " #/definitions/DpathExtractor"
1765+ - " $ref " : " #/definitions/CustomRecordExtractor"
1766+ $parameters :
1767+ type : object
1768+ additionalProperties : true
1769+ CombinedExtractor :
1770+ title : Combined Extractor
1771+ description : Record extractor that extract with .
1772+ type : object
1773+ required :
1774+ - type
1775+ - extractors
1776+ properties :
1777+ type :
1778+ type : string
1779+ enum : [ CombinedExtractor ]
1780+ extractors :
1781+ description : placeholder
1782+ type : array
1783+ items :
1784+ anyOf :
1785+ - " $ref " : " #/definitions/DpathExtractor"
1786+ - " $ref " : " #/definitions/CombinedExtractor"
1787+ - " $ref " : " #/definitions/KeyValueExtractor"
1788+ - " $ref " : " #/definitions/CustomRecordExtractor"
1789+ $parameters :
1790+ type : object
1791+ additionalProperties : true
17441792 DpathExtractor :
17451793 title : Dpath Extractor
17461794 description : Record extractor that searches a decoded response over a path defined as an array of fields.
@@ -2318,6 +2366,12 @@ definitions:
23182366 - " $ref " : " #/definitions/AsyncRetriever"
23192367 - " $ref " : " #/definitions/CustomRetriever"
23202368 - " $ref " : " #/definitions/SimpleRetriever"
2369+ schema_filter :
2370+ title : Schema Filter
2371+ description : placeholder
2372+ anyOf :
2373+ - " $ref " : " #/definitions/RecordFilter"
2374+ - " $ref " : " #/definitions/CustomRecordFilter"
23212375 schema_transformations :
23222376 title : Schema Transformations
23232377 description : A list of transformations to be applied to the schema.
@@ -3315,6 +3369,8 @@ definitions:
33153369 extractor :
33163370 anyOf :
33173371 - " $ref " : " #/definitions/DpathExtractor"
3372+ - " $ref " : " #/definitions/CombinedExtractor"
3373+ - " $ref " : " #/definitions/KeyValueExtractor"
33183374 - " $ref " : " #/definitions/CustomRecordExtractor"
33193375 record_filter :
33203376 title : Record Filter
@@ -3994,6 +4050,9 @@ definitions:
39944050 title : Value Type
39954051 description : The expected data type of the value. If omitted, the type will be inferred from the value provided.
39964052 " $ref " : " #/definitions/ValueType"
4053+ create_or_update :
4054+ type : boolean
4055+ default : false
39974056 $parameters :
39984057 type : object
39994058 additionalProperties : true
@@ -4045,6 +4104,10 @@ definitions:
40454104 - ["data"]
40464105 - ["data", "streams"]
40474106 - ["data", "{{ parameters.name }}"]
4107+ default_values :
4108+ title : Default Values
4109+ description : placeholder
4110+ type : array
40484111 $parameters :
40494112 type : object
40504113 additionalProperties : true
@@ -4056,7 +4119,11 @@ definitions:
40564119 type : string
40574120 enum : [ConfigComponentsResolver]
40584121 stream_config :
4059- " $ref " : " #/definitions/StreamConfig"
4122+ anyOf :
4123+ - type : array
4124+ items :
4125+ " $ref " : " #/definitions/StreamConfig"
4126+ - " $ref " : " #/definitions/StreamConfig"
40604127 components_mapping :
40614128 type : array
40624129 items :
0 commit comments