mirror of
https://github.com/apache/superset.git
synced 2026-08-04 21:12:44 +00:00
29 lines
481 B
Plaintext
29 lines
481 B
Plaintext
---
|
|
id: user-2
|
|
title: 'User2'
|
|
description: ''
|
|
sidebar_label: 'User2'
|
|
hide_title: true
|
|
hide_table_of_contents: true
|
|
schema: true
|
|
sample:
|
|
{
|
|
'first_name': 'string',
|
|
'id': 0,
|
|
'last_name': 'string',
|
|
'username': 'string',
|
|
}
|
|
custom_edit_url: null
|
|
---
|
|
|
|
import Schema from '@theme/Schema';
|
|
import Heading from '@theme/Heading';
|
|
|
|
<Heading as={'h1'} className={'openapi__heading'} children={'User2'}></Heading>
|
|
|
|
<Schema
|
|
{...require("./user-2.Schema.json")}
|
|
>
|
|
|
|
</Schema>
|