[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-cline-sap-fiori-add-visual-filter":3,"mdc--pyp8y8-key":36,"related-org-cline-sap-fiori-add-visual-filter":1610,"related-repo-cline-sap-fiori-add-visual-filter":1809},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"sap-fiori-add-visual-filter","add visual filters to SAP Fiori","Add visual filters (chart-based) to SAP Fiori Elements filter bar\u002Fvalue help using CAP or ABAP RAP.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"cline","Cline","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcline.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Charts","charts","tag",{"name":17,"slug":18,"type":15},"SAP","sap",{"name":20,"slug":21,"type":15},"UI Components","ui-components",{"name":23,"slug":24,"type":15},"Frontend","frontend",10,"https:\u002F\u002Fgithub.com\u002Fcline\u002Fskills","2026-07-12T08:14:00.678779",null,4,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"A collection of skills used at Cline","https:\u002F\u002Fgithub.com\u002Fcline\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fsap-fiori-add-visual-filter","---\nname: sap-fiori-add-visual-filter\ndescription: Add visual filters (chart-based) to SAP Fiori Elements filter bar\u002Fvalue help using CAP or ABAP RAP.\nargument-hint: field name (e.g., Category, Status)\nmetadata:\n  author: sap-fiori-tools\n  version: \"0.0.4\"\n---\n\n# SAP Fiori Visual Filter\n\n## Purpose\nAdd **chart-based filters (Bar\u002FLine)** to filter bar or value help dialog (OData V4).\n\n---\n\n## MANDATORY: Gather Required Inputs First\n\n**STOP and ASK the user for ALL of these inputs if ANY are missing from the prompt:**\n\n1. **Entity** - Which entity to add the visual filter to\n2. **Dimension field** - The field to filter by (e.g., Category, Status, Destination)\n3. **Measure field** - The numeric field to aggregate (e.g., Amount, TotalPrice, ReservationPrice)\n4. **Aggregation method** - How to aggregate: sum, avg, min, or max\n5. **Chart type** - Bar or Line (recommend Bar as default)\n\n**DO NOT proceed with implementation until all inputs are confirmed.**\n\n---\n\n## CAP Implementation\n\n\n### Enable Aggregation (MANDATORY)\n```cds\n@Aggregation.ApplySupported: {\n  Transformations: ['aggregate','groupby'],\n  AggregatableProperties: [{ Property: Amount }],\n  GroupableProperties: [Category]\n}\n```\n\n### Aggregated Property (Measure)\n```cds\nAnalytics.AggregatedProperty #Amount_sum : {\n  $Type: 'Analytics.AggregatedPropertyType',\n  Name: 'Amount_sum',\n  AggregatableProperty: Amount,\n  AggregationMethod: 'sum'\n}\n```\n\n### Chart Annotation\n```cds\nUI.Chart #visualFilter : {\n  ChartType: #Bar,\n  Dimensions: [Category],\n  DynamicMeasures: ['@Analytics.AggregatedProperty#Amount_sum']\n}\n```\n\n✅ Uses **DynamicMeasures**\n\n### PresentationVariant\n```cds\nUI.PresentationVariant #visualFilter: {\n  Visualizations: ['@UI.Chart#visualFilter']\n}\n```\n\n### ValueList (on Dimension Field)\n```cds\nCategory @Common.ValueList #visualFilter: {\n  $Type: 'Common.ValueListType',\n  CollectionPath: 'EntityName',\n  Parameters: [\n    { $Type: 'Common.ValueListParameterInOut', LocalDataProperty: Category, ValueListProperty: 'Category' }\n  ],\n  PresentationVariantQualifier: 'visualFilter'\n}\n```\n\n### SelectionFields\n```cds\nUI.SelectionFields: [Category]\n```\n\n---\n\n## ABAP RAP Implementation\n\n- Aggregation.ApplySupported and Aggregation.CustomAggregate annotations must be available in metadata.xml (RAP). If not, below backend configuration is required.\n\n### Backend CDS (MANDATORY)\n```abap\n@OData.applySupportedForAggregation: #FULL\ndefine root view entity ZC_ENTITY\n  provider contract analytical_query\n  as projection on ZI_ENTITY\n{\n  key EntityID,\n\n  @Aggregation.default: #SUM\n  Amount,\n\n  Category\n}\n```\n\n### Chart Annotation\n```xml\n\u003CAnnotation Term=\"UI.Chart\" Qualifier=\"visualFilter\">\n  \u003CRecord Type=\"UI.ChartDefinitionType\">\n    \u003CPropertyValue Property=\"ChartType\" EnumMember=\"UI.ChartType\u002FBar\"\u002F>\n    \u003CPropertyValue Property=\"Dimensions\">\n      \u003CCollection>\n        \u003CPropertyPath>Category\u003C\u002FPropertyPath>\n      \u003C\u002FCollection>\n    \u003C\u002FPropertyValue>\n    \u003CPropertyValue Property=\"Measures\">\n      \u003CCollection>\n        \u003CPropertyPath>Amount\u003C\u002FPropertyPath>\n      \u003C\u002FCollection>\n    \u003C\u002FPropertyValue>\n  \u003C\u002FRecord>\n\u003C\u002FAnnotation>\n```\n\n✅ Uses **Measures (not DynamicMeasures)**  \n❌ Metadata is **read-only**\n\n### PresentationVariant Annotation\n```xml\n\u003CAnnotation Term=\"UI.PresentationVariant\" Qualifier=\"visualFilter\">\n  \u003CRecord Type=\"UI.PresentationVariantType\">\n    \u003CPropertyValue Property=\"Visualizations\">\n      \u003CCollection>\n        \u003CAnnotationPath>@UI.Chart#visualFilter\u003C\u002FAnnotationPath>\n      \u003C\u002FCollection>\n    \u003C\u002FPropertyValue>\n  \u003C\u002FRecord>\n\u003C\u002FAnnotation>\n```\n\n### ValueList Annotation\n```xml\n\u003CAnnotation Term=\"Common.ValueList\" Qualifier=\"visualFilter\">\n  \u003CRecord Type=\"Common.ValueListType\">\n    \u003CPropertyValue Property=\"CollectionPath\" String=\"EntityName\"\u002F>\n    \u003CPropertyValue Property=\"PresentationVariantQualifier\" String=\"visualFilter\"\u002F>\n    \u003CPropertyValue Property=\"Parameters\">\n      \u003CCollection>\n        \u003CRecord Type=\"Common.ValueListParameterInOut\">\n          \u003CPropertyValue Property=\"LocalDataProperty\" PropertyPath=\"Category\"\u002F>\n          \u003CPropertyValue Property=\"ValueListProperty\" String=\"Category\"\u002F>\n        \u003C\u002FRecord>\n      \u003C\u002FCollection>\n    \u003C\u002FPropertyValue>\n  \u003C\u002FRecord>\n\u003C\u002FAnnotation>\n```\n\n### SelectionFields Annotation\n```xml\n\u003CAnnotation Term=\"UI.SelectionFields\">\n  \u003CCollection>\n    \u003CPropertyPath>Category\u003C\u002FPropertyPath>\n  \u003C\u002FCollection>\n\u003C\u002FAnnotation>\n```\n\n---\n\n## Manifest Configuration (REQUIRED)\n```json\n\"@com.sap.vocabularies.UI.v1.SelectionFields\": {\n  \"layout\": \"CompactVisual\",\n  \"initialLayout\": \"Visual\",\n  \"filterFields\": {\n    \"Category\": {\n      \"visualFilter\": {\n        \"valueList\": \"com.sap.vocabularies.Common.v1.ValueList#visualFilter\"\n      }\n    }\n  }\n}\n```\n\n✅ Connects filter field to visual filter chart  \n✅ Sets initial layout to visual mode\n\n---\n\n## Testing\n\n### CAP Projects\n```bash\nnpm run watch-\u003Capp-name>  # e.g., npm run watch-manage-travel\n# or use generic watch script if available\ncds watch\n```\n\n### RAP Projects\n```bash\nnpm run start-mock # Needs metadata refresh\n\nnpm start          # No refresh needed - fetches metadata from live backend at runtime\n```\n- Consult fiori mcp server if available on how to refresh metadata for sap\u002Fcloud systems in case of RAP\n\n---\n\n## Key Differences\n\n- **CAP**: DynamicMeasures + AggregatedProperty defined in CDS\n- **RAP**: Measures + @Aggregation.default in backend CDS only\n- **CAP**: Aggregation and chart defined in same place\n- **RAP**: Metadata is read-only, must be configured in backend CDS.\n- **Qualifier**: Must use same qualifier (#visualFilter) across Chart, ValueList, and manifest\n\n---\n\n## Common Mistakes\n\n- Missing backend aggregation setup\n- Qualifier mismatch between Chart, ValueList, PresentationVariant, and manifest\n- Wrong path in manifest (use full vocabulary path)\n- RAP projects using DynamicMeasures instead of Measures\n- Forgetting PresentationVariantQualifier in ValueList\n- Missing SelectionFields annotation\n\n---\n\n## Best Practices\n\n- Use **Bar chart** (most common and recommended)\n- Limit to 3–5 visual filters per filter bar\n- Always configure backend aggregation first\n- Use consistent qualifiers throughout\n- Test with real data to verify aggregation works correctly\n",{"data":37,"body":42},{"name":4,"description":6,"argument-hint":38,"metadata":39},"field name (e.g., Category, Status)",{"author":40,"version":41},"sap-fiori-tools","0.0.4",{"type":43,"children":44},"root",[45,54,61,75,79,85,93,148,156,159,165,172,230,236,291,297,343,353,359,389,395,467,473,487,490,496,505,511,618,623,752,772,778,852,858,972,978,1024,1027,1033,1294,1304,1307,1313,1319,1392,1398,1450,1458,1461,1467,1518,1521,1527,1560,1563,1569,1604],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"sap-fiori-visual-filter",[51],{"type":52,"value":53},"text","SAP Fiori Visual Filter",{"type":46,"tag":55,"props":56,"children":58},"h2",{"id":57},"purpose",[59],{"type":52,"value":60},"Purpose",{"type":46,"tag":62,"props":63,"children":64},"p",{},[65,67,73],{"type":52,"value":66},"Add ",{"type":46,"tag":68,"props":69,"children":70},"strong",{},[71],{"type":52,"value":72},"chart-based filters (Bar\u002FLine)",{"type":52,"value":74}," to filter bar or value help dialog (OData V4).",{"type":46,"tag":76,"props":77,"children":78},"hr",{},[],{"type":46,"tag":55,"props":80,"children":82},{"id":81},"mandatory-gather-required-inputs-first",[83],{"type":52,"value":84},"MANDATORY: Gather Required Inputs First",{"type":46,"tag":62,"props":86,"children":87},{},[88],{"type":46,"tag":68,"props":89,"children":90},{},[91],{"type":52,"value":92},"STOP and ASK the user for ALL of these inputs if ANY are missing from the prompt:",{"type":46,"tag":94,"props":95,"children":96},"ol",{},[97,108,118,128,138],{"type":46,"tag":98,"props":99,"children":100},"li",{},[101,106],{"type":46,"tag":68,"props":102,"children":103},{},[104],{"type":52,"value":105},"Entity",{"type":52,"value":107}," - Which entity to add the visual filter to",{"type":46,"tag":98,"props":109,"children":110},{},[111,116],{"type":46,"tag":68,"props":112,"children":113},{},[114],{"type":52,"value":115},"Dimension field",{"type":52,"value":117}," - The field to filter by (e.g., Category, Status, Destination)",{"type":46,"tag":98,"props":119,"children":120},{},[121,126],{"type":46,"tag":68,"props":122,"children":123},{},[124],{"type":52,"value":125},"Measure field",{"type":52,"value":127}," - The numeric field to aggregate (e.g., Amount, TotalPrice, ReservationPrice)",{"type":46,"tag":98,"props":129,"children":130},{},[131,136],{"type":46,"tag":68,"props":132,"children":133},{},[134],{"type":52,"value":135},"Aggregation method",{"type":52,"value":137}," - How to aggregate: sum, avg, min, or max",{"type":46,"tag":98,"props":139,"children":140},{},[141,146],{"type":46,"tag":68,"props":142,"children":143},{},[144],{"type":52,"value":145},"Chart type",{"type":52,"value":147}," - Bar or Line (recommend Bar as default)",{"type":46,"tag":62,"props":149,"children":150},{},[151],{"type":46,"tag":68,"props":152,"children":153},{},[154],{"type":52,"value":155},"DO NOT proceed with implementation until all inputs are confirmed.",{"type":46,"tag":76,"props":157,"children":158},{},[],{"type":46,"tag":55,"props":160,"children":162},{"id":161},"cap-implementation",[163],{"type":52,"value":164},"CAP Implementation",{"type":46,"tag":166,"props":167,"children":169},"h3",{"id":168},"enable-aggregation-mandatory",[170],{"type":52,"value":171},"Enable Aggregation (MANDATORY)",{"type":46,"tag":173,"props":174,"children":179},"pre",{"className":175,"code":176,"language":177,"meta":178,"style":178},"language-cds shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","@Aggregation.ApplySupported: {\n  Transformations: ['aggregate','groupby'],\n  AggregatableProperties: [{ Property: Amount }],\n  GroupableProperties: [Category]\n}\n","cds","",[180],{"type":46,"tag":181,"props":182,"children":183},"code",{"__ignoreMap":178},[184,195,204,213,221],{"type":46,"tag":185,"props":186,"children":189},"span",{"class":187,"line":188},"line",1,[190],{"type":46,"tag":185,"props":191,"children":192},{},[193],{"type":52,"value":194},"@Aggregation.ApplySupported: {\n",{"type":46,"tag":185,"props":196,"children":198},{"class":187,"line":197},2,[199],{"type":46,"tag":185,"props":200,"children":201},{},[202],{"type":52,"value":203},"  Transformations: ['aggregate','groupby'],\n",{"type":46,"tag":185,"props":205,"children":207},{"class":187,"line":206},3,[208],{"type":46,"tag":185,"props":209,"children":210},{},[211],{"type":52,"value":212},"  AggregatableProperties: [{ Property: Amount }],\n",{"type":46,"tag":185,"props":214,"children":215},{"class":187,"line":29},[216],{"type":46,"tag":185,"props":217,"children":218},{},[219],{"type":52,"value":220},"  GroupableProperties: [Category]\n",{"type":46,"tag":185,"props":222,"children":224},{"class":187,"line":223},5,[225],{"type":46,"tag":185,"props":226,"children":227},{},[228],{"type":52,"value":229},"}\n",{"type":46,"tag":166,"props":231,"children":233},{"id":232},"aggregated-property-measure",[234],{"type":52,"value":235},"Aggregated Property (Measure)",{"type":46,"tag":173,"props":237,"children":239},{"className":175,"code":238,"language":177,"meta":178,"style":178},"Analytics.AggregatedProperty #Amount_sum : {\n  $Type: 'Analytics.AggregatedPropertyType',\n  Name: 'Amount_sum',\n  AggregatableProperty: Amount,\n  AggregationMethod: 'sum'\n}\n",[240],{"type":46,"tag":181,"props":241,"children":242},{"__ignoreMap":178},[243,251,259,267,275,283],{"type":46,"tag":185,"props":244,"children":245},{"class":187,"line":188},[246],{"type":46,"tag":185,"props":247,"children":248},{},[249],{"type":52,"value":250},"Analytics.AggregatedProperty #Amount_sum : {\n",{"type":46,"tag":185,"props":252,"children":253},{"class":187,"line":197},[254],{"type":46,"tag":185,"props":255,"children":256},{},[257],{"type":52,"value":258},"  $Type: 'Analytics.AggregatedPropertyType',\n",{"type":46,"tag":185,"props":260,"children":261},{"class":187,"line":206},[262],{"type":46,"tag":185,"props":263,"children":264},{},[265],{"type":52,"value":266},"  Name: 'Amount_sum',\n",{"type":46,"tag":185,"props":268,"children":269},{"class":187,"line":29},[270],{"type":46,"tag":185,"props":271,"children":272},{},[273],{"type":52,"value":274},"  AggregatableProperty: Amount,\n",{"type":46,"tag":185,"props":276,"children":277},{"class":187,"line":223},[278],{"type":46,"tag":185,"props":279,"children":280},{},[281],{"type":52,"value":282},"  AggregationMethod: 'sum'\n",{"type":46,"tag":185,"props":284,"children":286},{"class":187,"line":285},6,[287],{"type":46,"tag":185,"props":288,"children":289},{},[290],{"type":52,"value":229},{"type":46,"tag":166,"props":292,"children":294},{"id":293},"chart-annotation",[295],{"type":52,"value":296},"Chart Annotation",{"type":46,"tag":173,"props":298,"children":300},{"className":175,"code":299,"language":177,"meta":178,"style":178},"UI.Chart #visualFilter : {\n  ChartType: #Bar,\n  Dimensions: [Category],\n  DynamicMeasures: ['@Analytics.AggregatedProperty#Amount_sum']\n}\n",[301],{"type":46,"tag":181,"props":302,"children":303},{"__ignoreMap":178},[304,312,320,328,336],{"type":46,"tag":185,"props":305,"children":306},{"class":187,"line":188},[307],{"type":46,"tag":185,"props":308,"children":309},{},[310],{"type":52,"value":311},"UI.Chart #visualFilter : {\n",{"type":46,"tag":185,"props":313,"children":314},{"class":187,"line":197},[315],{"type":46,"tag":185,"props":316,"children":317},{},[318],{"type":52,"value":319},"  ChartType: #Bar,\n",{"type":46,"tag":185,"props":321,"children":322},{"class":187,"line":206},[323],{"type":46,"tag":185,"props":324,"children":325},{},[326],{"type":52,"value":327},"  Dimensions: [Category],\n",{"type":46,"tag":185,"props":329,"children":330},{"class":187,"line":29},[331],{"type":46,"tag":185,"props":332,"children":333},{},[334],{"type":52,"value":335},"  DynamicMeasures: ['@Analytics.AggregatedProperty#Amount_sum']\n",{"type":46,"tag":185,"props":337,"children":338},{"class":187,"line":223},[339],{"type":46,"tag":185,"props":340,"children":341},{},[342],{"type":52,"value":229},{"type":46,"tag":62,"props":344,"children":345},{},[346,348],{"type":52,"value":347},"✅ Uses ",{"type":46,"tag":68,"props":349,"children":350},{},[351],{"type":52,"value":352},"DynamicMeasures",{"type":46,"tag":166,"props":354,"children":356},{"id":355},"presentationvariant",[357],{"type":52,"value":358},"PresentationVariant",{"type":46,"tag":173,"props":360,"children":362},{"className":175,"code":361,"language":177,"meta":178,"style":178},"UI.PresentationVariant #visualFilter: {\n  Visualizations: ['@UI.Chart#visualFilter']\n}\n",[363],{"type":46,"tag":181,"props":364,"children":365},{"__ignoreMap":178},[366,374,382],{"type":46,"tag":185,"props":367,"children":368},{"class":187,"line":188},[369],{"type":46,"tag":185,"props":370,"children":371},{},[372],{"type":52,"value":373},"UI.PresentationVariant #visualFilter: {\n",{"type":46,"tag":185,"props":375,"children":376},{"class":187,"line":197},[377],{"type":46,"tag":185,"props":378,"children":379},{},[380],{"type":52,"value":381},"  Visualizations: ['@UI.Chart#visualFilter']\n",{"type":46,"tag":185,"props":383,"children":384},{"class":187,"line":206},[385],{"type":46,"tag":185,"props":386,"children":387},{},[388],{"type":52,"value":229},{"type":46,"tag":166,"props":390,"children":392},{"id":391},"valuelist-on-dimension-field",[393],{"type":52,"value":394},"ValueList (on Dimension Field)",{"type":46,"tag":173,"props":396,"children":398},{"className":175,"code":397,"language":177,"meta":178,"style":178},"Category @Common.ValueList #visualFilter: {\n  $Type: 'Common.ValueListType',\n  CollectionPath: 'EntityName',\n  Parameters: [\n    { $Type: 'Common.ValueListParameterInOut', LocalDataProperty: Category, ValueListProperty: 'Category' }\n  ],\n  PresentationVariantQualifier: 'visualFilter'\n}\n",[399],{"type":46,"tag":181,"props":400,"children":401},{"__ignoreMap":178},[402,410,418,426,434,442,450,459],{"type":46,"tag":185,"props":403,"children":404},{"class":187,"line":188},[405],{"type":46,"tag":185,"props":406,"children":407},{},[408],{"type":52,"value":409},"Category @Common.ValueList #visualFilter: {\n",{"type":46,"tag":185,"props":411,"children":412},{"class":187,"line":197},[413],{"type":46,"tag":185,"props":414,"children":415},{},[416],{"type":52,"value":417},"  $Type: 'Common.ValueListType',\n",{"type":46,"tag":185,"props":419,"children":420},{"class":187,"line":206},[421],{"type":46,"tag":185,"props":422,"children":423},{},[424],{"type":52,"value":425},"  CollectionPath: 'EntityName',\n",{"type":46,"tag":185,"props":427,"children":428},{"class":187,"line":29},[429],{"type":46,"tag":185,"props":430,"children":431},{},[432],{"type":52,"value":433},"  Parameters: [\n",{"type":46,"tag":185,"props":435,"children":436},{"class":187,"line":223},[437],{"type":46,"tag":185,"props":438,"children":439},{},[440],{"type":52,"value":441},"    { $Type: 'Common.ValueListParameterInOut', LocalDataProperty: Category, ValueListProperty: 'Category' }\n",{"type":46,"tag":185,"props":443,"children":444},{"class":187,"line":285},[445],{"type":46,"tag":185,"props":446,"children":447},{},[448],{"type":52,"value":449},"  ],\n",{"type":46,"tag":185,"props":451,"children":453},{"class":187,"line":452},7,[454],{"type":46,"tag":185,"props":455,"children":456},{},[457],{"type":52,"value":458},"  PresentationVariantQualifier: 'visualFilter'\n",{"type":46,"tag":185,"props":460,"children":462},{"class":187,"line":461},8,[463],{"type":46,"tag":185,"props":464,"children":465},{},[466],{"type":52,"value":229},{"type":46,"tag":166,"props":468,"children":470},{"id":469},"selectionfields",[471],{"type":52,"value":472},"SelectionFields",{"type":46,"tag":173,"props":474,"children":476},{"className":175,"code":475,"language":177,"meta":178,"style":178},"UI.SelectionFields: [Category]\n",[477],{"type":46,"tag":181,"props":478,"children":479},{"__ignoreMap":178},[480],{"type":46,"tag":185,"props":481,"children":482},{"class":187,"line":188},[483],{"type":46,"tag":185,"props":484,"children":485},{},[486],{"type":52,"value":475},{"type":46,"tag":76,"props":488,"children":489},{},[],{"type":46,"tag":55,"props":491,"children":493},{"id":492},"abap-rap-implementation",[494],{"type":52,"value":495},"ABAP RAP Implementation",{"type":46,"tag":497,"props":498,"children":499},"ul",{},[500],{"type":46,"tag":98,"props":501,"children":502},{},[503],{"type":52,"value":504},"Aggregation.ApplySupported and Aggregation.CustomAggregate annotations must be available in metadata.xml (RAP). If not, below backend configuration is required.",{"type":46,"tag":166,"props":506,"children":508},{"id":507},"backend-cds-mandatory",[509],{"type":52,"value":510},"Backend CDS (MANDATORY)",{"type":46,"tag":173,"props":512,"children":516},{"className":513,"code":514,"language":515,"meta":178,"style":178},"language-abap shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","@OData.applySupportedForAggregation: #FULL\ndefine root view entity ZC_ENTITY\n  provider contract analytical_query\n  as projection on ZI_ENTITY\n{\n  key EntityID,\n\n  @Aggregation.default: #SUM\n  Amount,\n\n  Category\n}\n","abap",[517],{"type":46,"tag":181,"props":518,"children":519},{"__ignoreMap":178},[520,528,536,544,552,560,568,577,585,594,601,610],{"type":46,"tag":185,"props":521,"children":522},{"class":187,"line":188},[523],{"type":46,"tag":185,"props":524,"children":525},{},[526],{"type":52,"value":527},"@OData.applySupportedForAggregation: #FULL\n",{"type":46,"tag":185,"props":529,"children":530},{"class":187,"line":197},[531],{"type":46,"tag":185,"props":532,"children":533},{},[534],{"type":52,"value":535},"define root view entity ZC_ENTITY\n",{"type":46,"tag":185,"props":537,"children":538},{"class":187,"line":206},[539],{"type":46,"tag":185,"props":540,"children":541},{},[542],{"type":52,"value":543},"  provider contract analytical_query\n",{"type":46,"tag":185,"props":545,"children":546},{"class":187,"line":29},[547],{"type":46,"tag":185,"props":548,"children":549},{},[550],{"type":52,"value":551},"  as projection on ZI_ENTITY\n",{"type":46,"tag":185,"props":553,"children":554},{"class":187,"line":223},[555],{"type":46,"tag":185,"props":556,"children":557},{},[558],{"type":52,"value":559},"{\n",{"type":46,"tag":185,"props":561,"children":562},{"class":187,"line":285},[563],{"type":46,"tag":185,"props":564,"children":565},{},[566],{"type":52,"value":567},"  key EntityID,\n",{"type":46,"tag":185,"props":569,"children":570},{"class":187,"line":452},[571],{"type":46,"tag":185,"props":572,"children":574},{"emptyLinePlaceholder":573},true,[575],{"type":52,"value":576},"\n",{"type":46,"tag":185,"props":578,"children":579},{"class":187,"line":461},[580],{"type":46,"tag":185,"props":581,"children":582},{},[583],{"type":52,"value":584},"  @Aggregation.default: #SUM\n",{"type":46,"tag":185,"props":586,"children":588},{"class":187,"line":587},9,[589],{"type":46,"tag":185,"props":590,"children":591},{},[592],{"type":52,"value":593},"  Amount,\n",{"type":46,"tag":185,"props":595,"children":596},{"class":187,"line":25},[597],{"type":46,"tag":185,"props":598,"children":599},{"emptyLinePlaceholder":573},[600],{"type":52,"value":576},{"type":46,"tag":185,"props":602,"children":604},{"class":187,"line":603},11,[605],{"type":46,"tag":185,"props":606,"children":607},{},[608],{"type":52,"value":609},"  Category\n",{"type":46,"tag":185,"props":611,"children":613},{"class":187,"line":612},12,[614],{"type":46,"tag":185,"props":615,"children":616},{},[617],{"type":52,"value":229},{"type":46,"tag":166,"props":619,"children":621},{"id":620},"chart-annotation-1",[622],{"type":52,"value":296},{"type":46,"tag":173,"props":624,"children":628},{"className":625,"code":626,"language":627,"meta":178,"style":178},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CAnnotation Term=\"UI.Chart\" Qualifier=\"visualFilter\">\n  \u003CRecord Type=\"UI.ChartDefinitionType\">\n    \u003CPropertyValue Property=\"ChartType\" EnumMember=\"UI.ChartType\u002FBar\"\u002F>\n    \u003CPropertyValue Property=\"Dimensions\">\n      \u003CCollection>\n        \u003CPropertyPath>Category\u003C\u002FPropertyPath>\n      \u003C\u002FCollection>\n    \u003C\u002FPropertyValue>\n    \u003CPropertyValue Property=\"Measures\">\n      \u003CCollection>\n        \u003CPropertyPath>Amount\u003C\u002FPropertyPath>\n      \u003C\u002FCollection>\n    \u003C\u002FPropertyValue>\n  \u003C\u002FRecord>\n\u003C\u002FAnnotation>\n","xml",[629],{"type":46,"tag":181,"props":630,"children":631},{"__ignoreMap":178},[632,640,648,656,664,672,680,688,696,704,711,719,726,734,743],{"type":46,"tag":185,"props":633,"children":634},{"class":187,"line":188},[635],{"type":46,"tag":185,"props":636,"children":637},{},[638],{"type":52,"value":639},"\u003CAnnotation Term=\"UI.Chart\" Qualifier=\"visualFilter\">\n",{"type":46,"tag":185,"props":641,"children":642},{"class":187,"line":197},[643],{"type":46,"tag":185,"props":644,"children":645},{},[646],{"type":52,"value":647},"  \u003CRecord Type=\"UI.ChartDefinitionType\">\n",{"type":46,"tag":185,"props":649,"children":650},{"class":187,"line":206},[651],{"type":46,"tag":185,"props":652,"children":653},{},[654],{"type":52,"value":655},"    \u003CPropertyValue Property=\"ChartType\" EnumMember=\"UI.ChartType\u002FBar\"\u002F>\n",{"type":46,"tag":185,"props":657,"children":658},{"class":187,"line":29},[659],{"type":46,"tag":185,"props":660,"children":661},{},[662],{"type":52,"value":663},"    \u003CPropertyValue Property=\"Dimensions\">\n",{"type":46,"tag":185,"props":665,"children":666},{"class":187,"line":223},[667],{"type":46,"tag":185,"props":668,"children":669},{},[670],{"type":52,"value":671},"      \u003CCollection>\n",{"type":46,"tag":185,"props":673,"children":674},{"class":187,"line":285},[675],{"type":46,"tag":185,"props":676,"children":677},{},[678],{"type":52,"value":679},"        \u003CPropertyPath>Category\u003C\u002FPropertyPath>\n",{"type":46,"tag":185,"props":681,"children":682},{"class":187,"line":452},[683],{"type":46,"tag":185,"props":684,"children":685},{},[686],{"type":52,"value":687},"      \u003C\u002FCollection>\n",{"type":46,"tag":185,"props":689,"children":690},{"class":187,"line":461},[691],{"type":46,"tag":185,"props":692,"children":693},{},[694],{"type":52,"value":695},"    \u003C\u002FPropertyValue>\n",{"type":46,"tag":185,"props":697,"children":698},{"class":187,"line":587},[699],{"type":46,"tag":185,"props":700,"children":701},{},[702],{"type":52,"value":703},"    \u003CPropertyValue Property=\"Measures\">\n",{"type":46,"tag":185,"props":705,"children":706},{"class":187,"line":25},[707],{"type":46,"tag":185,"props":708,"children":709},{},[710],{"type":52,"value":671},{"type":46,"tag":185,"props":712,"children":713},{"class":187,"line":603},[714],{"type":46,"tag":185,"props":715,"children":716},{},[717],{"type":52,"value":718},"        \u003CPropertyPath>Amount\u003C\u002FPropertyPath>\n",{"type":46,"tag":185,"props":720,"children":721},{"class":187,"line":612},[722],{"type":46,"tag":185,"props":723,"children":724},{},[725],{"type":52,"value":687},{"type":46,"tag":185,"props":727,"children":729},{"class":187,"line":728},13,[730],{"type":46,"tag":185,"props":731,"children":732},{},[733],{"type":52,"value":695},{"type":46,"tag":185,"props":735,"children":737},{"class":187,"line":736},14,[738],{"type":46,"tag":185,"props":739,"children":740},{},[741],{"type":52,"value":742},"  \u003C\u002FRecord>\n",{"type":46,"tag":185,"props":744,"children":746},{"class":187,"line":745},15,[747],{"type":46,"tag":185,"props":748,"children":749},{},[750],{"type":52,"value":751},"\u003C\u002FAnnotation>\n",{"type":46,"tag":62,"props":753,"children":754},{},[755,756,761,765,767],{"type":52,"value":347},{"type":46,"tag":68,"props":757,"children":758},{},[759],{"type":52,"value":760},"Measures (not DynamicMeasures)",{"type":46,"tag":762,"props":763,"children":764},"br",{},[],{"type":52,"value":766},"\n❌ Metadata is ",{"type":46,"tag":68,"props":768,"children":769},{},[770],{"type":52,"value":771},"read-only",{"type":46,"tag":166,"props":773,"children":775},{"id":774},"presentationvariant-annotation",[776],{"type":52,"value":777},"PresentationVariant Annotation",{"type":46,"tag":173,"props":779,"children":781},{"className":625,"code":780,"language":627,"meta":178,"style":178},"\u003CAnnotation Term=\"UI.PresentationVariant\" Qualifier=\"visualFilter\">\n  \u003CRecord Type=\"UI.PresentationVariantType\">\n    \u003CPropertyValue Property=\"Visualizations\">\n      \u003CCollection>\n        \u003CAnnotationPath>@UI.Chart#visualFilter\u003C\u002FAnnotationPath>\n      \u003C\u002FCollection>\n    \u003C\u002FPropertyValue>\n  \u003C\u002FRecord>\n\u003C\u002FAnnotation>\n",[782],{"type":46,"tag":181,"props":783,"children":784},{"__ignoreMap":178},[785,793,801,809,816,824,831,838,845],{"type":46,"tag":185,"props":786,"children":787},{"class":187,"line":188},[788],{"type":46,"tag":185,"props":789,"children":790},{},[791],{"type":52,"value":792},"\u003CAnnotation Term=\"UI.PresentationVariant\" Qualifier=\"visualFilter\">\n",{"type":46,"tag":185,"props":794,"children":795},{"class":187,"line":197},[796],{"type":46,"tag":185,"props":797,"children":798},{},[799],{"type":52,"value":800},"  \u003CRecord Type=\"UI.PresentationVariantType\">\n",{"type":46,"tag":185,"props":802,"children":803},{"class":187,"line":206},[804],{"type":46,"tag":185,"props":805,"children":806},{},[807],{"type":52,"value":808},"    \u003CPropertyValue Property=\"Visualizations\">\n",{"type":46,"tag":185,"props":810,"children":811},{"class":187,"line":29},[812],{"type":46,"tag":185,"props":813,"children":814},{},[815],{"type":52,"value":671},{"type":46,"tag":185,"props":817,"children":818},{"class":187,"line":223},[819],{"type":46,"tag":185,"props":820,"children":821},{},[822],{"type":52,"value":823},"        \u003CAnnotationPath>@UI.Chart#visualFilter\u003C\u002FAnnotationPath>\n",{"type":46,"tag":185,"props":825,"children":826},{"class":187,"line":285},[827],{"type":46,"tag":185,"props":828,"children":829},{},[830],{"type":52,"value":687},{"type":46,"tag":185,"props":832,"children":833},{"class":187,"line":452},[834],{"type":46,"tag":185,"props":835,"children":836},{},[837],{"type":52,"value":695},{"type":46,"tag":185,"props":839,"children":840},{"class":187,"line":461},[841],{"type":46,"tag":185,"props":842,"children":843},{},[844],{"type":52,"value":742},{"type":46,"tag":185,"props":846,"children":847},{"class":187,"line":587},[848],{"type":46,"tag":185,"props":849,"children":850},{},[851],{"type":52,"value":751},{"type":46,"tag":166,"props":853,"children":855},{"id":854},"valuelist-annotation",[856],{"type":52,"value":857},"ValueList Annotation",{"type":46,"tag":173,"props":859,"children":861},{"className":625,"code":860,"language":627,"meta":178,"style":178},"\u003CAnnotation Term=\"Common.ValueList\" Qualifier=\"visualFilter\">\n  \u003CRecord Type=\"Common.ValueListType\">\n    \u003CPropertyValue Property=\"CollectionPath\" String=\"EntityName\"\u002F>\n    \u003CPropertyValue Property=\"PresentationVariantQualifier\" String=\"visualFilter\"\u002F>\n    \u003CPropertyValue Property=\"Parameters\">\n      \u003CCollection>\n        \u003CRecord Type=\"Common.ValueListParameterInOut\">\n          \u003CPropertyValue Property=\"LocalDataProperty\" PropertyPath=\"Category\"\u002F>\n          \u003CPropertyValue Property=\"ValueListProperty\" String=\"Category\"\u002F>\n        \u003C\u002FRecord>\n      \u003C\u002FCollection>\n    \u003C\u002FPropertyValue>\n  \u003C\u002FRecord>\n\u003C\u002FAnnotation>\n",[862],{"type":46,"tag":181,"props":863,"children":864},{"__ignoreMap":178},[865,873,881,889,897,905,912,920,928,936,944,951,958,965],{"type":46,"tag":185,"props":866,"children":867},{"class":187,"line":188},[868],{"type":46,"tag":185,"props":869,"children":870},{},[871],{"type":52,"value":872},"\u003CAnnotation Term=\"Common.ValueList\" Qualifier=\"visualFilter\">\n",{"type":46,"tag":185,"props":874,"children":875},{"class":187,"line":197},[876],{"type":46,"tag":185,"props":877,"children":878},{},[879],{"type":52,"value":880},"  \u003CRecord Type=\"Common.ValueListType\">\n",{"type":46,"tag":185,"props":882,"children":883},{"class":187,"line":206},[884],{"type":46,"tag":185,"props":885,"children":886},{},[887],{"type":52,"value":888},"    \u003CPropertyValue Property=\"CollectionPath\" String=\"EntityName\"\u002F>\n",{"type":46,"tag":185,"props":890,"children":891},{"class":187,"line":29},[892],{"type":46,"tag":185,"props":893,"children":894},{},[895],{"type":52,"value":896},"    \u003CPropertyValue Property=\"PresentationVariantQualifier\" String=\"visualFilter\"\u002F>\n",{"type":46,"tag":185,"props":898,"children":899},{"class":187,"line":223},[900],{"type":46,"tag":185,"props":901,"children":902},{},[903],{"type":52,"value":904},"    \u003CPropertyValue Property=\"Parameters\">\n",{"type":46,"tag":185,"props":906,"children":907},{"class":187,"line":285},[908],{"type":46,"tag":185,"props":909,"children":910},{},[911],{"type":52,"value":671},{"type":46,"tag":185,"props":913,"children":914},{"class":187,"line":452},[915],{"type":46,"tag":185,"props":916,"children":917},{},[918],{"type":52,"value":919},"        \u003CRecord Type=\"Common.ValueListParameterInOut\">\n",{"type":46,"tag":185,"props":921,"children":922},{"class":187,"line":461},[923],{"type":46,"tag":185,"props":924,"children":925},{},[926],{"type":52,"value":927},"          \u003CPropertyValue Property=\"LocalDataProperty\" PropertyPath=\"Category\"\u002F>\n",{"type":46,"tag":185,"props":929,"children":930},{"class":187,"line":587},[931],{"type":46,"tag":185,"props":932,"children":933},{},[934],{"type":52,"value":935},"          \u003CPropertyValue Property=\"ValueListProperty\" String=\"Category\"\u002F>\n",{"type":46,"tag":185,"props":937,"children":938},{"class":187,"line":25},[939],{"type":46,"tag":185,"props":940,"children":941},{},[942],{"type":52,"value":943},"        \u003C\u002FRecord>\n",{"type":46,"tag":185,"props":945,"children":946},{"class":187,"line":603},[947],{"type":46,"tag":185,"props":948,"children":949},{},[950],{"type":52,"value":687},{"type":46,"tag":185,"props":952,"children":953},{"class":187,"line":612},[954],{"type":46,"tag":185,"props":955,"children":956},{},[957],{"type":52,"value":695},{"type":46,"tag":185,"props":959,"children":960},{"class":187,"line":728},[961],{"type":46,"tag":185,"props":962,"children":963},{},[964],{"type":52,"value":742},{"type":46,"tag":185,"props":966,"children":967},{"class":187,"line":736},[968],{"type":46,"tag":185,"props":969,"children":970},{},[971],{"type":52,"value":751},{"type":46,"tag":166,"props":973,"children":975},{"id":974},"selectionfields-annotation",[976],{"type":52,"value":977},"SelectionFields Annotation",{"type":46,"tag":173,"props":979,"children":981},{"className":625,"code":980,"language":627,"meta":178,"style":178},"\u003CAnnotation Term=\"UI.SelectionFields\">\n  \u003CCollection>\n    \u003CPropertyPath>Category\u003C\u002FPropertyPath>\n  \u003C\u002FCollection>\n\u003C\u002FAnnotation>\n",[982],{"type":46,"tag":181,"props":983,"children":984},{"__ignoreMap":178},[985,993,1001,1009,1017],{"type":46,"tag":185,"props":986,"children":987},{"class":187,"line":188},[988],{"type":46,"tag":185,"props":989,"children":990},{},[991],{"type":52,"value":992},"\u003CAnnotation Term=\"UI.SelectionFields\">\n",{"type":46,"tag":185,"props":994,"children":995},{"class":187,"line":197},[996],{"type":46,"tag":185,"props":997,"children":998},{},[999],{"type":52,"value":1000},"  \u003CCollection>\n",{"type":46,"tag":185,"props":1002,"children":1003},{"class":187,"line":206},[1004],{"type":46,"tag":185,"props":1005,"children":1006},{},[1007],{"type":52,"value":1008},"    \u003CPropertyPath>Category\u003C\u002FPropertyPath>\n",{"type":46,"tag":185,"props":1010,"children":1011},{"class":187,"line":29},[1012],{"type":46,"tag":185,"props":1013,"children":1014},{},[1015],{"type":52,"value":1016},"  \u003C\u002FCollection>\n",{"type":46,"tag":185,"props":1018,"children":1019},{"class":187,"line":223},[1020],{"type":46,"tag":185,"props":1021,"children":1022},{},[1023],{"type":52,"value":751},{"type":46,"tag":76,"props":1025,"children":1026},{},[],{"type":46,"tag":55,"props":1028,"children":1030},{"id":1029},"manifest-configuration-required",[1031],{"type":52,"value":1032},"Manifest Configuration (REQUIRED)",{"type":46,"tag":173,"props":1034,"children":1038},{"className":1035,"code":1036,"language":1037,"meta":178,"style":178},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\"@com.sap.vocabularies.UI.v1.SelectionFields\": {\n  \"layout\": \"CompactVisual\",\n  \"initialLayout\": \"Visual\",\n  \"filterFields\": {\n    \"Category\": {\n      \"visualFilter\": {\n        \"valueList\": \"com.sap.vocabularies.Common.v1.ValueList#visualFilter\"\n      }\n    }\n  }\n}\n","json",[1039],{"type":46,"tag":181,"props":1040,"children":1041},{"__ignoreMap":178},[1042,1071,1113,1150,1175,1201,1227,1263,1271,1279,1287],{"type":46,"tag":185,"props":1043,"children":1044},{"class":187,"line":188},[1045,1051,1057,1061,1067],{"type":46,"tag":185,"props":1046,"children":1048},{"style":1047},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1049],{"type":52,"value":1050},"\"",{"type":46,"tag":185,"props":1052,"children":1054},{"style":1053},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1055],{"type":52,"value":1056},"@com.sap.vocabularies.UI.v1.SelectionFields",{"type":46,"tag":185,"props":1058,"children":1059},{"style":1047},[1060],{"type":52,"value":1050},{"type":46,"tag":185,"props":1062,"children":1064},{"style":1063},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1065],{"type":52,"value":1066},": ",{"type":46,"tag":185,"props":1068,"children":1069},{"style":1047},[1070],{"type":52,"value":559},{"type":46,"tag":185,"props":1072,"children":1073},{"class":187,"line":197},[1074,1079,1085,1089,1094,1099,1104,1108],{"type":46,"tag":185,"props":1075,"children":1076},{"style":1047},[1077],{"type":52,"value":1078},"  \"",{"type":46,"tag":185,"props":1080,"children":1082},{"style":1081},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1083],{"type":52,"value":1084},"layout",{"type":46,"tag":185,"props":1086,"children":1087},{"style":1047},[1088],{"type":52,"value":1050},{"type":46,"tag":185,"props":1090,"children":1091},{"style":1047},[1092],{"type":52,"value":1093},":",{"type":46,"tag":185,"props":1095,"children":1096},{"style":1047},[1097],{"type":52,"value":1098}," \"",{"type":46,"tag":185,"props":1100,"children":1101},{"style":1053},[1102],{"type":52,"value":1103},"CompactVisual",{"type":46,"tag":185,"props":1105,"children":1106},{"style":1047},[1107],{"type":52,"value":1050},{"type":46,"tag":185,"props":1109,"children":1110},{"style":1047},[1111],{"type":52,"value":1112},",\n",{"type":46,"tag":185,"props":1114,"children":1115},{"class":187,"line":206},[1116,1120,1125,1129,1133,1137,1142,1146],{"type":46,"tag":185,"props":1117,"children":1118},{"style":1047},[1119],{"type":52,"value":1078},{"type":46,"tag":185,"props":1121,"children":1122},{"style":1081},[1123],{"type":52,"value":1124},"initialLayout",{"type":46,"tag":185,"props":1126,"children":1127},{"style":1047},[1128],{"type":52,"value":1050},{"type":46,"tag":185,"props":1130,"children":1131},{"style":1047},[1132],{"type":52,"value":1093},{"type":46,"tag":185,"props":1134,"children":1135},{"style":1047},[1136],{"type":52,"value":1098},{"type":46,"tag":185,"props":1138,"children":1139},{"style":1053},[1140],{"type":52,"value":1141},"Visual",{"type":46,"tag":185,"props":1143,"children":1144},{"style":1047},[1145],{"type":52,"value":1050},{"type":46,"tag":185,"props":1147,"children":1148},{"style":1047},[1149],{"type":52,"value":1112},{"type":46,"tag":185,"props":1151,"children":1152},{"class":187,"line":29},[1153,1157,1162,1166,1170],{"type":46,"tag":185,"props":1154,"children":1155},{"style":1047},[1156],{"type":52,"value":1078},{"type":46,"tag":185,"props":1158,"children":1159},{"style":1081},[1160],{"type":52,"value":1161},"filterFields",{"type":46,"tag":185,"props":1163,"children":1164},{"style":1047},[1165],{"type":52,"value":1050},{"type":46,"tag":185,"props":1167,"children":1168},{"style":1047},[1169],{"type":52,"value":1093},{"type":46,"tag":185,"props":1171,"children":1172},{"style":1047},[1173],{"type":52,"value":1174}," {\n",{"type":46,"tag":185,"props":1176,"children":1177},{"class":187,"line":223},[1178,1183,1189,1193,1197],{"type":46,"tag":185,"props":1179,"children":1180},{"style":1047},[1181],{"type":52,"value":1182},"    \"",{"type":46,"tag":185,"props":1184,"children":1186},{"style":1185},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1187],{"type":52,"value":1188},"Category",{"type":46,"tag":185,"props":1190,"children":1191},{"style":1047},[1192],{"type":52,"value":1050},{"type":46,"tag":185,"props":1194,"children":1195},{"style":1047},[1196],{"type":52,"value":1093},{"type":46,"tag":185,"props":1198,"children":1199},{"style":1047},[1200],{"type":52,"value":1174},{"type":46,"tag":185,"props":1202,"children":1203},{"class":187,"line":285},[1204,1209,1215,1219,1223],{"type":46,"tag":185,"props":1205,"children":1206},{"style":1047},[1207],{"type":52,"value":1208},"      \"",{"type":46,"tag":185,"props":1210,"children":1212},{"style":1211},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1213],{"type":52,"value":1214},"visualFilter",{"type":46,"tag":185,"props":1216,"children":1217},{"style":1047},[1218],{"type":52,"value":1050},{"type":46,"tag":185,"props":1220,"children":1221},{"style":1047},[1222],{"type":52,"value":1093},{"type":46,"tag":185,"props":1224,"children":1225},{"style":1047},[1226],{"type":52,"value":1174},{"type":46,"tag":185,"props":1228,"children":1229},{"class":187,"line":452},[1230,1235,1241,1245,1249,1253,1258],{"type":46,"tag":185,"props":1231,"children":1232},{"style":1047},[1233],{"type":52,"value":1234},"        \"",{"type":46,"tag":185,"props":1236,"children":1238},{"style":1237},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1239],{"type":52,"value":1240},"valueList",{"type":46,"tag":185,"props":1242,"children":1243},{"style":1047},[1244],{"type":52,"value":1050},{"type":46,"tag":185,"props":1246,"children":1247},{"style":1047},[1248],{"type":52,"value":1093},{"type":46,"tag":185,"props":1250,"children":1251},{"style":1047},[1252],{"type":52,"value":1098},{"type":46,"tag":185,"props":1254,"children":1255},{"style":1053},[1256],{"type":52,"value":1257},"com.sap.vocabularies.Common.v1.ValueList#visualFilter",{"type":46,"tag":185,"props":1259,"children":1260},{"style":1047},[1261],{"type":52,"value":1262},"\"\n",{"type":46,"tag":185,"props":1264,"children":1265},{"class":187,"line":461},[1266],{"type":46,"tag":185,"props":1267,"children":1268},{"style":1047},[1269],{"type":52,"value":1270},"      }\n",{"type":46,"tag":185,"props":1272,"children":1273},{"class":187,"line":587},[1274],{"type":46,"tag":185,"props":1275,"children":1276},{"style":1047},[1277],{"type":52,"value":1278},"    }\n",{"type":46,"tag":185,"props":1280,"children":1281},{"class":187,"line":25},[1282],{"type":46,"tag":185,"props":1283,"children":1284},{"style":1047},[1285],{"type":52,"value":1286},"  }\n",{"type":46,"tag":185,"props":1288,"children":1289},{"class":187,"line":603},[1290],{"type":46,"tag":185,"props":1291,"children":1292},{"style":1047},[1293],{"type":52,"value":229},{"type":46,"tag":62,"props":1295,"children":1296},{},[1297,1299,1302],{"type":52,"value":1298},"✅ Connects filter field to visual filter chart",{"type":46,"tag":762,"props":1300,"children":1301},{},[],{"type":52,"value":1303},"\n✅ Sets initial layout to visual mode",{"type":46,"tag":76,"props":1305,"children":1306},{},[],{"type":46,"tag":55,"props":1308,"children":1310},{"id":1309},"testing",[1311],{"type":52,"value":1312},"Testing",{"type":46,"tag":166,"props":1314,"children":1316},{"id":1315},"cap-projects",[1317],{"type":52,"value":1318},"CAP Projects",{"type":46,"tag":173,"props":1320,"children":1324},{"className":1321,"code":1322,"language":1323,"meta":178,"style":178},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm run watch-\u003Capp-name>  # e.g., npm run watch-manage-travel\n# or use generic watch script if available\ncds watch\n","bash",[1325],{"type":46,"tag":181,"props":1326,"children":1327},{"__ignoreMap":178},[1328,1372,1380],{"type":46,"tag":185,"props":1329,"children":1330},{"class":187,"line":188},[1331,1336,1341,1346,1351,1356,1361,1366],{"type":46,"tag":185,"props":1332,"children":1333},{"style":1185},[1334],{"type":52,"value":1335},"npm",{"type":46,"tag":185,"props":1337,"children":1338},{"style":1053},[1339],{"type":52,"value":1340}," run",{"type":46,"tag":185,"props":1342,"children":1343},{"style":1053},[1344],{"type":52,"value":1345}," watch-",{"type":46,"tag":185,"props":1347,"children":1348},{"style":1047},[1349],{"type":52,"value":1350},"\u003C",{"type":46,"tag":185,"props":1352,"children":1353},{"style":1053},[1354],{"type":52,"value":1355},"app-nam",{"type":46,"tag":185,"props":1357,"children":1358},{"style":1063},[1359],{"type":52,"value":1360},"e",{"type":46,"tag":185,"props":1362,"children":1363},{"style":1047},[1364],{"type":52,"value":1365},">",{"type":46,"tag":185,"props":1367,"children":1369},{"style":1368},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1370],{"type":52,"value":1371},"  # e.g., npm run watch-manage-travel\n",{"type":46,"tag":185,"props":1373,"children":1374},{"class":187,"line":197},[1375],{"type":46,"tag":185,"props":1376,"children":1377},{"style":1368},[1378],{"type":52,"value":1379},"# or use generic watch script if available\n",{"type":46,"tag":185,"props":1381,"children":1382},{"class":187,"line":206},[1383,1387],{"type":46,"tag":185,"props":1384,"children":1385},{"style":1185},[1386],{"type":52,"value":177},{"type":46,"tag":185,"props":1388,"children":1389},{"style":1053},[1390],{"type":52,"value":1391}," watch\n",{"type":46,"tag":166,"props":1393,"children":1395},{"id":1394},"rap-projects",[1396],{"type":52,"value":1397},"RAP Projects",{"type":46,"tag":173,"props":1399,"children":1401},{"className":1321,"code":1400,"language":1323,"meta":178,"style":178},"npm run start-mock # Needs metadata refresh\n\nnpm start          # No refresh needed - fetches metadata from live backend at runtime\n",[1402],{"type":46,"tag":181,"props":1403,"children":1404},{"__ignoreMap":178},[1405,1426,1433],{"type":46,"tag":185,"props":1406,"children":1407},{"class":187,"line":188},[1408,1412,1416,1421],{"type":46,"tag":185,"props":1409,"children":1410},{"style":1185},[1411],{"type":52,"value":1335},{"type":46,"tag":185,"props":1413,"children":1414},{"style":1053},[1415],{"type":52,"value":1340},{"type":46,"tag":185,"props":1417,"children":1418},{"style":1053},[1419],{"type":52,"value":1420}," start-mock",{"type":46,"tag":185,"props":1422,"children":1423},{"style":1368},[1424],{"type":52,"value":1425}," # Needs metadata refresh\n",{"type":46,"tag":185,"props":1427,"children":1428},{"class":187,"line":197},[1429],{"type":46,"tag":185,"props":1430,"children":1431},{"emptyLinePlaceholder":573},[1432],{"type":52,"value":576},{"type":46,"tag":185,"props":1434,"children":1435},{"class":187,"line":206},[1436,1440,1445],{"type":46,"tag":185,"props":1437,"children":1438},{"style":1185},[1439],{"type":52,"value":1335},{"type":46,"tag":185,"props":1441,"children":1442},{"style":1053},[1443],{"type":52,"value":1444}," start",{"type":46,"tag":185,"props":1446,"children":1447},{"style":1368},[1448],{"type":52,"value":1449},"          # No refresh needed - fetches metadata from live backend at runtime\n",{"type":46,"tag":497,"props":1451,"children":1452},{},[1453],{"type":46,"tag":98,"props":1454,"children":1455},{},[1456],{"type":52,"value":1457},"Consult fiori mcp server if available on how to refresh metadata for sap\u002Fcloud systems in case of RAP",{"type":46,"tag":76,"props":1459,"children":1460},{},[],{"type":46,"tag":55,"props":1462,"children":1464},{"id":1463},"key-differences",[1465],{"type":52,"value":1466},"Key Differences",{"type":46,"tag":497,"props":1468,"children":1469},{},[1470,1480,1490,1499,1508],{"type":46,"tag":98,"props":1471,"children":1472},{},[1473,1478],{"type":46,"tag":68,"props":1474,"children":1475},{},[1476],{"type":52,"value":1477},"CAP",{"type":52,"value":1479},": DynamicMeasures + AggregatedProperty defined in CDS",{"type":46,"tag":98,"props":1481,"children":1482},{},[1483,1488],{"type":46,"tag":68,"props":1484,"children":1485},{},[1486],{"type":52,"value":1487},"RAP",{"type":52,"value":1489},": Measures + @Aggregation.default in backend CDS only",{"type":46,"tag":98,"props":1491,"children":1492},{},[1493,1497],{"type":46,"tag":68,"props":1494,"children":1495},{},[1496],{"type":52,"value":1477},{"type":52,"value":1498},": Aggregation and chart defined in same place",{"type":46,"tag":98,"props":1500,"children":1501},{},[1502,1506],{"type":46,"tag":68,"props":1503,"children":1504},{},[1505],{"type":52,"value":1487},{"type":52,"value":1507},": Metadata is read-only, must be configured in backend CDS.",{"type":46,"tag":98,"props":1509,"children":1510},{},[1511,1516],{"type":46,"tag":68,"props":1512,"children":1513},{},[1514],{"type":52,"value":1515},"Qualifier",{"type":52,"value":1517},": Must use same qualifier (#visualFilter) across Chart, ValueList, and manifest",{"type":46,"tag":76,"props":1519,"children":1520},{},[],{"type":46,"tag":55,"props":1522,"children":1524},{"id":1523},"common-mistakes",[1525],{"type":52,"value":1526},"Common Mistakes",{"type":46,"tag":497,"props":1528,"children":1529},{},[1530,1535,1540,1545,1550,1555],{"type":46,"tag":98,"props":1531,"children":1532},{},[1533],{"type":52,"value":1534},"Missing backend aggregation setup",{"type":46,"tag":98,"props":1536,"children":1537},{},[1538],{"type":52,"value":1539},"Qualifier mismatch between Chart, ValueList, PresentationVariant, and manifest",{"type":46,"tag":98,"props":1541,"children":1542},{},[1543],{"type":52,"value":1544},"Wrong path in manifest (use full vocabulary path)",{"type":46,"tag":98,"props":1546,"children":1547},{},[1548],{"type":52,"value":1549},"RAP projects using DynamicMeasures instead of Measures",{"type":46,"tag":98,"props":1551,"children":1552},{},[1553],{"type":52,"value":1554},"Forgetting PresentationVariantQualifier in ValueList",{"type":46,"tag":98,"props":1556,"children":1557},{},[1558],{"type":52,"value":1559},"Missing SelectionFields annotation",{"type":46,"tag":76,"props":1561,"children":1562},{},[],{"type":46,"tag":55,"props":1564,"children":1566},{"id":1565},"best-practices",[1567],{"type":52,"value":1568},"Best Practices",{"type":46,"tag":497,"props":1570,"children":1571},{},[1572,1584,1589,1594,1599],{"type":46,"tag":98,"props":1573,"children":1574},{},[1575,1577,1582],{"type":52,"value":1576},"Use ",{"type":46,"tag":68,"props":1578,"children":1579},{},[1580],{"type":52,"value":1581},"Bar chart",{"type":52,"value":1583}," (most common and recommended)",{"type":46,"tag":98,"props":1585,"children":1586},{},[1587],{"type":52,"value":1588},"Limit to 3–5 visual filters per filter bar",{"type":46,"tag":98,"props":1590,"children":1591},{},[1592],{"type":52,"value":1593},"Always configure backend aggregation first",{"type":46,"tag":98,"props":1595,"children":1596},{},[1597],{"type":52,"value":1598},"Use consistent qualifiers throughout",{"type":46,"tag":98,"props":1600,"children":1601},{},[1602],{"type":52,"value":1603},"Test with real data to verify aggregation works correctly",{"type":46,"tag":1605,"props":1606,"children":1607},"style",{},[1608],{"type":52,"value":1609},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1611,"total":1808},[1612,1631,1649,1668,1685,1701,1720,1732,1744,1762,1782,1795],{"slug":1613,"name":1613,"fn":1614,"description":1615,"org":1616,"tags":1617,"stars":25,"repoUrl":26,"updatedAt":1630},"amazon-location-service","integrate Amazon Location Service APIs","Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text search, nearby search, or autocomplete suggestions; retrieve detailed place information including hours, contacts, and addresses; monitor geographical boundaries with geofences; or track device locations. Covers authentication, SDK integration, and all Amazon Location Service capabilities.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1618,1621,1624,1627],{"name":1619,"slug":1620,"type":15},"API Development","api-development",{"name":1622,"slug":1623,"type":15},"AWS","aws",{"name":1625,"slug":1626,"type":15},"Maps","maps",{"name":1628,"slug":1629,"type":15},"Navigation","navigation","2026-07-12T08:13:53.294026",{"slug":1632,"name":1632,"fn":1633,"description":1634,"org":1635,"tags":1636,"stars":25,"repoUrl":26,"updatedAt":1648},"amplify-workflow","build full-stack apps with AWS Amplify","Build and deploy full-stack web and mobile apps with AWS Amplify Gen2 (TypeScript code-first). Covers auth (Cognito), data (AppSync\u002FDynamoDB including schema modeling, enum types, relationships, authorization rules), storage (S3), functions, APIs, and AI (Amplify AI Kit with Bedrock). Supports React, Next.js, Vue, Angular, React Native, Flutter, Swift, and Android. Always use this skill for Amplify Gen2 topics — even for questions you think you know — it contains validated, version-specific patterns that prevent common mistakes. TRIGGER when: user mentions Amplify Gen2; project has amplify\u002F directory or amplify_outputs; code imports @aws-amplify packages; user asks about defineBackend, defineAuth, defineData, defineStorage, or npx ampx. SKIP: Amplify Gen1 (amplify CLI v6), standalone SAM\u002FCDK without Amplify (use aws-serverless), direct Bedrock without Amplify AI Kit (use bedrock).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1637,1640,1641,1644,1645],{"name":1638,"slug":1639,"type":15},"Auth","auth",{"name":1622,"slug":1623,"type":15},{"name":1642,"slug":1643,"type":15},"Database","database",{"name":23,"slug":24,"type":15},{"name":1646,"slug":1647,"type":15},"TypeScript","typescript","2026-07-12T08:13:47.134012",{"slug":1650,"name":1650,"fn":1651,"description":1652,"org":1653,"tags":1654,"stars":25,"repoUrl":26,"updatedAt":1667},"analyzer","analyze queried data for trends","Analyze queried data for trends, week-over-week comparisons, distributions, funnels, cohorts, top-N lists, anomalies, sanity checks, and report-ready findings. Use after or alongside ClickHouse queries when the user wants insight rather than raw rows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1655,1658,1661,1664],{"name":1656,"slug":1657,"type":15},"Analytics","analytics",{"name":1659,"slug":1660,"type":15},"ClickHouse","clickhouse",{"name":1662,"slug":1663,"type":15},"Data Analysis","data-analysis",{"name":1665,"slug":1666,"type":15},"Statistics","statistics","2026-07-12T08:14:05.606036",{"slug":1669,"name":1669,"fn":1670,"description":1671,"org":1672,"tags":1673,"stars":25,"repoUrl":26,"updatedAt":1684},"artifact-management","manage and organize analysis artifacts","Save, organize, and describe reusable analysis artifacts such as SQL, result snapshots, CSV exports, summaries, caveats, plots, and report-ready files. Use when users ask to save, export, share, cite, reproduce, or organize data-analysis outputs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1674,1675,1678,1681],{"name":1662,"slug":1663,"type":15},{"name":1676,"slug":1677,"type":15},"Productivity","productivity",{"name":1679,"slug":1680,"type":15},"Reporting","reporting",{"name":1682,"slug":1683,"type":15},"SQL","sql","2026-07-12T08:14:09.265555",{"slug":1686,"name":1686,"fn":1687,"description":1688,"org":1689,"tags":1690,"stars":25,"repoUrl":26,"updatedAt":1700},"attorney-assist","connect with attorneys for legal consultation","Connects the user with a LegalZoom attorney for legal consultation. Use when a user asks about attorneys, lawyers, or legal help, or when contract review reveals high risks or low-confidence findings.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1691,1694,1697],{"name":1692,"slug":1693,"type":15},"Contracts","contracts",{"name":1695,"slug":1696,"type":15},"Legal","legal",{"name":1698,"slug":1699,"type":15},"Risk Assessment","risk-assessment","2026-07-12T08:13:45.878361",{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1705,"tags":1706,"stars":25,"repoUrl":26,"updatedAt":1719},"building-pydantic-ai-agents","build AI agents with Pydantic AI","Build AI agents with Pydantic AI — tools, capabilities (including on-demand loading), structured output, streaming, testing, and multi-agent patterns. Use when the user mentions Pydantic AI, imports pydantic_ai, or asks to build an AI agent, add tools\u002Fcapabilities, defer capability loading, stream output, define agents from YAML, or test agent behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1707,1710,1713,1716],{"name":1708,"slug":1709,"type":15},"Agents","agents",{"name":1711,"slug":1712,"type":15},"LLM","llm",{"name":1714,"slug":1715,"type":15},"Multi-Agent","multi-agent",{"name":1717,"slug":1718,"type":15},"Python","python","2026-07-12T08:14:01.893781",{"slug":1660,"name":1660,"fn":1721,"description":1722,"org":1723,"tags":1724,"stars":25,"repoUrl":26,"updatedAt":1731},"query ClickHouse databases via CLI","Connect to and query ClickHouse (a local server or a ClickHouse Cloud service) from the terminal using the official clickhousectl CLI, including the browser OAuth login flow. Use when the user wants to run SQL against ClickHouse, explore schemas and tables, inspect Cloud services, or authenticate clickhousectl. For building a local dev environment or deploying to Cloud, defer to the official ClickHouse skills (see Scope).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1725,1726,1729,1730],{"name":1656,"slug":1657,"type":15},{"name":1727,"slug":1728,"type":15},"CLI","cli",{"name":1659,"slug":1660,"type":15},{"name":1642,"slug":1643,"type":15},"2026-07-12T08:14:06.829692",{"slug":1733,"name":1733,"fn":1734,"description":1735,"org":1736,"tags":1737,"stars":25,"repoUrl":26,"updatedAt":1743},"cline-session-history","search and browse Cline session history","Search and browse Cline session history. Use when the user asks to find, list, inspect, or export Cline sessions by time period, prompt content, status, model, provider, source, mode, workspace, or other criteria. Also use when the user wants to read a session transcript or export sessions to a directory. Trigger phrases include \"find my session\", \"search my session history\", \"show me past sessions\", \"what was that session where\", \"find the session that started with\", and any mention of past Cline conversations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1738,1739,1742],{"name":1708,"slug":1709,"type":15},{"name":1740,"slug":1741,"type":15},"History","history",{"name":1676,"slug":1677,"type":15},"2026-07-19T06:03:13.945151",{"slug":1745,"name":1745,"fn":1746,"description":1747,"org":1748,"tags":1749,"stars":25,"repoUrl":26,"updatedAt":1761},"convex-design","build reactive backends with Convex","Design and build reactive, type-safe, production-grade backends on Convex. Covers schema, queries\u002Fmutations\u002Factions, indexes, auth, file storage, scheduling, real-time multiplayer, mobile backends, and LLM\u002Fagent workflows on Convex's one-platform stack.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1750,1751,1754,1755,1758],{"name":1638,"slug":1639,"type":15},{"name":1752,"slug":1753,"type":15},"Backend","backend",{"name":1642,"slug":1643,"type":15},{"name":1756,"slug":1757,"type":15},"Real-time","real-time",{"name":1759,"slug":1760,"type":15},"Storage","storage","2026-07-12T08:13:37.101253",{"slug":1763,"name":1763,"fn":1764,"description":1765,"org":1766,"tags":1767,"stars":25,"repoUrl":26,"updatedAt":1781},"cosmosdb-best-practices","optimize Azure Cosmos DB performance","Azure Cosmos DB performance optimization and best practices guidelines for NoSQL,\npartitioning, queries, SDK usage, and vector search. Use when writing, reviewing,\nor refactoring code that interacts with Azure Cosmos DB, designing data models,\noptimizing queries, or implementing high-performance database operations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1768,1771,1774,1775,1778],{"name":1769,"slug":1770,"type":15},"Azure","azure",{"name":1772,"slug":1773,"type":15},"Cosmos DB","cosmos-db",{"name":1642,"slug":1643,"type":15},{"name":1776,"slug":1777,"type":15},"NoSQL","nosql",{"name":1779,"slug":1780,"type":15},"Performance","performance","2026-07-12T08:13:54.531719",{"slug":1783,"name":1783,"fn":1784,"description":1785,"org":1786,"tags":1787,"stars":25,"repoUrl":26,"updatedAt":1794},"data-analyst","analyze ClickHouse analytics data","Act as an interactive data analyst for ClickHouse-backed analytics. Use when the user asks questions about internal data, metrics, dashboards, telemetry, active users, revenue, funnels, trends, distributions, or wants an analyst-style conversation, ad hoc SQL, charts, or a data export against ClickHouse (local or ClickHouse Cloud).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1788,1789,1790,1793],{"name":1656,"slug":1657,"type":15},{"name":1659,"slug":1660,"type":15},{"name":1791,"slug":1792,"type":15},"Dashboards","dashboards",{"name":1662,"slug":1663,"type":15},"2026-07-12T08:13:31.975246",{"slug":1796,"name":1796,"fn":1797,"description":1798,"org":1799,"tags":1800,"stars":25,"repoUrl":26,"updatedAt":1807},"dataproc-skills","manage Dataproc clusters and jobs","Skills to interact with your Dataproc clusters and jobs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1801,1804],{"name":1802,"slug":1803,"type":15},"Data Engineering","data-engineering",{"name":1805,"slug":1806,"type":15},"Operations","operations","2026-07-12T08:13:42.179275",45,{"items":1810,"total":1860},[1811,1818,1826,1833,1840,1846,1853],{"slug":1613,"name":1613,"fn":1614,"description":1615,"org":1812,"tags":1813,"stars":25,"repoUrl":26,"updatedAt":1630},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1814,1815,1816,1817],{"name":1619,"slug":1620,"type":15},{"name":1622,"slug":1623,"type":15},{"name":1625,"slug":1626,"type":15},{"name":1628,"slug":1629,"type":15},{"slug":1632,"name":1632,"fn":1633,"description":1634,"org":1819,"tags":1820,"stars":25,"repoUrl":26,"updatedAt":1648},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1821,1822,1823,1824,1825],{"name":1638,"slug":1639,"type":15},{"name":1622,"slug":1623,"type":15},{"name":1642,"slug":1643,"type":15},{"name":23,"slug":24,"type":15},{"name":1646,"slug":1647,"type":15},{"slug":1650,"name":1650,"fn":1651,"description":1652,"org":1827,"tags":1828,"stars":25,"repoUrl":26,"updatedAt":1667},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1829,1830,1831,1832],{"name":1656,"slug":1657,"type":15},{"name":1659,"slug":1660,"type":15},{"name":1662,"slug":1663,"type":15},{"name":1665,"slug":1666,"type":15},{"slug":1669,"name":1669,"fn":1670,"description":1671,"org":1834,"tags":1835,"stars":25,"repoUrl":26,"updatedAt":1684},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1836,1837,1838,1839],{"name":1662,"slug":1663,"type":15},{"name":1676,"slug":1677,"type":15},{"name":1679,"slug":1680,"type":15},{"name":1682,"slug":1683,"type":15},{"slug":1686,"name":1686,"fn":1687,"description":1688,"org":1841,"tags":1842,"stars":25,"repoUrl":26,"updatedAt":1700},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1843,1844,1845],{"name":1692,"slug":1693,"type":15},{"name":1695,"slug":1696,"type":15},{"name":1698,"slug":1699,"type":15},{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1847,"tags":1848,"stars":25,"repoUrl":26,"updatedAt":1719},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1849,1850,1851,1852],{"name":1708,"slug":1709,"type":15},{"name":1711,"slug":1712,"type":15},{"name":1714,"slug":1715,"type":15},{"name":1717,"slug":1718,"type":15},{"slug":1660,"name":1660,"fn":1721,"description":1722,"org":1854,"tags":1855,"stars":25,"repoUrl":26,"updatedAt":1731},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1856,1857,1858,1859],{"name":1656,"slug":1657,"type":15},{"name":1727,"slug":1728,"type":15},{"name":1659,"slug":1660,"type":15},{"name":1642,"slug":1643,"type":15},43]