I found that UI would not show the description of items with the referenced schema.
I think this had mentioned In #538, but not fixed?
What swagger-UI showed:

What redoc showed, which lack of description "bar schema description.":

I test it with redoc-cli version 0.9.4, and the example YAML:
openapi: "3.0.0"
info:
title: test
version: "0.0.0"
paths:
/foo:
get:
summary: foo
responses:
200:
description: OK
content:
application/json:
schema:
description: array of bars
type: array
items:
$ref: "#/components/schemas/bar"
components:
schemas:
bar:
description: bar schema description.
type: object
properties:
name:
type: string
Where do you see this description to be rendered? PR would be appreciated!
Where do you see this description to be rendered?
I suggest that just render it before the "Array[", I made a mocking picture.

PR would be appreciated!
I would love to contribute to this project, but unfortunately, I know nothing about react and I am not good at Javascript either.
Would this PR assist?
Add the title tag to the Array () definition within a schema block
Most helpful comment
Would this PR assist?
Add the title tag to the Array () definition within a schema block