My openapi.yml file endpoint looks like this:
/v2/myendpoint:
get:
summary: Retrieve stuff
requestBody:
required: true
content:
application/json:
schema:
$ref: '../schemas/my_get_request.json'
Within my_get_request.json
I reference a definition in a common.json
file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://january.com/schemas/v0.2.1/my_get_request.json",
"type": "object",
"title": "MyGetRequest",
"properties": {
"unique_ID": {
"type": "string",
"description": "randomdescription"
},
"status": {
"$ref": "common.json#/$defs/blahStatus"
},
When I use Redocly to generate a static webpage, next to status
I see string(blahStatus)
is it possible to hide string(blahStatus)
from showing so users don't see my internal naming of definitions in common.json
?