-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec.yaml
48 lines (48 loc) · 1.01 KB
/
spec.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
openapi: "3.0.0"
info:
version: 1.0.0
title: Sylvera
paths:
/wp-json/sylvera/v1/projects:
get:
responses:
'200':
description: ''
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Project"
/wp-json/sylvera/v1/projects/{id}:
get:
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: "#/components/schemas/Project"
components:
schemas:
Project:
type: object
required:
- ID
- post_title
- description
- founded
additionalProperties: false
properties:
ID:
type: integer
format: int64
post_title:
type: string
nullable: false
description:
type: string
nullable: false
founded:
type: integer
nullable: false