<div class="overflow-scroll object-definition-table">
	<table class="table table-striped">
		<thead>
			<th>Name <small>/type</small></th>
			<th>Description <small>/example</small></th>
		</thead>
		<tbody>
		{{#each this}}
			<tr>
				<td class="param-name">
					<strong>{{@key}}</strong><br />
					<small><em>{{type}}</em></small>
				</td>
				<td class="param-description object-definition-param-description">
					{{#if description}}{{description}}{{/if}}
					<div>
						{{#if example}}<small class="example-code"><code>{{example}}</code></small>{{/if}}
						{{#if oneOf}}<br />One of the following:{{/if}}
						{{#if anyOf}}<br />Any of the following:{{/if}}
					</div>

					{{#with allProps}}
						<a href="#" class="sub-object-definition-toggle"><span class="verb">Show</span> definition &raquo;</a>
						{{> object-definition}}
					{{/with}}

					{{#each oneOf}}
						<h6>{{description}}</h6>
						<a href="#" class="sub-object-definition-toggle"><span class="verb">Show</span> definition &raquo;</a>
						{{#with allProps}}
							{{> object-definition}}
						{{/with}}
					{{/each}}

					{{#each anyOf}}
						<h6>{{description}}</h6>
						<a href="#" class="sub-object-definition-toggle"><span class="verb">Show</span> definition &raquo;</a>
						{{#with allProps}}
							{{> object-definition}}
						{{/with}}
					{{/each}}
				</td>
			</tr>
		{{/each}}
		</tbody>
	</table>
</div>

