Prettier formatting

This commit is contained in:
Luke Hagar
2025-10-01 19:33:18 +00:00
parent 9aca409a38
commit 5685fc2796
166 changed files with 35810 additions and 49685 deletions

View File

@@ -55,31 +55,31 @@
* ```
*/
export interface Reference {
/**
* The reference string. This field is required and must be a valid JSON Reference.
* It can reference internal components using `#/` or external resources using URLs.
*
* @example "#/components/schemas/User"
* @example "#/components/responses/NotFound"
* @example "https://example.com/schemas/User.json"
*/
$ref: string;
/**
* The reference string. This field is required and must be a valid JSON Reference.
* It can reference internal components using `#/` or external resources using URLs.
*
* @example "#/components/schemas/User"
* @example "#/components/responses/NotFound"
* @example "https://example.com/schemas/User.json"
*/
$ref: string;
/**
* A description of the referenced object. This can be used to provide
* additional context about what the referenced object represents.
*
* @example "A user object containing user information"
* @example "Standard error response for not found resources"
*/
description?: string;
/**
* A description of the referenced object. This can be used to provide
* additional context about what the referenced object represents.
*
* @example "A user object containing user information"
* @example "Standard error response for not found resources"
*/
description?: string;
/**
* A short summary of the referenced object. This can be used to provide
* a brief overview of what the referenced object represents.
*
* @example "User schema"
* @example "Not found response"
*/
summary?: string;
/**
* A short summary of the referenced object. This can be used to provide
* a brief overview of what the referenced object represents.
*
* @example "User schema"
* @example "Not found response"
*/
summary?: string;
}