I'm using Configuration Section Designer (CSD) to manage my ASP.NET site services and so far I'm lovin' it. I created the section, collection and collection item (attributes only) easy. The problem is how to create 'Json' Element in the jsonWebApiService type of string. I think I need to create a custom element and converter maybe. Not sure any advice, links or ideas would be helpful. Tkanks.
Problem is View Schema https://drive.google.com/file/d/0B4oqlkkf0yHDMHo0M21PZzBZeEU/edit?usp=sharing
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<jsonWebApiSection xmlns="Web.JsonWebApi.Configuration">
<services>
<jsonWebApiService uniqueName="products" typeFullName="Company.Services.Products" typeAssembly="Services" route="/public/services/products.json">
<json>{"Filter" :"OnSale"}</json>
</jsonWebApiService>
</services>
</jsonWebApiSection>
</configuration>