JsonPeek 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package JsonPeek --version 1.1.0
NuGet\Install-Package JsonPeek -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="JsonPeek" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JsonPeek --version 1.1.0
#r "nuget: JsonPeek, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install JsonPeek as a Cake Addin
#addin nuget:?package=JsonPeek&version=1.1.0

// Install JsonPeek as a Cake Tool
#tool nuget:?package=JsonPeek&version=1.1.0

Version Downloads License

Usage:

  <JsonPeek ContentPath="[JSON_FILE]" Query="[JSONPath]">
    <Output TaskParameter="Result" PropertyName="Value" />
  </JsonPeek>
  <JsonPeek Content="[JSON]" Query="[JSONPath]">
    <Output TaskParameter="Result" ItemName="Values" />
  </JsonPeek>

You can either provide the path to a JSON file via ContentPath or provide the straight JSON content to Content. The Query is a JSONPath expression that is evaluated and returned via the Result task parameter. You can assign the resulting value to either a property (i.e. for a single value) or an item name (i.e. for multiple results).

JSON object properties are automatically projected as item metadata when assigning the resulting value to an item. For example, given the following JSON:

{
  "http": {
    "host": "localhost",
    "port": 80,
    "ssl": true
  }
}

You can read the entire http value as an item with each property as a metadata value with:

<JsonPeek ContentPath="host.json" Query="$.http">
  <Output TaskParameter="Result" ItemName="Http" />
</JsonPeek>

The Http item will have the following values (if it were declared in MSBuild):

<ItemGroup>
  <Http Include="[item raw json]">
    <host>localhost</host>
    <port>80</port>
    <ssl>true</ssl>
  </Http>
</ItemGroup>

These item metadata values could be read as MSBuild properties as follows, for example:

<PropertyGroup>
  <Host>@(Http -> '%(host)')</Host>
  <Port>@(Http -> '%(port)')</Port>
  <Ssl>@(Http -> '%(ssl)')</Ssl>
</PropertyGroup>

In addition to the explicitly opted in object properties, the entire node is available as raw JSON via the special _ (single underscore) metadata item.

If the matched value is empty, no items (because items cannot be constructed with empty identity) or property value will be returned. This makes it difficult to distinguish a successfully matched empty value from no value matched at all. For these cases, it's possible to specify an Empty value to stand-in for an empty (but successful) matched result instead, which allow to distinguish both scenarios:

<JsonPeek Content="$(Json)" Empty="$empty" Query="$(Query)">
  <Output TaskParameter="Result" PropertyName="Value" />
</JsonPeek>

<Error Condition="'$(Value)' == '$empty'" Text="The element $(Query) cannot have an empty value." />

Parameters

Parameter Description
Content Optional string parameter.<br/>Specifies the JSON input as a string.
ContentPath Optional ITaskItem parameter.<br/>Specifies the JSON input as a file path.
Empty Optional string parameter.<br/>Value to use as a replacement for empty values matched in JSON.
Query Required string parameter.<br/>Specifies the JSONPath expression.
Result Output ITaskItem[] parameter.<br/>Contains the results that are returned by the task.

Sponsors

sponsored clariusclarius

get mentioned here too!

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on JsonPeek:

Package Downloads
Devlooped.Azure.Functions.OpenApi The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

OpenAPI/Swagger Source Generator for C# Azure Functions Built from https://github.com/devlooped/Azure.Functions.OpenApi/tree/027ade84f

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0 21,394 11/28/2022
1.1.9 9,446 9/23/2022
1.1.8 363 9/23/2022
1.1.7 437 9/1/2022
1.1.6 630 8/5/2022
1.1.5 370 8/5/2022
1.1.0 1,557 2/3/2022
1.0.3 866 9/30/2021
1.0.2 312 9/15/2021