| {name} |
{#if !property.type} any {:else} {property.type} {/if} |
{property.description ?? ''} |
{property.default == ''
? ''
: property.default
? JSON.stringify(property.default)
: ''} |
{property.format ?? ''}
{property.contentEncoding
? `(encoding: ${property.contentEncoding})`
: ''} |
{#if schema.required.includes(name)}
*
{/if} |
{/each}