Perhaps I'm missing something, but I can't seem to get the reference of an array's items.
Given the spec:
openapi: 3.0.2
# ...
components:
schemas:
event:
type: object
properties:
invitees:
type: array
items:
$ref: '#/components/schemas/user'
user:
type: object
properties:
name:
type: string
This returns false:
Overlay.of(model.getSchema("event").getProperty("invitees")).isReference("items");
Perhaps I'm missing something, but I can't seem to get the reference of an array's items.
Given the spec:
This returns
false: