mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 04:19:16 +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
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
type: object
|
|
properties:
|
|
id:
|
|
type: string
|
|
description: Id of the requestable object itself
|
|
example: 2c9180835d2e5168015d32f890ca1581
|
|
name:
|
|
type: string
|
|
description: Human-readable display name of the requestable object
|
|
example: Applied Research Access
|
|
created:
|
|
type: string
|
|
format: 'date-time'
|
|
example: '2017-07-11T18:45:37.098Z'
|
|
description: The time when the requestable object was created
|
|
modified:
|
|
nullable: true
|
|
type: string
|
|
format: 'date-time'
|
|
example: '2018-06-25T20:22:28.104Z'
|
|
description: The time when the requestable object was last modified
|
|
description:
|
|
type: string
|
|
description: Description of the requestable object.
|
|
example: Access to research information, lab results, and schematics.
|
|
nullable: true
|
|
type:
|
|
$ref: './RequestableObjectType.yaml'
|
|
requestStatus:
|
|
allOf:
|
|
- $ref: './RequestableObjectRequestStatus.yaml'
|
|
- nullable: true
|
|
identityRequestId:
|
|
type: string
|
|
description: If *requestStatus* is *PENDING*, indicates the id of the associated account activity.
|
|
nullable: true
|
|
example: null
|
|
ownerRef:
|
|
$ref: './IdentityReferenceWithNameAndEmail.yaml'
|
|
requestCommentsRequired:
|
|
type: boolean
|
|
description: Whether the requester must provide comments when requesting the object.
|
|
example: false
|
|
|
|
|
|
|