Arguments Advanced
{#if schema && schema.properties && Object.keys(schema.properties).length > 0 && schema.required}
name type description default format required {#each getProperties(schema) as [name, property] (name)} {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}
{:else}
No arguments
{/if}