mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 20:37:50 +00:00
* Fixed several issues * More fixes to v3 APIs * More fixes * Fixed more v3 schema issues * fixed campaign filters path * Updated redoc API generator to v10 * Updated redoc api generator action to latest version * Added log to action * Fixed path in action * Added orderBy to saved search * Added some fixes for beta * Fixed duplicate nullable * Triggering checks again * Triggering checks again * More beta fixes * Fixed schema bug' by github action: 7980819692
31 lines
757 B
YAML
31 lines
757 B
YAML
type: object
|
|
properties:
|
|
comment:
|
|
type: string
|
|
nullable: true
|
|
description: Comment content.
|
|
example: This is a comment.
|
|
created:
|
|
type: string
|
|
format: 'date-time'
|
|
description: Date and time comment was created.
|
|
example: '2017-07-11T18:45:37.098Z'
|
|
author:
|
|
type: object
|
|
readOnly: true
|
|
description: Author of the comment
|
|
properties:
|
|
type:
|
|
type: string
|
|
enum:
|
|
- IDENTITY
|
|
example: IDENTITY
|
|
description: The type of object
|
|
id:
|
|
type: string
|
|
description: The unique ID of the object
|
|
example: 2c9180847e25f377017e2ae8cae4650b
|
|
name:
|
|
type: string
|
|
description: The display name of the object
|
|
example: john.doe |