{{!
renders a model without the surrounding panel.
}}
{{#if description}}
    <section class="model-description">
        {{{md description}}}
    </section>
{{/if}}
{{#if examples}}
    {{#each examples}}
        <div class="model-example">
            {{#if name}}
                <p><strong>{{name}}</strong></p>
            {{/if}}
            <pre>
            {{valuePretty}}
            </pre>
            {{#if mediaType}}
                <p><span class="type">{{mediaType.mediaType}}</span></p>
            {{/if}}
        </div>
    {{/each}}
{{/if}}

{{#if (isObject)}}
    {{>model/object anchor=anchor}}
{{/if}}
{{#if (isInterface)}}
    {{>model/interface anchor=anchor}}
{{/if}}
{{#if (isEnum)}}
    {{>model/enum}}
{{/if}}
{{#if (isAllOf)}}
    {{>model/all-of}}
{{/if}}
{{!-- {{#if (isAnyOf)}}
    {{>model/any-of}}
{{/if}}--}}
{{#if (isOneOf)}}
    {{>model/one-of}}
{{/if}}
