You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

2684 rivejä
76 KiB

  1. openapi: 3.1.0
  2. info:
  3. title: 'Matsen API Platform'
  4. description: ''
  5. version: 1.0.0
  6. servers:
  7. -
  8. url: /
  9. description: ''
  10. paths:
  11. /api/comments:
  12. get:
  13. operationId: api_comments_get_collection
  14. tags:
  15. - Comment
  16. responses:
  17. 200:
  18. description: 'Comment collection'
  19. content:
  20. application/ld+json:
  21. schema:
  22. type: object
  23. properties:
  24. 'hydra:member': { type: array, items: { $ref: '#/components/schemas/Comment.jsonld' } }
  25. 'hydra:totalItems': { type: integer, minimum: 0 }
  26. 'hydra:view': { type: object, properties: { '@id': { type: string, format: iri-reference }, '@type': { type: string }, 'hydra:first': { type: string, format: iri-reference }, 'hydra:last': { type: string, format: iri-reference }, 'hydra:previous': { type: string, format: iri-reference }, 'hydra:next': { type: string, format: iri-reference } }, example: { '@id': string, type: string, 'hydra:first': string, 'hydra:last': string, 'hydra:previous': string, 'hydra:next': string } }
  27. 'hydra:search': { type: object, properties: { '@type': { type: string }, 'hydra:template': { type: string }, 'hydra:variableRepresentation': { type: string }, 'hydra:mapping': { type: array, items: { type: object, properties: { '@type': { type: string }, variable: { type: string }, property: { type: [string, 'null'] }, required: { type: boolean } } } } } }
  28. required:
  29. - 'hydra:member'
  30. application/json:
  31. schema:
  32. type: array
  33. items:
  34. $ref: '#/components/schemas/Comment'
  35. text/html:
  36. schema:
  37. type: array
  38. items:
  39. $ref: '#/components/schemas/Comment'
  40. application/hal+json:
  41. schema:
  42. type: object
  43. properties:
  44. _embedded: { type: array, items: { $ref: '#/components/schemas/Comment.jsonhal' } }
  45. totalItems: { type: integer, minimum: 0 }
  46. itemsPerPage: { type: integer, minimum: 0 }
  47. _links: { type: object, properties: { self: { type: object, properties: { href: { type: string, format: iri-reference } } }, first: { type: object, properties: { href: { type: string, format: iri-reference } } }, last: { type: object, properties: { href: { type: string, format: iri-reference } } }, next: { type: object, properties: { href: { type: string, format: iri-reference } } }, previous: { type: object, properties: { href: { type: string, format: iri-reference } } } } }
  48. required:
  49. - _links
  50. - _embedded
  51. summary: 'Retrieves the collection of Comment resources.'
  52. description: 'Retrieves the collection of Comment resources.'
  53. parameters:
  54. -
  55. name: page
  56. in: query
  57. description: 'The collection page number'
  58. required: false
  59. deprecated: false
  60. allowEmptyValue: true
  61. schema:
  62. type: integer
  63. default: 1
  64. style: form
  65. explode: false
  66. allowReserved: false
  67. -
  68. name: itemsPerPage
  69. in: query
  70. description: 'The number of items per page'
  71. required: false
  72. deprecated: false
  73. allowEmptyValue: true
  74. schema:
  75. type: integer
  76. default: 10
  77. minimum: 0
  78. maximum: 50
  79. style: form
  80. explode: false
  81. allowReserved: false
  82. deprecated: false
  83. post:
  84. operationId: api_comments_post
  85. tags:
  86. - Comment
  87. responses:
  88. 201:
  89. description: 'Comment resource created'
  90. content:
  91. application/ld+json:
  92. schema:
  93. $ref: '#/components/schemas/Comment.jsonld'
  94. application/json:
  95. schema:
  96. $ref: '#/components/schemas/Comment'
  97. text/html:
  98. schema:
  99. $ref: '#/components/schemas/Comment'
  100. application/hal+json:
  101. schema:
  102. $ref: '#/components/schemas/Comment.jsonhal'
  103. links: { }
  104. 400:
  105. description: 'Invalid input'
  106. 422:
  107. description: 'Unprocessable entity'
  108. summary: 'Creates a Comment resource.'
  109. description: 'Creates a Comment resource.'
  110. parameters: []
  111. requestBody:
  112. description: 'The new Comment resource'
  113. content:
  114. application/ld+json:
  115. schema:
  116. $ref: '#/components/schemas/Comment.jsonld'
  117. application/json:
  118. schema:
  119. $ref: '#/components/schemas/Comment'
  120. text/html:
  121. schema:
  122. $ref: '#/components/schemas/Comment'
  123. application/hal+json:
  124. schema:
  125. $ref: '#/components/schemas/Comment.jsonhal'
  126. required: true
  127. deprecated: false
  128. parameters: []
  129. '/api/comments/{id}':
  130. get:
  131. operationId: api_comments_id_get
  132. tags:
  133. - Comment
  134. responses:
  135. 200:
  136. description: 'Comment resource'
  137. content:
  138. application/ld+json:
  139. schema:
  140. $ref: '#/components/schemas/Comment.jsonld'
  141. application/json:
  142. schema:
  143. $ref: '#/components/schemas/Comment'
  144. text/html:
  145. schema:
  146. $ref: '#/components/schemas/Comment'
  147. application/hal+json:
  148. schema:
  149. $ref: '#/components/schemas/Comment.jsonhal'
  150. 404:
  151. description: 'Resource not found'
  152. summary: 'Retrieves a Comment resource.'
  153. description: 'Retrieves a Comment resource.'
  154. parameters:
  155. -
  156. name: id
  157. in: path
  158. description: 'CommentApi identifier'
  159. required: true
  160. deprecated: false
  161. allowEmptyValue: false
  162. schema:
  163. type: string
  164. style: simple
  165. explode: false
  166. allowReserved: false
  167. deprecated: false
  168. delete:
  169. operationId: api_comments_id_delete
  170. tags:
  171. - Comment
  172. responses:
  173. 204:
  174. description: 'Comment resource deleted'
  175. 404:
  176. description: 'Resource not found'
  177. summary: 'Removes the Comment resource.'
  178. description: 'Removes the Comment resource.'
  179. parameters:
  180. -
  181. name: id
  182. in: path
  183. description: 'CommentApi identifier'
  184. required: true
  185. deprecated: false
  186. allowEmptyValue: false
  187. schema:
  188. type: string
  189. style: simple
  190. explode: false
  191. allowReserved: false
  192. deprecated: false
  193. patch:
  194. operationId: api_comments_id_patch
  195. tags:
  196. - Comment
  197. responses:
  198. 200:
  199. description: 'Comment resource updated'
  200. content:
  201. application/ld+json:
  202. schema:
  203. $ref: '#/components/schemas/Comment.jsonld'
  204. application/json:
  205. schema:
  206. $ref: '#/components/schemas/Comment'
  207. text/html:
  208. schema:
  209. $ref: '#/components/schemas/Comment'
  210. application/hal+json:
  211. schema:
  212. $ref: '#/components/schemas/Comment.jsonhal'
  213. links: { }
  214. 400:
  215. description: 'Invalid input'
  216. 422:
  217. description: 'Unprocessable entity'
  218. 404:
  219. description: 'Resource not found'
  220. summary: 'Updates the Comment resource.'
  221. description: 'Updates the Comment resource.'
  222. parameters:
  223. -
  224. name: id
  225. in: path
  226. description: 'CommentApi identifier'
  227. required: true
  228. deprecated: false
  229. allowEmptyValue: false
  230. schema:
  231. type: string
  232. style: simple
  233. explode: false
  234. allowReserved: false
  235. requestBody:
  236. description: 'The updated Comment resource'
  237. content:
  238. application/merge-patch+json:
  239. schema:
  240. $ref: '#/components/schemas/Comment'
  241. required: true
  242. deprecated: false
  243. parameters: []
  244. /api/contacts:
  245. get:
  246. operationId: api_contacts_get_collection
  247. tags:
  248. - Contact
  249. responses:
  250. 200:
  251. description: 'Contact collection'
  252. content:
  253. application/ld+json:
  254. schema:
  255. type: object
  256. properties:
  257. 'hydra:member': { type: array, items: { $ref: '#/components/schemas/Contact.jsonld' } }
  258. 'hydra:totalItems': { type: integer, minimum: 0 }
  259. 'hydra:view': { type: object, properties: { '@id': { type: string, format: iri-reference }, '@type': { type: string }, 'hydra:first': { type: string, format: iri-reference }, 'hydra:last': { type: string, format: iri-reference }, 'hydra:previous': { type: string, format: iri-reference }, 'hydra:next': { type: string, format: iri-reference } }, example: { '@id': string, type: string, 'hydra:first': string, 'hydra:last': string, 'hydra:previous': string, 'hydra:next': string } }
  260. 'hydra:search': { type: object, properties: { '@type': { type: string }, 'hydra:template': { type: string }, 'hydra:variableRepresentation': { type: string }, 'hydra:mapping': { type: array, items: { type: object, properties: { '@type': { type: string }, variable: { type: string }, property: { type: [string, 'null'] }, required: { type: boolean } } } } } }
  261. required:
  262. - 'hydra:member'
  263. application/json:
  264. schema:
  265. type: array
  266. items:
  267. $ref: '#/components/schemas/Contact'
  268. text/html:
  269. schema:
  270. type: array
  271. items:
  272. $ref: '#/components/schemas/Contact'
  273. application/hal+json:
  274. schema:
  275. type: object
  276. properties:
  277. _embedded: { type: array, items: { $ref: '#/components/schemas/Contact.jsonhal' } }
  278. totalItems: { type: integer, minimum: 0 }
  279. itemsPerPage: { type: integer, minimum: 0 }
  280. _links: { type: object, properties: { self: { type: object, properties: { href: { type: string, format: iri-reference } } }, first: { type: object, properties: { href: { type: string, format: iri-reference } } }, last: { type: object, properties: { href: { type: string, format: iri-reference } } }, next: { type: object, properties: { href: { type: string, format: iri-reference } } }, previous: { type: object, properties: { href: { type: string, format: iri-reference } } } } }
  281. required:
  282. - _links
  283. - _embedded
  284. summary: 'Retrieves the collection of Contact resources.'
  285. description: 'Retrieves the collection of Contact resources.'
  286. parameters:
  287. -
  288. name: page
  289. in: query
  290. description: 'The collection page number'
  291. required: false
  292. deprecated: false
  293. allowEmptyValue: true
  294. schema:
  295. type: integer
  296. default: 1
  297. style: form
  298. explode: false
  299. allowReserved: false
  300. -
  301. name: itemsPerPage
  302. in: query
  303. description: 'The number of items per page'
  304. required: false
  305. deprecated: false
  306. allowEmptyValue: true
  307. schema:
  308. type: integer
  309. default: 10
  310. minimum: 0
  311. maximum: 50
  312. style: form
  313. explode: false
  314. allowReserved: false
  315. -
  316. name: partner
  317. in: query
  318. description: ''
  319. required: false
  320. deprecated: false
  321. allowEmptyValue: true
  322. schema:
  323. type: string
  324. style: form
  325. explode: false
  326. allowReserved: false
  327. -
  328. name: 'partner[]'
  329. in: query
  330. description: ''
  331. required: false
  332. deprecated: false
  333. allowEmptyValue: true
  334. schema:
  335. type: array
  336. items:
  337. type: string
  338. style: form
  339. explode: true
  340. allowReserved: false
  341. deprecated: false
  342. post:
  343. operationId: api_contacts_post
  344. tags:
  345. - Contact
  346. responses:
  347. 201:
  348. description: 'Contact resource created'
  349. content:
  350. application/ld+json:
  351. schema:
  352. $ref: '#/components/schemas/Contact.jsonld'
  353. application/json:
  354. schema:
  355. $ref: '#/components/schemas/Contact'
  356. text/html:
  357. schema:
  358. $ref: '#/components/schemas/Contact'
  359. application/hal+json:
  360. schema:
  361. $ref: '#/components/schemas/Contact.jsonhal'
  362. links: { }
  363. 400:
  364. description: 'Invalid input'
  365. 422:
  366. description: 'Unprocessable entity'
  367. summary: 'Creates a Contact resource.'
  368. description: 'Creates a Contact resource.'
  369. parameters: []
  370. requestBody:
  371. description: 'The new Contact resource'
  372. content:
  373. application/ld+json:
  374. schema:
  375. $ref: '#/components/schemas/Contact.jsonld'
  376. application/json:
  377. schema:
  378. $ref: '#/components/schemas/Contact'
  379. text/html:
  380. schema:
  381. $ref: '#/components/schemas/Contact'
  382. application/hal+json:
  383. schema:
  384. $ref: '#/components/schemas/Contact.jsonhal'
  385. required: true
  386. deprecated: false
  387. parameters: []
  388. '/api/contacts/{id}':
  389. get:
  390. operationId: api_contacts_id_get
  391. tags:
  392. - Contact
  393. responses:
  394. 200:
  395. description: 'Contact resource'
  396. content:
  397. application/ld+json:
  398. schema:
  399. $ref: '#/components/schemas/Contact.jsonld'
  400. application/json:
  401. schema:
  402. $ref: '#/components/schemas/Contact'
  403. text/html:
  404. schema:
  405. $ref: '#/components/schemas/Contact'
  406. application/hal+json:
  407. schema:
  408. $ref: '#/components/schemas/Contact.jsonhal'
  409. 404:
  410. description: 'Resource not found'
  411. summary: 'Retrieves a Contact resource.'
  412. description: 'Retrieves a Contact resource.'
  413. parameters:
  414. -
  415. name: id
  416. in: path
  417. description: 'ContactApi identifier'
  418. required: true
  419. deprecated: false
  420. allowEmptyValue: false
  421. schema:
  422. type: string
  423. style: simple
  424. explode: false
  425. allowReserved: false
  426. deprecated: false
  427. delete:
  428. operationId: api_contacts_id_delete
  429. tags:
  430. - Contact
  431. responses:
  432. 204:
  433. description: 'Contact resource deleted'
  434. 404:
  435. description: 'Resource not found'
  436. summary: 'Removes the Contact resource.'
  437. description: 'Removes the Contact resource.'
  438. parameters:
  439. -
  440. name: id
  441. in: path
  442. description: 'ContactApi identifier'
  443. required: true
  444. deprecated: false
  445. allowEmptyValue: false
  446. schema:
  447. type: string
  448. style: simple
  449. explode: false
  450. allowReserved: false
  451. deprecated: false
  452. patch:
  453. operationId: api_contacts_id_patch
  454. tags:
  455. - Contact
  456. responses:
  457. 200:
  458. description: 'Contact resource updated'
  459. content:
  460. application/ld+json:
  461. schema:
  462. $ref: '#/components/schemas/Contact.jsonld'
  463. application/json:
  464. schema:
  465. $ref: '#/components/schemas/Contact'
  466. text/html:
  467. schema:
  468. $ref: '#/components/schemas/Contact'
  469. application/hal+json:
  470. schema:
  471. $ref: '#/components/schemas/Contact.jsonhal'
  472. links: { }
  473. 400:
  474. description: 'Invalid input'
  475. 422:
  476. description: 'Unprocessable entity'
  477. 404:
  478. description: 'Resource not found'
  479. summary: 'Updates the Contact resource.'
  480. description: 'Updates the Contact resource.'
  481. parameters:
  482. -
  483. name: id
  484. in: path
  485. description: 'ContactApi identifier'
  486. required: true
  487. deprecated: false
  488. allowEmptyValue: false
  489. schema:
  490. type: string
  491. style: simple
  492. explode: false
  493. allowReserved: false
  494. requestBody:
  495. description: 'The updated Contact resource'
  496. content:
  497. application/merge-patch+json:
  498. schema:
  499. $ref: '#/components/schemas/Contact'
  500. required: true
  501. deprecated: false
  502. parameters: []
  503. /api/medias:
  504. get:
  505. operationId: api_medias_get_collection
  506. tags:
  507. - Media
  508. responses:
  509. 200:
  510. description: 'Media collection'
  511. content:
  512. application/ld+json:
  513. schema:
  514. type: object
  515. properties:
  516. 'hydra:member': { type: array, items: { $ref: '#/components/schemas/Media.jsonld-media_object.read' } }
  517. 'hydra:totalItems': { type: integer, minimum: 0 }
  518. 'hydra:view': { type: object, properties: { '@id': { type: string, format: iri-reference }, '@type': { type: string }, 'hydra:first': { type: string, format: iri-reference }, 'hydra:last': { type: string, format: iri-reference }, 'hydra:previous': { type: string, format: iri-reference }, 'hydra:next': { type: string, format: iri-reference } }, example: { '@id': string, type: string, 'hydra:first': string, 'hydra:last': string, 'hydra:previous': string, 'hydra:next': string } }
  519. 'hydra:search': { type: object, properties: { '@type': { type: string }, 'hydra:template': { type: string }, 'hydra:variableRepresentation': { type: string }, 'hydra:mapping': { type: array, items: { type: object, properties: { '@type': { type: string }, variable: { type: string }, property: { type: [string, 'null'] }, required: { type: boolean } } } } } }
  520. required:
  521. - 'hydra:member'
  522. application/json:
  523. schema:
  524. type: array
  525. items:
  526. $ref: '#/components/schemas/Media-media_object.read'
  527. text/html:
  528. schema:
  529. type: array
  530. items:
  531. $ref: '#/components/schemas/Media-media_object.read'
  532. application/hal+json:
  533. schema:
  534. type: object
  535. properties:
  536. _embedded: { type: array, items: { $ref: '#/components/schemas/Media.jsonhal-media_object.read' } }
  537. totalItems: { type: integer, minimum: 0 }
  538. itemsPerPage: { type: integer, minimum: 0 }
  539. _links: { type: object, properties: { self: { type: object, properties: { href: { type: string, format: iri-reference } } }, first: { type: object, properties: { href: { type: string, format: iri-reference } } }, last: { type: object, properties: { href: { type: string, format: iri-reference } } }, next: { type: object, properties: { href: { type: string, format: iri-reference } } }, previous: { type: object, properties: { href: { type: string, format: iri-reference } } } } }
  540. required:
  541. - _links
  542. - _embedded
  543. summary: 'Retrieves the collection of Media resources.'
  544. description: 'Retrieves the collection of Media resources.'
  545. parameters:
  546. -
  547. name: page
  548. in: query
  549. description: 'The collection page number'
  550. required: false
  551. deprecated: false
  552. allowEmptyValue: true
  553. schema:
  554. type: integer
  555. default: 1
  556. style: form
  557. explode: false
  558. allowReserved: false
  559. -
  560. name: itemsPerPage
  561. in: query
  562. description: 'The number of items per page'
  563. required: false
  564. deprecated: false
  565. allowEmptyValue: true
  566. schema:
  567. type: integer
  568. default: 10
  569. minimum: 0
  570. maximum: 50
  571. style: form
  572. explode: false
  573. allowReserved: false
  574. deprecated: false
  575. post:
  576. operationId: api_medias_post
  577. tags:
  578. - Media
  579. responses:
  580. 201:
  581. description: 'Media resource created'
  582. content:
  583. application/ld+json:
  584. schema:
  585. $ref: '#/components/schemas/Media.jsonld-media_object.read'
  586. application/json:
  587. schema:
  588. $ref: '#/components/schemas/Media-media_object.read'
  589. text/html:
  590. schema:
  591. $ref: '#/components/schemas/Media-media_object.read'
  592. application/hal+json:
  593. schema:
  594. $ref: '#/components/schemas/Media.jsonhal-media_object.read'
  595. links: { }
  596. 400:
  597. description: 'Invalid input'
  598. 422:
  599. description: 'Unprocessable entity'
  600. summary: 'Creates a Media resource.'
  601. description: 'Creates a Media resource.'
  602. parameters: []
  603. requestBody:
  604. description: ''
  605. content:
  606. multipart/form-data:
  607. schema:
  608. type: object
  609. properties:
  610. file:
  611. type: string
  612. format: binary
  613. required: false
  614. deprecated: false
  615. parameters: []
  616. '/api/medias/{id}':
  617. get:
  618. operationId: api_medias_id_get
  619. tags:
  620. - Media
  621. responses:
  622. 200:
  623. description: 'Media resource'
  624. content:
  625. application/ld+json:
  626. schema:
  627. $ref: '#/components/schemas/Media.jsonld-media_object.read'
  628. application/json:
  629. schema:
  630. $ref: '#/components/schemas/Media-media_object.read'
  631. text/html:
  632. schema:
  633. $ref: '#/components/schemas/Media-media_object.read'
  634. application/hal+json:
  635. schema:
  636. $ref: '#/components/schemas/Media.jsonhal-media_object.read'
  637. 404:
  638. description: 'Resource not found'
  639. summary: 'Retrieves a Media resource.'
  640. description: 'Retrieves a Media resource.'
  641. parameters:
  642. -
  643. name: id
  644. in: path
  645. description: 'MediaObject identifier'
  646. required: true
  647. deprecated: false
  648. allowEmptyValue: false
  649. schema:
  650. type: string
  651. style: simple
  652. explode: false
  653. allowReserved: false
  654. deprecated: false
  655. delete:
  656. operationId: api_medias_id_delete
  657. tags:
  658. - Media
  659. responses:
  660. 204:
  661. description: 'Media resource deleted'
  662. 404:
  663. description: 'Resource not found'
  664. summary: 'Removes the Media resource.'
  665. description: 'Removes the Media resource.'
  666. parameters:
  667. -
  668. name: id
  669. in: path
  670. description: 'MediaObject identifier'
  671. required: true
  672. deprecated: false
  673. allowEmptyValue: false
  674. schema:
  675. type: string
  676. style: simple
  677. explode: false
  678. allowReserved: false
  679. deprecated: false
  680. parameters: []
  681. /api/partners:
  682. get:
  683. operationId: api_partners_get_collection
  684. tags:
  685. - Partner
  686. responses:
  687. 200:
  688. description: 'Partner collection'
  689. content:
  690. application/ld+json:
  691. schema:
  692. type: object
  693. properties:
  694. 'hydra:member': { type: array, items: { $ref: '#/components/schemas/Partner.jsonld' } }
  695. 'hydra:totalItems': { type: integer, minimum: 0 }
  696. 'hydra:view': { type: object, properties: { '@id': { type: string, format: iri-reference }, '@type': { type: string }, 'hydra:first': { type: string, format: iri-reference }, 'hydra:last': { type: string, format: iri-reference }, 'hydra:previous': { type: string, format: iri-reference }, 'hydra:next': { type: string, format: iri-reference } }, example: { '@id': string, type: string, 'hydra:first': string, 'hydra:last': string, 'hydra:previous': string, 'hydra:next': string } }
  697. 'hydra:search': { type: object, properties: { '@type': { type: string }, 'hydra:template': { type: string }, 'hydra:variableRepresentation': { type: string }, 'hydra:mapping': { type: array, items: { type: object, properties: { '@type': { type: string }, variable: { type: string }, property: { type: [string, 'null'] }, required: { type: boolean } } } } } }
  698. required:
  699. - 'hydra:member'
  700. application/json:
  701. schema:
  702. type: array
  703. items:
  704. $ref: '#/components/schemas/Partner'
  705. text/html:
  706. schema:
  707. type: array
  708. items:
  709. $ref: '#/components/schemas/Partner'
  710. application/hal+json:
  711. schema:
  712. type: object
  713. properties:
  714. _embedded: { type: array, items: { $ref: '#/components/schemas/Partner.jsonhal' } }
  715. totalItems: { type: integer, minimum: 0 }
  716. itemsPerPage: { type: integer, minimum: 0 }
  717. _links: { type: object, properties: { self: { type: object, properties: { href: { type: string, format: iri-reference } } }, first: { type: object, properties: { href: { type: string, format: iri-reference } } }, last: { type: object, properties: { href: { type: string, format: iri-reference } } }, next: { type: object, properties: { href: { type: string, format: iri-reference } } }, previous: { type: object, properties: { href: { type: string, format: iri-reference } } } } }
  718. required:
  719. - _links
  720. - _embedded
  721. summary: 'Retrieves the collection of Partner resources.'
  722. description: 'Retrieves the collection of Partner resources.'
  723. parameters:
  724. -
  725. name: page
  726. in: query
  727. description: 'The collection page number'
  728. required: false
  729. deprecated: false
  730. allowEmptyValue: true
  731. schema:
  732. type: integer
  733. default: 1
  734. style: form
  735. explode: false
  736. allowReserved: false
  737. -
  738. name: itemsPerPage
  739. in: query
  740. description: 'The number of items per page'
  741. required: false
  742. deprecated: false
  743. allowEmptyValue: true
  744. schema:
  745. type: integer
  746. default: 10
  747. minimum: 0
  748. maximum: 50
  749. style: form
  750. explode: false
  751. allowReserved: false
  752. -
  753. name: type
  754. in: query
  755. description: ''
  756. required: false
  757. deprecated: false
  758. allowEmptyValue: true
  759. schema:
  760. type: string
  761. style: form
  762. explode: false
  763. allowReserved: false
  764. -
  765. name: 'type[]'
  766. in: query
  767. description: ''
  768. required: false
  769. deprecated: false
  770. allowEmptyValue: true
  771. schema:
  772. type: array
  773. items:
  774. type: string
  775. style: form
  776. explode: true
  777. allowReserved: false
  778. -
  779. name: 'order[name]'
  780. in: query
  781. description: ''
  782. required: false
  783. deprecated: false
  784. allowEmptyValue: true
  785. schema:
  786. type: string
  787. enum:
  788. - asc
  789. - desc
  790. style: form
  791. explode: false
  792. allowReserved: false
  793. -
  794. name: 'order[city]'
  795. in: query
  796. description: ''
  797. required: false
  798. deprecated: false
  799. allowEmptyValue: true
  800. schema:
  801. type: string
  802. enum:
  803. - asc
  804. - desc
  805. style: form
  806. explode: false
  807. allowReserved: false
  808. -
  809. name: 'order[website]'
  810. in: query
  811. description: ''
  812. required: false
  813. deprecated: false
  814. allowEmptyValue: true
  815. schema:
  816. type: string
  817. enum:
  818. - asc
  819. - desc
  820. style: form
  821. explode: false
  822. allowReserved: false
  823. deprecated: false
  824. post:
  825. operationId: api_partners_post
  826. tags:
  827. - Partner
  828. responses:
  829. 201:
  830. description: 'Partner resource created'
  831. content:
  832. application/ld+json:
  833. schema:
  834. $ref: '#/components/schemas/Partner.jsonld'
  835. application/json:
  836. schema:
  837. $ref: '#/components/schemas/Partner'
  838. text/html:
  839. schema:
  840. $ref: '#/components/schemas/Partner'
  841. application/hal+json:
  842. schema:
  843. $ref: '#/components/schemas/Partner.jsonhal'
  844. links: { }
  845. 400:
  846. description: 'Invalid input'
  847. 422:
  848. description: 'Unprocessable entity'
  849. summary: 'Creates a Partner resource.'
  850. description: 'Creates a Partner resource.'
  851. parameters: []
  852. requestBody:
  853. description: 'The new Partner resource'
  854. content:
  855. application/ld+json:
  856. schema:
  857. $ref: '#/components/schemas/Partner.jsonld'
  858. application/json:
  859. schema:
  860. $ref: '#/components/schemas/Partner'
  861. text/html:
  862. schema:
  863. $ref: '#/components/schemas/Partner'
  864. application/hal+json:
  865. schema:
  866. $ref: '#/components/schemas/Partner.jsonhal'
  867. required: true
  868. deprecated: false
  869. parameters: []
  870. '/api/partners/{id}':
  871. get:
  872. operationId: api_partners_id_get
  873. tags:
  874. - Partner
  875. responses:
  876. 200:
  877. description: 'Partner resource'
  878. content:
  879. application/ld+json:
  880. schema:
  881. $ref: '#/components/schemas/Partner.jsonld'
  882. application/json:
  883. schema:
  884. $ref: '#/components/schemas/Partner'
  885. text/html:
  886. schema:
  887. $ref: '#/components/schemas/Partner'
  888. application/hal+json:
  889. schema:
  890. $ref: '#/components/schemas/Partner.jsonhal'
  891. 404:
  892. description: 'Resource not found'
  893. summary: 'Retrieves a Partner resource.'
  894. description: 'Retrieves a Partner resource.'
  895. parameters:
  896. -
  897. name: id
  898. in: path
  899. description: 'PartnerApi identifier'
  900. required: true
  901. deprecated: false
  902. allowEmptyValue: false
  903. schema:
  904. type: string
  905. style: simple
  906. explode: false
  907. allowReserved: false
  908. deprecated: false
  909. delete:
  910. operationId: api_partners_id_delete
  911. tags:
  912. - Partner
  913. responses:
  914. 204:
  915. description: 'Partner resource deleted'
  916. 404:
  917. description: 'Resource not found'
  918. summary: 'Removes the Partner resource.'
  919. description: 'Removes the Partner resource.'
  920. parameters:
  921. -
  922. name: id
  923. in: path
  924. description: 'PartnerApi identifier'
  925. required: true
  926. deprecated: false
  927. allowEmptyValue: false
  928. schema:
  929. type: string
  930. style: simple
  931. explode: false
  932. allowReserved: false
  933. deprecated: false
  934. patch:
  935. operationId: api_partners_id_patch
  936. tags:
  937. - Partner
  938. responses:
  939. 200:
  940. description: 'Partner resource updated'
  941. content:
  942. application/ld+json:
  943. schema:
  944. $ref: '#/components/schemas/Partner.jsonld'
  945. application/json:
  946. schema:
  947. $ref: '#/components/schemas/Partner'
  948. text/html:
  949. schema:
  950. $ref: '#/components/schemas/Partner'
  951. application/hal+json:
  952. schema:
  953. $ref: '#/components/schemas/Partner.jsonhal'
  954. links: { }
  955. 400:
  956. description: 'Invalid input'
  957. 422:
  958. description: 'Unprocessable entity'
  959. 404:
  960. description: 'Resource not found'
  961. summary: 'Updates the Partner resource.'
  962. description: 'Updates the Partner resource.'
  963. parameters:
  964. -
  965. name: id
  966. in: path
  967. description: 'PartnerApi identifier'
  968. required: true
  969. deprecated: false
  970. allowEmptyValue: false
  971. schema:
  972. type: string
  973. style: simple
  974. explode: false
  975. allowReserved: false
  976. requestBody:
  977. description: 'The updated Partner resource'
  978. content:
  979. application/merge-patch+json:
  980. schema:
  981. $ref: '#/components/schemas/Partner'
  982. required: true
  983. deprecated: false
  984. parameters: []
  985. /api/posts:
  986. get:
  987. operationId: api_posts_get_collection
  988. tags:
  989. - Post
  990. responses:
  991. 200:
  992. description: 'Post collection'
  993. content:
  994. application/ld+json:
  995. schema:
  996. type: object
  997. properties:
  998. 'hydra:member': { type: array, items: { $ref: '#/components/schemas/Post.jsonld' } }
  999. 'hydra:totalItems': { type: integer, minimum: 0 }
  1000. 'hydra:view': { type: object, properties: { '@id': { type: string, format: iri-reference }, '@type': { type: string }, 'hydra:first': { type: string, format: iri-reference }, 'hydra:last': { type: string, format: iri-reference }, 'hydra:previous': { type: string, format: iri-reference }, 'hydra:next': { type: string, format: iri-reference } }, example: { '@id': string, type: string, 'hydra:first': string, 'hydra:last': string, 'hydra:previous': string, 'hydra:next': string } }
  1001. 'hydra:search': { type: object, properties: { '@type': { type: string }, 'hydra:template': { type: string }, 'hydra:variableRepresentation': { type: string }, 'hydra:mapping': { type: array, items: { type: object, properties: { '@type': { type: string }, variable: { type: string }, property: { type: [string, 'null'] }, required: { type: boolean } } } } } }
  1002. required:
  1003. - 'hydra:member'
  1004. application/json:
  1005. schema:
  1006. type: array
  1007. items:
  1008. $ref: '#/components/schemas/Post'
  1009. text/html:
  1010. schema:
  1011. type: array
  1012. items:
  1013. $ref: '#/components/schemas/Post'
  1014. application/hal+json:
  1015. schema:
  1016. type: object
  1017. properties:
  1018. _embedded: { type: array, items: { $ref: '#/components/schemas/Post.jsonhal' } }
  1019. totalItems: { type: integer, minimum: 0 }
  1020. itemsPerPage: { type: integer, minimum: 0 }
  1021. _links: { type: object, properties: { self: { type: object, properties: { href: { type: string, format: iri-reference } } }, first: { type: object, properties: { href: { type: string, format: iri-reference } } }, last: { type: object, properties: { href: { type: string, format: iri-reference } } }, next: { type: object, properties: { href: { type: string, format: iri-reference } } }, previous: { type: object, properties: { href: { type: string, format: iri-reference } } } } }
  1022. required:
  1023. - _links
  1024. - _embedded
  1025. summary: 'Retrieves the collection of Post resources.'
  1026. description: 'Retrieves the collection of Post resources.'
  1027. parameters:
  1028. -
  1029. name: page
  1030. in: query
  1031. description: 'The collection page number'
  1032. required: false
  1033. deprecated: false
  1034. allowEmptyValue: true
  1035. schema:
  1036. type: integer
  1037. default: 1
  1038. style: form
  1039. explode: false
  1040. allowReserved: false
  1041. -
  1042. name: itemsPerPage
  1043. in: query
  1044. description: 'The number of items per page'
  1045. required: false
  1046. deprecated: false
  1047. allowEmptyValue: true
  1048. schema:
  1049. type: integer
  1050. default: 10
  1051. minimum: 0
  1052. maximum: 50
  1053. style: form
  1054. explode: false
  1055. allowReserved: false
  1056. -
  1057. name: partner
  1058. in: query
  1059. description: ''
  1060. required: false
  1061. deprecated: false
  1062. allowEmptyValue: true
  1063. schema:
  1064. type: string
  1065. style: form
  1066. explode: false
  1067. allowReserved: false
  1068. -
  1069. name: 'partner[]'
  1070. in: query
  1071. description: ''
  1072. required: false
  1073. deprecated: false
  1074. allowEmptyValue: true
  1075. schema:
  1076. type: array
  1077. items:
  1078. type: string
  1079. style: form
  1080. explode: true
  1081. allowReserved: false
  1082. -
  1083. name: contact
  1084. in: query
  1085. description: ''
  1086. required: false
  1087. deprecated: false
  1088. allowEmptyValue: true
  1089. schema:
  1090. type: string
  1091. style: form
  1092. explode: false
  1093. allowReserved: false
  1094. -
  1095. name: 'contact[]'
  1096. in: query
  1097. description: ''
  1098. required: false
  1099. deprecated: false
  1100. allowEmptyValue: true
  1101. schema:
  1102. type: array
  1103. items:
  1104. type: string
  1105. style: form
  1106. explode: true
  1107. allowReserved: false
  1108. deprecated: false
  1109. post:
  1110. operationId: api_posts_post
  1111. tags:
  1112. - Post
  1113. responses:
  1114. 201:
  1115. description: 'Post resource created'
  1116. content:
  1117. application/ld+json:
  1118. schema:
  1119. $ref: '#/components/schemas/Post.jsonld'
  1120. application/json:
  1121. schema:
  1122. $ref: '#/components/schemas/Post'
  1123. text/html:
  1124. schema:
  1125. $ref: '#/components/schemas/Post'
  1126. application/hal+json:
  1127. schema:
  1128. $ref: '#/components/schemas/Post.jsonhal'
  1129. links: { }
  1130. 400:
  1131. description: 'Invalid input'
  1132. 422:
  1133. description: 'Unprocessable entity'
  1134. summary: 'Creates a Post resource.'
  1135. description: 'Creates a Post resource.'
  1136. parameters: []
  1137. requestBody:
  1138. description: 'The new Post resource'
  1139. content:
  1140. application/ld+json:
  1141. schema:
  1142. $ref: '#/components/schemas/Post.jsonld-posting_create'
  1143. application/json:
  1144. schema:
  1145. $ref: '#/components/schemas/Post-posting_create'
  1146. text/html:
  1147. schema:
  1148. $ref: '#/components/schemas/Post-posting_create'
  1149. application/hal+json:
  1150. schema:
  1151. $ref: '#/components/schemas/Post.jsonhal-posting_create'
  1152. required: true
  1153. deprecated: false
  1154. parameters: []
  1155. '/api/posts/{id}':
  1156. get:
  1157. operationId: api_posts_id_get
  1158. tags:
  1159. - Post
  1160. responses:
  1161. 200:
  1162. description: 'Post resource'
  1163. content:
  1164. application/ld+json:
  1165. schema:
  1166. $ref: '#/components/schemas/Post.jsonld'
  1167. application/json:
  1168. schema:
  1169. $ref: '#/components/schemas/Post'
  1170. text/html:
  1171. schema:
  1172. $ref: '#/components/schemas/Post'
  1173. application/hal+json:
  1174. schema:
  1175. $ref: '#/components/schemas/Post.jsonhal'
  1176. 404:
  1177. description: 'Resource not found'
  1178. summary: 'Retrieves a Post resource.'
  1179. description: 'Retrieves a Post resource.'
  1180. parameters:
  1181. -
  1182. name: id
  1183. in: path
  1184. description: 'PostingApi identifier'
  1185. required: true
  1186. deprecated: false
  1187. allowEmptyValue: false
  1188. schema:
  1189. type: string
  1190. style: simple
  1191. explode: false
  1192. allowReserved: false
  1193. deprecated: false
  1194. delete:
  1195. operationId: api_posts_id_delete
  1196. tags:
  1197. - Post
  1198. responses:
  1199. 204:
  1200. description: 'Post resource deleted'
  1201. 404:
  1202. description: 'Resource not found'
  1203. summary: 'Removes the Post resource.'
  1204. description: 'Removes the Post resource.'
  1205. parameters:
  1206. -
  1207. name: id
  1208. in: path
  1209. description: 'PostingApi identifier'
  1210. required: true
  1211. deprecated: false
  1212. allowEmptyValue: false
  1213. schema:
  1214. type: string
  1215. style: simple
  1216. explode: false
  1217. allowReserved: false
  1218. deprecated: false
  1219. patch:
  1220. operationId: api_posts_id_patch
  1221. tags:
  1222. - Post
  1223. responses:
  1224. 200:
  1225. description: 'Post resource updated'
  1226. content:
  1227. application/ld+json:
  1228. schema:
  1229. $ref: '#/components/schemas/Post.jsonld'
  1230. application/json:
  1231. schema:
  1232. $ref: '#/components/schemas/Post'
  1233. text/html:
  1234. schema:
  1235. $ref: '#/components/schemas/Post'
  1236. application/hal+json:
  1237. schema:
  1238. $ref: '#/components/schemas/Post.jsonhal'
  1239. links: { }
  1240. 400:
  1241. description: 'Invalid input'
  1242. 422:
  1243. description: 'Unprocessable entity'
  1244. 404:
  1245. description: 'Resource not found'
  1246. summary: 'Updates the Post resource.'
  1247. description: 'Updates the Post resource.'
  1248. parameters:
  1249. -
  1250. name: id
  1251. in: path
  1252. description: 'PostingApi identifier'
  1253. required: true
  1254. deprecated: false
  1255. allowEmptyValue: false
  1256. schema:
  1257. type: string
  1258. style: simple
  1259. explode: false
  1260. allowReserved: false
  1261. requestBody:
  1262. description: 'The updated Post resource'
  1263. content:
  1264. application/merge-patch+json:
  1265. schema:
  1266. $ref: '#/components/schemas/Post-posting_patch'
  1267. required: true
  1268. deprecated: false
  1269. parameters: []
  1270. /api/users:
  1271. get:
  1272. operationId: api_users_get_collection
  1273. tags:
  1274. - User
  1275. responses:
  1276. 200:
  1277. description: 'User collection'
  1278. content:
  1279. application/ld+json:
  1280. schema:
  1281. type: object
  1282. properties:
  1283. 'hydra:member': { type: array, items: { $ref: '#/components/schemas/User.jsonld' } }
  1284. 'hydra:totalItems': { type: integer, minimum: 0 }
  1285. 'hydra:view': { type: object, properties: { '@id': { type: string, format: iri-reference }, '@type': { type: string }, 'hydra:first': { type: string, format: iri-reference }, 'hydra:last': { type: string, format: iri-reference }, 'hydra:previous': { type: string, format: iri-reference }, 'hydra:next': { type: string, format: iri-reference } }, example: { '@id': string, type: string, 'hydra:first': string, 'hydra:last': string, 'hydra:previous': string, 'hydra:next': string } }
  1286. 'hydra:search': { type: object, properties: { '@type': { type: string }, 'hydra:template': { type: string }, 'hydra:variableRepresentation': { type: string }, 'hydra:mapping': { type: array, items: { type: object, properties: { '@type': { type: string }, variable: { type: string }, property: { type: [string, 'null'] }, required: { type: boolean } } } } } }
  1287. required:
  1288. - 'hydra:member'
  1289. application/json:
  1290. schema:
  1291. type: array
  1292. items:
  1293. $ref: '#/components/schemas/User'
  1294. text/html:
  1295. schema:
  1296. type: array
  1297. items:
  1298. $ref: '#/components/schemas/User'
  1299. application/hal+json:
  1300. schema:
  1301. type: object
  1302. properties:
  1303. _embedded: { type: array, items: { $ref: '#/components/schemas/User.jsonhal' } }
  1304. totalItems: { type: integer, minimum: 0 }
  1305. itemsPerPage: { type: integer, minimum: 0 }
  1306. _links: { type: object, properties: { self: { type: object, properties: { href: { type: string, format: iri-reference } } }, first: { type: object, properties: { href: { type: string, format: iri-reference } } }, last: { type: object, properties: { href: { type: string, format: iri-reference } } }, next: { type: object, properties: { href: { type: string, format: iri-reference } } }, previous: { type: object, properties: { href: { type: string, format: iri-reference } } } } }
  1307. required:
  1308. - _links
  1309. - _embedded
  1310. summary: 'Retrieves the collection of User resources.'
  1311. description: 'Retrieves the collection of User resources.'
  1312. parameters:
  1313. -
  1314. name: page
  1315. in: query
  1316. description: 'The collection page number'
  1317. required: false
  1318. deprecated: false
  1319. allowEmptyValue: true
  1320. schema:
  1321. type: integer
  1322. default: 1
  1323. style: form
  1324. explode: false
  1325. allowReserved: false
  1326. -
  1327. name: itemsPerPage
  1328. in: query
  1329. description: 'The number of items per page'
  1330. required: false
  1331. deprecated: false
  1332. allowEmptyValue: true
  1333. schema:
  1334. type: integer
  1335. default: 10
  1336. minimum: 0
  1337. maximum: 50
  1338. style: form
  1339. explode: false
  1340. allowReserved: false
  1341. deprecated: false
  1342. post:
  1343. operationId: api_users_post
  1344. tags:
  1345. - User
  1346. responses:
  1347. 201:
  1348. description: 'User resource created'
  1349. content:
  1350. application/ld+json:
  1351. schema:
  1352. $ref: '#/components/schemas/User.jsonld'
  1353. application/json:
  1354. schema:
  1355. $ref: '#/components/schemas/User'
  1356. text/html:
  1357. schema:
  1358. $ref: '#/components/schemas/User'
  1359. application/hal+json:
  1360. schema:
  1361. $ref: '#/components/schemas/User.jsonhal'
  1362. links: { }
  1363. 400:
  1364. description: 'Invalid input'
  1365. 422:
  1366. description: 'Unprocessable entity'
  1367. summary: 'Creates a User resource.'
  1368. description: 'Creates a User resource.'
  1369. parameters: []
  1370. requestBody:
  1371. description: 'The new User resource'
  1372. content:
  1373. application/ld+json:
  1374. schema:
  1375. $ref: '#/components/schemas/User.jsonld'
  1376. application/json:
  1377. schema:
  1378. $ref: '#/components/schemas/User'
  1379. text/html:
  1380. schema:
  1381. $ref: '#/components/schemas/User'
  1382. application/hal+json:
  1383. schema:
  1384. $ref: '#/components/schemas/User.jsonhal'
  1385. required: true
  1386. deprecated: false
  1387. parameters: []
  1388. '/api/users/{id}':
  1389. get:
  1390. operationId: api_users_id_get
  1391. tags:
  1392. - User
  1393. responses:
  1394. 200:
  1395. description: 'User resource'
  1396. content:
  1397. application/ld+json:
  1398. schema:
  1399. $ref: '#/components/schemas/User.jsonld'
  1400. application/json:
  1401. schema:
  1402. $ref: '#/components/schemas/User'
  1403. text/html:
  1404. schema:
  1405. $ref: '#/components/schemas/User'
  1406. application/hal+json:
  1407. schema:
  1408. $ref: '#/components/schemas/User.jsonhal'
  1409. 404:
  1410. description: 'Resource not found'
  1411. summary: 'Retrieves a User resource.'
  1412. description: 'Retrieves a User resource.'
  1413. parameters:
  1414. -
  1415. name: id
  1416. in: path
  1417. description: 'UserApi identifier'
  1418. required: true
  1419. deprecated: false
  1420. allowEmptyValue: false
  1421. schema:
  1422. type: string
  1423. style: simple
  1424. explode: false
  1425. allowReserved: false
  1426. deprecated: false
  1427. patch:
  1428. operationId: api_users_id_patch
  1429. tags:
  1430. - User
  1431. responses:
  1432. 200:
  1433. description: 'User resource updated'
  1434. content:
  1435. application/ld+json:
  1436. schema:
  1437. $ref: '#/components/schemas/User.jsonld'
  1438. application/json:
  1439. schema:
  1440. $ref: '#/components/schemas/User'
  1441. text/html:
  1442. schema:
  1443. $ref: '#/components/schemas/User'
  1444. application/hal+json:
  1445. schema:
  1446. $ref: '#/components/schemas/User.jsonhal'
  1447. links: { }
  1448. 400:
  1449. description: 'Invalid input'
  1450. 422:
  1451. description: 'Unprocessable entity'
  1452. 404:
  1453. description: 'Resource not found'
  1454. summary: 'Updates the User resource.'
  1455. description: 'Updates the User resource.'
  1456. parameters:
  1457. -
  1458. name: id
  1459. in: path
  1460. description: 'UserApi identifier'
  1461. required: true
  1462. deprecated: false
  1463. allowEmptyValue: false
  1464. schema:
  1465. type: string
  1466. style: simple
  1467. explode: false
  1468. allowReserved: false
  1469. requestBody:
  1470. description: 'The updated User resource'
  1471. content:
  1472. application/merge-patch+json:
  1473. schema:
  1474. $ref: '#/components/schemas/User'
  1475. required: true
  1476. deprecated: false
  1477. parameters: []
  1478. /auth:
  1479. post:
  1480. operationId: login_check_post
  1481. tags:
  1482. - 'Login Check'
  1483. responses:
  1484. 200:
  1485. description: 'User token created'
  1486. content:
  1487. application/json:
  1488. schema:
  1489. type: object
  1490. properties:
  1491. token: { readOnly: true, type: string, nullable: false }
  1492. required:
  1493. - token
  1494. summary: 'Creates a user token.'
  1495. description: 'Creates a user token.'
  1496. requestBody:
  1497. description: 'The login data'
  1498. content:
  1499. application/json:
  1500. schema:
  1501. type: object
  1502. properties:
  1503. email:
  1504. type: string
  1505. nullable: false
  1506. password:
  1507. type: string
  1508. nullable: false
  1509. required:
  1510. - email
  1511. - password
  1512. required: true
  1513. parameters: []
  1514. components:
  1515. schemas:
  1516. Comment:
  1517. type: object
  1518. description: ''
  1519. deprecated: false
  1520. required:
  1521. - message
  1522. properties:
  1523. message:
  1524. type:
  1525. - string
  1526. - 'null'
  1527. owner:
  1528. readOnly: true
  1529. 'owl:maxCardinality': 1
  1530. type:
  1531. - string
  1532. - 'null'
  1533. format: iri-reference
  1534. example: 'https://example.com/'
  1535. ownerName:
  1536. readOnly: true
  1537. type:
  1538. - string
  1539. - 'null'
  1540. post:
  1541. 'owl:maxCardinality': 1
  1542. type:
  1543. - string
  1544. - 'null'
  1545. format: iri-reference
  1546. example: 'https://example.com/'
  1547. createdAt:
  1548. readOnly: true
  1549. type:
  1550. - string
  1551. - 'null'
  1552. format: date-time
  1553. Comment.jsonhal:
  1554. type: object
  1555. description: ''
  1556. deprecated: false
  1557. required:
  1558. - message
  1559. properties:
  1560. _links:
  1561. type: object
  1562. properties:
  1563. self:
  1564. type: object
  1565. properties:
  1566. href:
  1567. type: string
  1568. format: iri-reference
  1569. message:
  1570. type:
  1571. - string
  1572. - 'null'
  1573. owner:
  1574. readOnly: true
  1575. 'owl:maxCardinality': 1
  1576. type:
  1577. - string
  1578. - 'null'
  1579. format: iri-reference
  1580. example: 'https://example.com/'
  1581. ownerName:
  1582. readOnly: true
  1583. type:
  1584. - string
  1585. - 'null'
  1586. post:
  1587. 'owl:maxCardinality': 1
  1588. type:
  1589. - string
  1590. - 'null'
  1591. format: iri-reference
  1592. example: 'https://example.com/'
  1593. createdAt:
  1594. readOnly: true
  1595. type:
  1596. - string
  1597. - 'null'
  1598. format: date-time
  1599. Comment.jsonld:
  1600. type: object
  1601. description: ''
  1602. deprecated: false
  1603. required:
  1604. - message
  1605. properties:
  1606. '@context':
  1607. readOnly: true
  1608. oneOf:
  1609. -
  1610. type: string
  1611. -
  1612. type: object
  1613. properties:
  1614. '@vocab':
  1615. type: string
  1616. hydra:
  1617. type: string
  1618. enum: ['http://www.w3.org/ns/hydra/core#']
  1619. required:
  1620. - '@vocab'
  1621. - hydra
  1622. additionalProperties: true
  1623. '@id':
  1624. readOnly: true
  1625. type: string
  1626. '@type':
  1627. readOnly: true
  1628. type: string
  1629. message:
  1630. type:
  1631. - string
  1632. - 'null'
  1633. owner:
  1634. readOnly: true
  1635. 'owl:maxCardinality': 1
  1636. type:
  1637. - string
  1638. - 'null'
  1639. format: iri-reference
  1640. example: 'https://example.com/'
  1641. ownerName:
  1642. readOnly: true
  1643. type:
  1644. - string
  1645. - 'null'
  1646. post:
  1647. 'owl:maxCardinality': 1
  1648. type:
  1649. - string
  1650. - 'null'
  1651. format: iri-reference
  1652. example: 'https://example.com/'
  1653. createdAt:
  1654. readOnly: true
  1655. type:
  1656. - string
  1657. - 'null'
  1658. format: date-time
  1659. Contact:
  1660. type: object
  1661. description: ''
  1662. deprecated: false
  1663. required:
  1664. - firstName
  1665. - lastName
  1666. - partner
  1667. properties:
  1668. firstName:
  1669. type:
  1670. - string
  1671. - 'null'
  1672. lastName:
  1673. type:
  1674. - string
  1675. - 'null'
  1676. partner:
  1677. 'owl:maxCardinality': 1
  1678. type:
  1679. - string
  1680. - 'null'
  1681. format: iri-reference
  1682. example: 'https://example.com/'
  1683. birthday:
  1684. type:
  1685. - string
  1686. - 'null'
  1687. format: date-time
  1688. image:
  1689. 'owl:maxCardinality': 1
  1690. type:
  1691. - string
  1692. - 'null'
  1693. format: iri-reference
  1694. example: 'https://example.com/'
  1695. imageUrl:
  1696. readOnly: true
  1697. type:
  1698. - string
  1699. - 'null'
  1700. position:
  1701. type:
  1702. - string
  1703. - 'null'
  1704. phone:
  1705. type:
  1706. - string
  1707. - 'null'
  1708. email:
  1709. format: email
  1710. externalDocs:
  1711. url: 'https://schema.org/email'
  1712. type:
  1713. - string
  1714. - 'null'
  1715. posts:
  1716. readOnly: true
  1717. type: array
  1718. items:
  1719. type: string
  1720. format: iri-reference
  1721. example: 'https://example.com/'
  1722. createdAt:
  1723. readOnly: true
  1724. type:
  1725. - string
  1726. - 'null'
  1727. format: date-time
  1728. Contact.jsonhal:
  1729. type: object
  1730. description: ''
  1731. deprecated: false
  1732. required:
  1733. - firstName
  1734. - lastName
  1735. - partner
  1736. properties:
  1737. _links:
  1738. type: object
  1739. properties:
  1740. self:
  1741. type: object
  1742. properties:
  1743. href:
  1744. type: string
  1745. format: iri-reference
  1746. firstName:
  1747. type:
  1748. - string
  1749. - 'null'
  1750. lastName:
  1751. type:
  1752. - string
  1753. - 'null'
  1754. partner:
  1755. 'owl:maxCardinality': 1
  1756. type:
  1757. - string
  1758. - 'null'
  1759. format: iri-reference
  1760. example: 'https://example.com/'
  1761. birthday:
  1762. type:
  1763. - string
  1764. - 'null'
  1765. format: date-time
  1766. image:
  1767. 'owl:maxCardinality': 1
  1768. type:
  1769. - string
  1770. - 'null'
  1771. format: iri-reference
  1772. example: 'https://example.com/'
  1773. imageUrl:
  1774. readOnly: true
  1775. type:
  1776. - string
  1777. - 'null'
  1778. position:
  1779. type:
  1780. - string
  1781. - 'null'
  1782. phone:
  1783. type:
  1784. - string
  1785. - 'null'
  1786. email:
  1787. format: email
  1788. externalDocs:
  1789. url: 'https://schema.org/email'
  1790. type:
  1791. - string
  1792. - 'null'
  1793. posts:
  1794. readOnly: true
  1795. type: array
  1796. items:
  1797. type: string
  1798. format: iri-reference
  1799. example: 'https://example.com/'
  1800. createdAt:
  1801. readOnly: true
  1802. type:
  1803. - string
  1804. - 'null'
  1805. format: date-time
  1806. Contact.jsonld:
  1807. type: object
  1808. description: ''
  1809. deprecated: false
  1810. required:
  1811. - firstName
  1812. - lastName
  1813. - partner
  1814. properties:
  1815. '@context':
  1816. readOnly: true
  1817. oneOf:
  1818. -
  1819. type: string
  1820. -
  1821. type: object
  1822. properties:
  1823. '@vocab':
  1824. type: string
  1825. hydra:
  1826. type: string
  1827. enum: ['http://www.w3.org/ns/hydra/core#']
  1828. required:
  1829. - '@vocab'
  1830. - hydra
  1831. additionalProperties: true
  1832. '@id':
  1833. readOnly: true
  1834. type: string
  1835. '@type':
  1836. readOnly: true
  1837. type: string
  1838. firstName:
  1839. type:
  1840. - string
  1841. - 'null'
  1842. lastName:
  1843. type:
  1844. - string
  1845. - 'null'
  1846. partner:
  1847. 'owl:maxCardinality': 1
  1848. type:
  1849. - string
  1850. - 'null'
  1851. format: iri-reference
  1852. example: 'https://example.com/'
  1853. birthday:
  1854. type:
  1855. - string
  1856. - 'null'
  1857. format: date-time
  1858. image:
  1859. 'owl:maxCardinality': 1
  1860. type:
  1861. - string
  1862. - 'null'
  1863. format: iri-reference
  1864. example: 'https://example.com/'
  1865. imageUrl:
  1866. readOnly: true
  1867. type:
  1868. - string
  1869. - 'null'
  1870. position:
  1871. type:
  1872. - string
  1873. - 'null'
  1874. phone:
  1875. type:
  1876. - string
  1877. - 'null'
  1878. email:
  1879. format: email
  1880. externalDocs:
  1881. url: 'https://schema.org/email'
  1882. type:
  1883. - string
  1884. - 'null'
  1885. posts:
  1886. readOnly: true
  1887. type: array
  1888. items:
  1889. type: string
  1890. format: iri-reference
  1891. example: 'https://example.com/'
  1892. createdAt:
  1893. readOnly: true
  1894. type:
  1895. - string
  1896. - 'null'
  1897. format: date-time
  1898. Media-media_object.read:
  1899. type: object
  1900. description: ''
  1901. deprecated: false
  1902. externalDocs:
  1903. url: 'https://schema.org/MediaObject'
  1904. properties:
  1905. contentUrl:
  1906. externalDocs:
  1907. url: 'https://schema.org/contentUrl'
  1908. type:
  1909. - string
  1910. - 'null'
  1911. Media.jsonhal-media_object.read:
  1912. type: object
  1913. description: ''
  1914. deprecated: false
  1915. externalDocs:
  1916. url: 'https://schema.org/MediaObject'
  1917. properties:
  1918. _links:
  1919. type: object
  1920. properties:
  1921. self:
  1922. type: object
  1923. properties:
  1924. href:
  1925. type: string
  1926. format: iri-reference
  1927. contentUrl:
  1928. externalDocs:
  1929. url: 'https://schema.org/contentUrl'
  1930. type:
  1931. - string
  1932. - 'null'
  1933. Media.jsonld-media_object.read:
  1934. type: object
  1935. description: ''
  1936. deprecated: false
  1937. externalDocs:
  1938. url: 'https://schema.org/MediaObject'
  1939. properties:
  1940. '@context':
  1941. readOnly: true
  1942. oneOf:
  1943. -
  1944. type: string
  1945. -
  1946. type: object
  1947. properties:
  1948. '@vocab':
  1949. type: string
  1950. hydra:
  1951. type: string
  1952. enum: ['http://www.w3.org/ns/hydra/core#']
  1953. required:
  1954. - '@vocab'
  1955. - hydra
  1956. additionalProperties: true
  1957. '@id':
  1958. readOnly: true
  1959. type: string
  1960. '@type':
  1961. readOnly: true
  1962. type: string
  1963. contentUrl:
  1964. externalDocs:
  1965. url: 'https://schema.org/contentUrl'
  1966. type:
  1967. - string
  1968. - 'null'
  1969. Partner:
  1970. type: object
  1971. description: ''
  1972. deprecated: false
  1973. required:
  1974. - name
  1975. - type
  1976. properties:
  1977. name:
  1978. type: string
  1979. type:
  1980. type: string
  1981. enum:
  1982. - customer
  1983. - supplier
  1984. - service
  1985. street:
  1986. type:
  1987. - string
  1988. - 'null'
  1989. streetNo:
  1990. type:
  1991. - string
  1992. - 'null'
  1993. zip:
  1994. type:
  1995. - string
  1996. - 'null'
  1997. city:
  1998. type:
  1999. - string
  2000. - 'null'
  2001. country:
  2002. type:
  2003. - string
  2004. - 'null'
  2005. website:
  2006. type:
  2007. - string
  2008. - 'null'
  2009. logo:
  2010. 'owl:maxCardinality': 1
  2011. type:
  2012. - string
  2013. - 'null'
  2014. format: iri-reference
  2015. example: 'https://example.com/'
  2016. logoUrl:
  2017. readOnly: true
  2018. type:
  2019. - string
  2020. - 'null'
  2021. createdAt:
  2022. type:
  2023. - string
  2024. - 'null'
  2025. format: date-time
  2026. contacts:
  2027. readOnly: true
  2028. type: array
  2029. items:
  2030. type: string
  2031. format: iri-reference
  2032. example: 'https://example.com/'
  2033. Partner.jsonhal:
  2034. type: object
  2035. description: ''
  2036. deprecated: false
  2037. required:
  2038. - name
  2039. - type
  2040. properties:
  2041. _links:
  2042. type: object
  2043. properties:
  2044. self:
  2045. type: object
  2046. properties:
  2047. href:
  2048. type: string
  2049. format: iri-reference
  2050. name:
  2051. type: string
  2052. type:
  2053. type: string
  2054. enum:
  2055. - customer
  2056. - supplier
  2057. - service
  2058. street:
  2059. type:
  2060. - string
  2061. - 'null'
  2062. streetNo:
  2063. type:
  2064. - string
  2065. - 'null'
  2066. zip:
  2067. type:
  2068. - string
  2069. - 'null'
  2070. city:
  2071. type:
  2072. - string
  2073. - 'null'
  2074. country:
  2075. type:
  2076. - string
  2077. - 'null'
  2078. website:
  2079. type:
  2080. - string
  2081. - 'null'
  2082. logo:
  2083. 'owl:maxCardinality': 1
  2084. type:
  2085. - string
  2086. - 'null'
  2087. format: iri-reference
  2088. example: 'https://example.com/'
  2089. logoUrl:
  2090. readOnly: true
  2091. type:
  2092. - string
  2093. - 'null'
  2094. createdAt:
  2095. type:
  2096. - string
  2097. - 'null'
  2098. format: date-time
  2099. contacts:
  2100. readOnly: true
  2101. type: array
  2102. items:
  2103. type: string
  2104. format: iri-reference
  2105. example: 'https://example.com/'
  2106. Partner.jsonld:
  2107. type: object
  2108. description: ''
  2109. deprecated: false
  2110. required:
  2111. - name
  2112. - type
  2113. properties:
  2114. '@context':
  2115. readOnly: true
  2116. oneOf:
  2117. -
  2118. type: string
  2119. -
  2120. type: object
  2121. properties:
  2122. '@vocab':
  2123. type: string
  2124. hydra:
  2125. type: string
  2126. enum: ['http://www.w3.org/ns/hydra/core#']
  2127. required:
  2128. - '@vocab'
  2129. - hydra
  2130. additionalProperties: true
  2131. '@id':
  2132. readOnly: true
  2133. type: string
  2134. '@type':
  2135. readOnly: true
  2136. type: string
  2137. name:
  2138. type: string
  2139. type:
  2140. type: string
  2141. enum:
  2142. - customer
  2143. - supplier
  2144. - service
  2145. street:
  2146. type:
  2147. - string
  2148. - 'null'
  2149. streetNo:
  2150. type:
  2151. - string
  2152. - 'null'
  2153. zip:
  2154. type:
  2155. - string
  2156. - 'null'
  2157. city:
  2158. type:
  2159. - string
  2160. - 'null'
  2161. country:
  2162. type:
  2163. - string
  2164. - 'null'
  2165. website:
  2166. type:
  2167. - string
  2168. - 'null'
  2169. logo:
  2170. 'owl:maxCardinality': 1
  2171. type:
  2172. - string
  2173. - 'null'
  2174. format: iri-reference
  2175. example: 'https://example.com/'
  2176. logoUrl:
  2177. readOnly: true
  2178. type:
  2179. - string
  2180. - 'null'
  2181. createdAt:
  2182. type:
  2183. - string
  2184. - 'null'
  2185. format: date-time
  2186. contacts:
  2187. readOnly: true
  2188. type: array
  2189. items:
  2190. type: string
  2191. format: iri-reference
  2192. example: 'https://example.com/'
  2193. Post:
  2194. type: object
  2195. description: ''
  2196. deprecated: false
  2197. required:
  2198. - headline
  2199. - message
  2200. properties:
  2201. headline:
  2202. type:
  2203. - string
  2204. - 'null'
  2205. message:
  2206. type:
  2207. - string
  2208. - 'null'
  2209. owner:
  2210. readOnly: true
  2211. 'owl:maxCardinality': 1
  2212. type:
  2213. - string
  2214. - 'null'
  2215. format: iri-reference
  2216. example: 'https://example.com/'
  2217. ownerName:
  2218. readOnly: true
  2219. type:
  2220. - string
  2221. - 'null'
  2222. partner:
  2223. 'owl:maxCardinality': 1
  2224. type:
  2225. - string
  2226. - 'null'
  2227. format: iri-reference
  2228. example: 'https://example.com/'
  2229. contact:
  2230. 'owl:maxCardinality': 1
  2231. type:
  2232. - string
  2233. - 'null'
  2234. format: iri-reference
  2235. example: 'https://example.com/'
  2236. comments:
  2237. readOnly: true
  2238. type: array
  2239. items:
  2240. $ref: '#/components/schemas/Comment'
  2241. createdAt:
  2242. readOnly: true
  2243. type:
  2244. - string
  2245. - 'null'
  2246. format: date-time
  2247. Post-posting_create:
  2248. type: object
  2249. description: ''
  2250. deprecated: false
  2251. required:
  2252. - headline
  2253. - message
  2254. properties:
  2255. headline:
  2256. type:
  2257. - string
  2258. - 'null'
  2259. message:
  2260. type:
  2261. - string
  2262. - 'null'
  2263. partner:
  2264. 'owl:maxCardinality': 1
  2265. type:
  2266. - string
  2267. - 'null'
  2268. format: iri-reference
  2269. example: 'https://example.com/'
  2270. contact:
  2271. 'owl:maxCardinality': 1
  2272. type:
  2273. - string
  2274. - 'null'
  2275. format: iri-reference
  2276. example: 'https://example.com/'
  2277. Post-posting_patch:
  2278. type: object
  2279. description: ''
  2280. deprecated: false
  2281. required:
  2282. - headline
  2283. - message
  2284. properties:
  2285. headline:
  2286. type:
  2287. - string
  2288. - 'null'
  2289. message:
  2290. type:
  2291. - string
  2292. - 'null'
  2293. Post.jsonhal:
  2294. type: object
  2295. description: ''
  2296. deprecated: false
  2297. required:
  2298. - headline
  2299. - message
  2300. properties:
  2301. _links:
  2302. type: object
  2303. properties:
  2304. self:
  2305. type: object
  2306. properties:
  2307. href:
  2308. type: string
  2309. format: iri-reference
  2310. headline:
  2311. type:
  2312. - string
  2313. - 'null'
  2314. message:
  2315. type:
  2316. - string
  2317. - 'null'
  2318. owner:
  2319. readOnly: true
  2320. 'owl:maxCardinality': 1
  2321. type:
  2322. - string
  2323. - 'null'
  2324. format: iri-reference
  2325. example: 'https://example.com/'
  2326. ownerName:
  2327. readOnly: true
  2328. type:
  2329. - string
  2330. - 'null'
  2331. partner:
  2332. 'owl:maxCardinality': 1
  2333. type:
  2334. - string
  2335. - 'null'
  2336. format: iri-reference
  2337. example: 'https://example.com/'
  2338. contact:
  2339. 'owl:maxCardinality': 1
  2340. type:
  2341. - string
  2342. - 'null'
  2343. format: iri-reference
  2344. example: 'https://example.com/'
  2345. comments:
  2346. readOnly: true
  2347. type: array
  2348. items:
  2349. $ref: '#/components/schemas/Comment.jsonhal'
  2350. createdAt:
  2351. readOnly: true
  2352. type:
  2353. - string
  2354. - 'null'
  2355. format: date-time
  2356. Post.jsonhal-posting_create:
  2357. type: object
  2358. description: ''
  2359. deprecated: false
  2360. required:
  2361. - headline
  2362. - message
  2363. properties:
  2364. _links:
  2365. type: object
  2366. properties:
  2367. self:
  2368. type: object
  2369. properties:
  2370. href:
  2371. type: string
  2372. format: iri-reference
  2373. headline:
  2374. type:
  2375. - string
  2376. - 'null'
  2377. message:
  2378. type:
  2379. - string
  2380. - 'null'
  2381. partner:
  2382. 'owl:maxCardinality': 1
  2383. type:
  2384. - string
  2385. - 'null'
  2386. format: iri-reference
  2387. example: 'https://example.com/'
  2388. contact:
  2389. 'owl:maxCardinality': 1
  2390. type:
  2391. - string
  2392. - 'null'
  2393. format: iri-reference
  2394. example: 'https://example.com/'
  2395. Post.jsonld:
  2396. type: object
  2397. description: ''
  2398. deprecated: false
  2399. required:
  2400. - headline
  2401. - message
  2402. properties:
  2403. '@context':
  2404. readOnly: true
  2405. oneOf:
  2406. -
  2407. type: string
  2408. -
  2409. type: object
  2410. properties:
  2411. '@vocab':
  2412. type: string
  2413. hydra:
  2414. type: string
  2415. enum: ['http://www.w3.org/ns/hydra/core#']
  2416. required:
  2417. - '@vocab'
  2418. - hydra
  2419. additionalProperties: true
  2420. '@id':
  2421. readOnly: true
  2422. type: string
  2423. '@type':
  2424. readOnly: true
  2425. type: string
  2426. headline:
  2427. type:
  2428. - string
  2429. - 'null'
  2430. message:
  2431. type:
  2432. - string
  2433. - 'null'
  2434. owner:
  2435. readOnly: true
  2436. 'owl:maxCardinality': 1
  2437. type:
  2438. - string
  2439. - 'null'
  2440. format: iri-reference
  2441. example: 'https://example.com/'
  2442. ownerName:
  2443. readOnly: true
  2444. type:
  2445. - string
  2446. - 'null'
  2447. partner:
  2448. 'owl:maxCardinality': 1
  2449. type:
  2450. - string
  2451. - 'null'
  2452. format: iri-reference
  2453. example: 'https://example.com/'
  2454. contact:
  2455. 'owl:maxCardinality': 1
  2456. type:
  2457. - string
  2458. - 'null'
  2459. format: iri-reference
  2460. example: 'https://example.com/'
  2461. comments:
  2462. readOnly: true
  2463. type: array
  2464. items:
  2465. $ref: '#/components/schemas/Comment.jsonld'
  2466. createdAt:
  2467. readOnly: true
  2468. type:
  2469. - string
  2470. - 'null'
  2471. format: date-time
  2472. Post.jsonld-posting_create:
  2473. type: object
  2474. description: ''
  2475. deprecated: false
  2476. required:
  2477. - headline
  2478. - message
  2479. properties:
  2480. headline:
  2481. type:
  2482. - string
  2483. - 'null'
  2484. message:
  2485. type:
  2486. - string
  2487. - 'null'
  2488. partner:
  2489. 'owl:maxCardinality': 1
  2490. type:
  2491. - string
  2492. - 'null'
  2493. format: iri-reference
  2494. example: 'https://example.com/'
  2495. contact:
  2496. 'owl:maxCardinality': 1
  2497. type:
  2498. - string
  2499. - 'null'
  2500. format: iri-reference
  2501. example: 'https://example.com/'
  2502. User:
  2503. type: object
  2504. description: ''
  2505. deprecated: false
  2506. required:
  2507. - email
  2508. - firstName
  2509. - lastName
  2510. properties:
  2511. email:
  2512. format: email
  2513. externalDocs:
  2514. url: 'https://schema.org/email'
  2515. type:
  2516. - string
  2517. - 'null'
  2518. firstName:
  2519. type:
  2520. - string
  2521. - 'null'
  2522. lastName:
  2523. type:
  2524. - string
  2525. - 'null'
  2526. password:
  2527. writeOnly: true
  2528. description: 'The plaintext password when being set or changed.'
  2529. type:
  2530. - string
  2531. - 'null'
  2532. active:
  2533. type: boolean
  2534. posts:
  2535. readOnly: true
  2536. type: array
  2537. items:
  2538. type: string
  2539. format: iri-reference
  2540. example: 'https://example.com/'
  2541. createdAt:
  2542. readOnly: true
  2543. type:
  2544. - string
  2545. - 'null'
  2546. format: date-time
  2547. User.jsonhal:
  2548. type: object
  2549. description: ''
  2550. deprecated: false
  2551. required:
  2552. - email
  2553. - firstName
  2554. - lastName
  2555. properties:
  2556. _links:
  2557. type: object
  2558. properties:
  2559. self:
  2560. type: object
  2561. properties:
  2562. href:
  2563. type: string
  2564. format: iri-reference
  2565. email:
  2566. format: email
  2567. externalDocs:
  2568. url: 'https://schema.org/email'
  2569. type:
  2570. - string
  2571. - 'null'
  2572. firstName:
  2573. type:
  2574. - string
  2575. - 'null'
  2576. lastName:
  2577. type:
  2578. - string
  2579. - 'null'
  2580. password:
  2581. writeOnly: true
  2582. description: 'The plaintext password when being set or changed.'
  2583. type:
  2584. - string
  2585. - 'null'
  2586. active:
  2587. type: boolean
  2588. posts:
  2589. readOnly: true
  2590. type: array
  2591. items:
  2592. type: string
  2593. format: iri-reference
  2594. example: 'https://example.com/'
  2595. createdAt:
  2596. readOnly: true
  2597. type:
  2598. - string
  2599. - 'null'
  2600. format: date-time
  2601. User.jsonld:
  2602. type: object
  2603. description: ''
  2604. deprecated: false
  2605. required:
  2606. - email
  2607. - firstName
  2608. - lastName
  2609. properties:
  2610. '@context':
  2611. readOnly: true
  2612. oneOf:
  2613. -
  2614. type: string
  2615. -
  2616. type: object
  2617. properties:
  2618. '@vocab':
  2619. type: string
  2620. hydra:
  2621. type: string
  2622. enum: ['http://www.w3.org/ns/hydra/core#']
  2623. required:
  2624. - '@vocab'
  2625. - hydra
  2626. additionalProperties: true
  2627. '@id':
  2628. readOnly: true
  2629. type: string
  2630. '@type':
  2631. readOnly: true
  2632. type: string
  2633. email:
  2634. format: email
  2635. externalDocs:
  2636. url: 'https://schema.org/email'
  2637. type:
  2638. - string
  2639. - 'null'
  2640. firstName:
  2641. type:
  2642. - string
  2643. - 'null'
  2644. lastName:
  2645. type:
  2646. - string
  2647. - 'null'
  2648. password:
  2649. writeOnly: true
  2650. description: 'The plaintext password when being set or changed.'
  2651. type:
  2652. - string
  2653. - 'null'
  2654. active:
  2655. type: boolean
  2656. posts:
  2657. readOnly: true
  2658. type: array
  2659. items:
  2660. type: string
  2661. format: iri-reference
  2662. example: 'https://example.com/'
  2663. createdAt:
  2664. readOnly: true
  2665. type:
  2666. - string
  2667. - 'null'
  2668. format: date-time
  2669. responses: { }
  2670. parameters: { }
  2671. examples: { }
  2672. requestBodies: { }
  2673. headers: { }
  2674. securitySchemes:
  2675. JWT:
  2676. type: http
  2677. scheme: bearer
  2678. bearerFormat: JWT
  2679. security:
  2680. -
  2681. JWT: []
  2682. tags: []