#apiblueprint #apiary #mson
#apiblueprint #пасека #mson
Вопрос:
Я хочу использовать структуру данных MSON, определенную во внешнем файле, и ссылаться на нее в моем файле схемы элементов API. Возможно ли это? На данный момент я определяю оба в одном файле.
FORMAT: 1A
HOST: https://polls.apiblueprint.org/
# Suppliers
CRUD API to Add,Query,Update and Delete Suppliers.
## Suppliers Collection [/api/v1/suppliers]
### Add a Supplier [POST /supplier]
Parameters
-id : '1' (number) - The Supplier Id
-name: 'Supplier Name' (string) - The Supplier Name
Response 201 (application/json)
### Add multiple Suppliers [POST /suppliers]
Request (application/json)
- suppliers (array[Supplier])
Response 201 (application/json)
### Get All Suppliers [GET /suppliers]
Response 200 (application/json)
Attributes
- suppliers (array[Supplier])
Response 206 (application/json)
Attributes
- suppliers (array[Supplier])
### Get Individual Suppliers [GET /suppliers/{id}]
Response 200 (application/json)
Attributes
- Include Supplier
### Update Supplier [PUT /supplier]
Request (application/json)
- supplier (Supplier)
Response 200 (application/json)
### Update Suppliers [PUT /suppliers]
Request (application/json)
- suppliers (array[Supplier])
Response 200 (application/json)
### Delete a Supplier [DELETE /supplier]
Request (application/json)
- supplier (Supplier)
Response 204 (application/json)
# Data Structures
## Supplier (object)
- id : '1' (number) - The Supplier Id
- name : 'Supplier Name' (string) - The Supplier Name
Комментарии:
1. Можете ли вы добавить пример?