-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initialize mintlify documentation page
Signed-off-by: Rahul Krishna <[email protected]>
- Loading branch information
Showing
3 changed files
with
306 additions
and
48 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 |
---|---|---|
@@ -1,53 +1,25 @@ | ||
# Dependencies | ||
node_modules/ | ||
npm-debug.log | ||
yarn-debug.log | ||
yarn-error.log | ||
|
||
# Mac file | ||
.DS_Store | ||
|
||
# Log file | ||
*.log | ||
|
||
# Code coverage files | ||
.coverage | ||
|
||
# Gradle files | ||
.gradle | ||
|
||
# BlueJ files | ||
*.ctxt | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.nar | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
scratch* | ||
*.flake8 | ||
.vscode | ||
.idea/ | ||
*.iml | ||
|
||
# environment file | ||
# Environment | ||
.env | ||
.env.local | ||
.env.*.local | ||
|
||
# log file | ||
*.json | ||
!devcontainer.json | ||
|
||
# Build | ||
dist/ | ||
build/ | ||
coverage/ | ||
|
||
# Python compiled files and env | ||
__pycache__/ | ||
*.py[cod] | ||
.python-version | ||
.venv/ | ||
# Editor | ||
.vscode/ | ||
.idea/ | ||
*.swp | ||
*.swo | ||
|
||
# Build files | ||
dist/ | ||
# System | ||
.DS_Store | ||
Thumbs.db |
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,195 @@ | ||
{ | ||
"openapi": "3.0.1", | ||
"info": { | ||
"title": "OpenAPI Plant Store", | ||
"description": "A sample API that uses a plant store as an example to demonstrate features in the OpenAPI specification", | ||
"license": { | ||
"name": "MIT" | ||
}, | ||
"version": "1.0.0" | ||
}, | ||
"servers": [ | ||
{ | ||
"url": "http://sandbox.mintlify.com" | ||
} | ||
], | ||
"security": [ | ||
{ | ||
"bearerAuth": [] | ||
} | ||
], | ||
"paths": { | ||
"/plants": { | ||
"get": { | ||
"description": "Returns all plants from the system that the user has access to", | ||
"parameters": [ | ||
{ | ||
"name": "limit", | ||
"in": "query", | ||
"description": "The maximum number of results to return", | ||
"schema": { | ||
"type": "integer", | ||
"format": "int32" | ||
} | ||
} | ||
], | ||
"responses": { | ||
"200": { | ||
"description": "Plant response", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/components/schemas/Plant" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"400": { | ||
"description": "Unexpected error", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/Error" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"post": { | ||
"description": "Creates a new plant in the store", | ||
"requestBody": { | ||
"description": "Plant to add to the store", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/NewPlant" | ||
} | ||
} | ||
}, | ||
"required": true | ||
}, | ||
"responses": { | ||
"200": { | ||
"description": "plant response", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/Plant" | ||
} | ||
} | ||
} | ||
}, | ||
"400": { | ||
"description": "unexpected error", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/Error" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"/plants/{id}": { | ||
"delete": { | ||
"description": "Deletes a single plant based on the ID supplied", | ||
"parameters": [ | ||
{ | ||
"name": "id", | ||
"in": "path", | ||
"description": "ID of plant to delete", | ||
"required": true, | ||
"schema": { | ||
"type": "integer", | ||
"format": "int64" | ||
} | ||
} | ||
], | ||
"responses": { | ||
"204": { | ||
"description": "Plant deleted", | ||
"content": {} | ||
}, | ||
"400": { | ||
"description": "unexpected error", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/Error" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"components": { | ||
"schemas": { | ||
"Plant": { | ||
"required": [ | ||
"name" | ||
], | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"description": "The name of the plant", | ||
"type": "string" | ||
}, | ||
"tag": { | ||
"description": "Tag to specify the type", | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"NewPlant": { | ||
"allOf": [ | ||
{ | ||
"$ref": "#/components/schemas/Plant" | ||
}, | ||
{ | ||
"required": [ | ||
"id" | ||
], | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"description": "Identification number of the plant", | ||
"type": "integer", | ||
"format": "int64" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"Error": { | ||
"required": [ | ||
"error", | ||
"message" | ||
], | ||
"type": "object", | ||
"properties": { | ||
"error": { | ||
"type": "integer", | ||
"format": "int32" | ||
}, | ||
"message": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"securitySchemes": { | ||
"bearerAuth": { | ||
"type": "http", | ||
"scheme": "bearer" | ||
} | ||
} | ||
} | ||
} |
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,91 @@ | ||
{ | ||
"$schema": "https://mintlify.com/schema.json", | ||
"name": "Starter Kit", | ||
"logo": { | ||
"dark": "/logo/dark.svg", | ||
"light": "/logo/light.svg" | ||
}, | ||
"favicon": "/favicon.svg", | ||
"colors": { | ||
"primary": "#0D9373", | ||
"light": "#07C983", | ||
"dark": "#0D9373", | ||
"anchors": { | ||
"from": "#0D9373", | ||
"to": "#07C983" | ||
} | ||
}, | ||
"topbarLinks": [ | ||
{ | ||
"name": "Support", | ||
"url": "mailto:[email protected]" | ||
} | ||
], | ||
"topbarCtaButton": { | ||
"name": "Dashboard", | ||
"url": "https://dashboard.mintlify.com" | ||
}, | ||
"tabs": [ | ||
{ | ||
"name": "API Reference", | ||
"url": "api-reference" | ||
} | ||
], | ||
"anchors": [ | ||
{ | ||
"name": "Documentation", | ||
"icon": "book-open-cover", | ||
"url": "https://mintlify.com/docs" | ||
}, | ||
{ | ||
"name": "Community", | ||
"icon": "slack", | ||
"url": "https://mintlify.com/community" | ||
}, | ||
{ | ||
"name": "Blog", | ||
"icon": "newspaper", | ||
"url": "https://mintlify.com/blog" | ||
} | ||
], | ||
"navigation": [ | ||
{ | ||
"group": "Get Started", | ||
"pages": [ | ||
"introduction", | ||
"quickstart", | ||
"development" | ||
] | ||
}, | ||
{ | ||
"group": "Essentials", | ||
"pages": [ | ||
"essentials/markdown", | ||
"essentials/code", | ||
"essentials/images", | ||
"essentials/settings", | ||
"essentials/navigation", | ||
"essentials/reusable-snippets" | ||
] | ||
}, | ||
{ | ||
"group": "API Documentation", | ||
"pages": [ | ||
"api-reference/introduction" | ||
] | ||
}, | ||
{ | ||
"group": "Endpoint Examples", | ||
"pages": [ | ||
"api-reference/endpoint/get", | ||
"api-reference/endpoint/create", | ||
"api-reference/endpoint/delete" | ||
] | ||
} | ||
], | ||
"footerSocials": { | ||
"x": "https://x.com/mintlify", | ||
"github": "https://github.com/mintlify", | ||
"linkedin": "https://linkedin.com/company/mintlify" | ||
} | ||
} |