afv-library/skills/data-cloud-bdt-expert/tests/fixtures/api_input_multi.json
Gaurav Bajpai 0f94d02786
refactor: rename skill to data-cloud-bdt-expert @W-22196528@
Rename skill directory and frontmatter name from
`explaining-batch-data-transform` to `data-cloud-bdt-expert`
per internal PR reviewer feedback. A noun-form name (identifies
the skill by what it's about) is clearer than a gerund-form name
(describes what it does) for user-facing plugin/skill identity.

- skills/explaining-batch-data-transform/ -> skills/data-cloud-bdt-expert/
- SKILL.md frontmatter `name:` updated
- tests docstring path updated

No behavior change. All 92 tests pass.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-24 11:41:17 +05:30

72 lines
2.1 KiB
JSON

{
"name": "TestMultiTransform",
"label": "Test Multi Transform",
"description": "Wraps two BDTs in the Connect API multi-definitions shape",
"type": "BATCH",
"dataSpaceName": "default",
"definitions": [
{
"version": "66.0",
"type": "STL",
"nodes": {
"LOAD_A": {
"action": "load",
"sources": [],
"parameters": {
"dataset": {"name": "ssot__A__dlm", "type": "dataModelObject"},
"fields": ["ssot__Id__c"],
"sampleDetails": {"type": "TopN", "sortBy": []}
}
},
"OUTPUT_A": {
"action": "outputD360",
"sources": ["LOAD_A"],
"parameters": {
"name": "A_Out__dlm",
"type": "dataModelObject",
"writeMode": "OVERWRITE",
"fieldsMappings": [{"sourceField": "ssot__Id__c", "targetField": "ssot__Id__c"}]
}
}
},
"ui": {
"nodes": {
"LOAD_A": {"label": "Load A", "type": "LOAD_DATASET", "top": 100, "left": 100},
"OUTPUT_A": {"label": "Output A", "type": "OUTPUT", "top": 100, "left": 260}
}
}
},
{
"version": "66.0",
"type": "STL",
"nodes": {
"LOAD_B": {
"action": "load",
"sources": [],
"parameters": {
"dataset": {"name": "ssot__B__dlm", "type": "dataModelObject"},
"fields": ["ssot__Id__c"],
"sampleDetails": {"type": "TopN", "sortBy": []}
}
},
"OUTPUT_B": {
"action": "outputD360",
"sources": ["LOAD_B"],
"parameters": {
"name": "B_Out__dlm",
"type": "dataModelObject",
"writeMode": "OVERWRITE",
"fieldsMappings": [{"sourceField": "ssot__Id__c", "targetField": "ssot__Id__c"}]
}
}
},
"ui": {
"nodes": {
"LOAD_B": {"label": "Load B", "type": "LOAD_DATASET", "top": 100, "left": 100},
"OUTPUT_B": {"label": "Output B", "type": "OUTPUT", "top": 100, "left": 260}
}
}
}
]
}