Cyber Review 2024 - Join Jeremy Snyder & Mikko Hypponen for a look at the key developments in cybersecurity this year.
This rule applies at the API Specification level (OAS/Swagger).
In the example below:
Person
address
Address
resident
securitySchemes: components: schemas: Person: type: object properties: name: type: string address: $ref: '#/components/schemas/Address' Address: type: object properties: street: type: string resident: $ref: '#/components/schemas/Person'