Skip to content

Commit

Permalink
[DOCS] Add more examples for generating openAPI documents (elastic#20…
Browse files Browse the repository at this point in the history
…0262)

## Summary

Relates to elastic#181995
This PR updates the examples to include availability information and
another description.

Co-authored-by: Jean-Louis Leysens <[email protected]>
  • Loading branch information
2 people authored and paulinashakirova committed Nov 26, 2024
1 parent 9c5bae5 commit 991e7ea
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions dev_docs/tutorials/generating_oas_for_http_apis.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ Other useful query parameters for filtering are:
import { schema, TypeOf } from '@kbn/config-schema';

export const fooResource = schema.object({
name: schema.string()
name: schema.string({
meta: { description: 'A unique identifier for...' },
}),
// ...and any other fields you may need
});

Expand Down Expand Up @@ -114,8 +116,14 @@ function registerFooRoute(router: IRouter, docLinks: DoclinksStart) {
access: 'public',
summary: 'Create a foo resource'
description: `A foo resource enables baz. See the following [documentation](${docLinks.links.fooResource}).`,
tags: ['oas-tag:my tag'], // Each operation must have a tag that's used to group similar endpoints in the docs
deprecated: true // An indicator that the operation is deprecated
deprecated: true, // An indicator that the operation is deprecated
options: {
tags: ['oas-tag:my tag'], // Each operation must have a tag that's used to group similar endpoints in the docs
availability: {
since: '1.0.0',
stability: 'experimental',
},
},
})
.addVersion({
version: '2023-10-31',
Expand Down

0 comments on commit 991e7ea

Please sign in to comment.