-
Notifications
You must be signed in to change notification settings - Fork 0
/
imbricate.yaml
62 lines (61 loc) · 2.07 KB
/
imbricate.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
openapi: "3.0.0"
info:
version: 1.0.0
title: Imbricae Stack API
license:
name: MIT
paths:
/collection/{collection-name}/page/{page-identifier}:
delete:
$ref: "./paths/collection/{collection-name}/page/{page-identifier}/delete.yaml"
put:
$ref: "./paths/collection/{collection-name}/page/{page-identifier}/put.yaml"
/collection/{collection-name}/page/{page-identifier}/content:
get:
$ref: "./paths/collection/{collection-name}/page/{page-identifier}/content/get.yaml"
/collection/{collection-name}/page/{page-identifier}/metadata:
get:
$ref: "./paths/collection/{collection-name}/page/{page-identifier}/metadata/get.yaml"
/collection/{collection-name}/page/{page-identifier}/retitle:
post:
$ref: "./paths/collection/{collection-name}/page/{page-identifier}/retitle/post.yaml"
/collection/{collection-name}/pages/create:
post:
$ref: "./paths/collection/{collection-name}/pages/create/post.yaml"
/collection/{collection-name}/pages/query:
post:
$ref: "./paths/collection/{collection-name}/pages/query/post.yaml"
/collection/{collection-name}/pages/search:
post:
$ref: "./paths/collection/{collection-name}/pages/search/post.yaml"
/collections:
get:
$ref: "./paths/collections/get.yaml"
/script/{script-identifier}/metadata:
get:
$ref: "./paths/script/{script-identifier}/metadata/get.yaml"
/script/{script-identifier}/rename:
post:
$ref: "./paths/script/{script-identifier}/rename/post.yaml"
/script/{script-identifier}/script:
get:
$ref: "./paths/script/{script-identifier}/script/get.yaml"
/scripts/create:
post:
$ref: "./paths/scripts/create/post.yaml"
/scripts/query:
post:
$ref: "./paths/scripts/query/post.yaml"
/scripts/search:
post:
$ref: "./paths/scripts/search/post.yaml"
components:
schemas:
Collection:
$ref: "./schemas/collection.yaml"
Page-Snapshot:
$ref: "./schemas/page-snapshot.yaml"
Page-Metadata:
$ref: "./schemas/page-metadata.yaml"
Error:
$ref: "./schemas/error.yaml"