forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds an (unlinked) API template (github#470)
* Adds an (unlinked) API template * Add example admonition
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# api_call() <tag type="FIXME" content="FIXME" /> | ||
<!---Single sentence description of the API call--> | ||
|
||
<!---Any special notes about the API call--> | ||
|
||
<!---For more information about api_call(), see the [FIXME docs][link_ref]--> | ||
|
||
<!--- | ||
<highlight type="note" | ||
Use a highlight for any important information. Choose `note`, `important`, or `warning`. | ||
</highlight> | ||
--> | ||
|
||
## Required Arguments | ||
|
||
|Name|Type|Description| | ||
|-|-|-| | ||
|<FIXME>|<FIXME>|<FIXME>| | ||
|
||
<!---Any special notes about the required arguments--> | ||
|
||
### Optional Arguments | ||
|
||
|Name|Type|Description| | ||
|-|-|-| | ||
|<FIXME>|<FIXME>|<FIXME>| | ||
|
||
<!---Any special notes about the optional arguments--> | ||
|
||
## Returns | ||
|
||
|Column|Type|Description| | ||
|-|-|-| | ||
|<FIXME>|<FIXME>|<FIXME>| | ||
|
||
<!---Any special notes about the returns--> | ||
|
||
## Sample Usage | ||
<!---Single sentence description of what this example does--> | ||
|
||
``` sql | ||
<FIXME> | ||
``` | ||
|
||
<!---Single sentence description of what this example does--> | ||
|
||
``` sql | ||
<FIXME> | ||
``` | ||
|
||
|
||
[link_ref]: timescaledb/:currentVersion:/how-to-guides/<FIXME>/ |