Update json file to new format

This commit is contained in:
jbnadal
2018-04-30 13:57:53 +02:00
parent af9fed68e8
commit c29d356fc2
13 changed files with 326 additions and 131 deletions

View File

@@ -0,0 +1,12 @@
module.exports = {
base: '.',
title: 'Domo Api 1.0',
description: 'domo API',
themeConfig: {
sidebar: [
'/',
['/ history', 'History'],
['/ capabilities', 'Capabilities'],
]
}
}

12
docs/api/README.md Normal file
View File

@@ -0,0 +1,12 @@
# Domo API documentation
## Quick overview
This documentation allow you to control the domo system.
## API design
http://dev.enchant.com/api/v1
http://www.vinaysahni.com/best-practices-for-a-pragmatic-restful-api#useful-post-responses
https://restfulapi.net/resource-naming/

View File

@@ -0,0 +1,2 @@
/device-management/capabilities

7
docs/api/history.md Normal file
View File

@@ -0,0 +1,7 @@
Revision History
================
| Current Version | Date | Description |
| --------------- | ------------------- | -------------- |
| 1.1 | | current update |
| 1.0 | February 07th, 2014 | First Draft |

6
docs/api/package.json Normal file
View File

@@ -0,0 +1,6 @@
{
"scripts": {
"docs:dev": "vuepress dev .",
"docs:build": "vuepress build"
}
}