Skip to content

Instantly share code, notes, and snippets.

@dexterlabora
Created July 21, 2020 21:08
Show Gist options
  • Select an option

  • Save dexterlabora/505342359ad62d112b43dd320f5c9eb8 to your computer and use it in GitHub Desktop.

Select an option

Save dexterlabora/505342359ad62d112b43dd320f5c9eb8 to your computer and use it in GitHub Desktop.

Revisions

  1. dexterlabora created this gist Jul 21, 2020.
    26 changes: 26 additions & 0 deletions jsonata.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,26 @@
    (
    /*
    JSONata expression to:

    Format OpenAPI Spec JSON for Vue V-Swagger component
    https://www.npmjs.com/package/v-swagger


    */
    $requestArray := $.paths.*#$pi.*#$i.{
    "id": $i,
    "url": $keys(%.%)[$pi],
    "method": $keys(%)[$i],
    "description": description,
    "operationId": operationId,
    "tags": tags
    };

    {
    "host": "${this.apiUrl}",
    "title": "Meraki Dashboard API",
    "description": "Cisco Meraki API",
    "opened": true,
    "request":$requestArray
    };
    )