File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1543,6 +1543,16 @@ components:
15431543 type: string
15441544 example: '321654'
15451545 x-env-variable: message
1546+ ooo_entry_path_gid:
1547+ name: ooo_entry_gid
1548+ in: path
1549+ description: >-
1550+ Globally unique identifier for the OOO entry.
1551+ required: true
1552+ schema:
1553+ type: string
1554+ example: '12345'
1555+ x-env-variable: ooo_entry
15461556 allocation_path_gid:
15471557 name: allocation_gid
15481558 in: path
@@ -4287,6 +4297,67 @@ components:
42874297 description: A full uri containing the query parameters to fetch for next_page
42884298 example:
42894299 https://app.asana.com/api/1.0/tasks/12345/attachments?limit=2&offset=eyJ0eXAiOJiKV1iQLCJhbGciOiJIUzI1NiJ9
4300+ OooEntryBase:
4301+ description: >-
4302+ A generic Asana Resource, containing a globally unique identifier.
4303+ type: object
4304+ properties:
4305+ gid:
4306+ description: >-
4307+ Globally unique identifier of the resource, as a string.
4308+ type: string
4309+ readOnly: true
4310+ example: '12345'
4311+ x-insert-after: false
4312+ resource_type:
4313+ description: The base type of this resource.
4314+ type: string
4315+ readOnly: true
4316+ example: ooo_entry
4317+ x-insert-after: gid
4318+ start_date:
4319+ type: string
4320+ format: date
4321+ description: >-
4322+ The day on which the OOO entry starts.
4323+ example: '2024-01-01'
4324+ end_date:
4325+ type: string
4326+ format: date
4327+ description: >-
4328+ The day on which the OOO entry ends.
4329+ example: '2024-01-15'
4330+ OooEntryResponse:
4331+ allOf:
4332+ - $ref: '#/components/schemas/OooEntryBase'
4333+ - type: object
4334+ properties:
4335+ user:
4336+ $ref: '#/components/schemas/UserCompact'
4337+ type: object
4338+ description: >-
4339+ The user who is out of office.
4340+ created_by:
4341+ $ref: '#/components/schemas/UserCompact'
4342+ type: object
4343+ description: >-
4344+ The user who created the OOO entry.
4345+ OooEntryCreateRequest:
4346+ allOf:
4347+ - $ref: '#/components/schemas/OooEntryBase'
4348+ - type: object
4349+ properties:
4350+ user:
4351+ type: string
4352+ description: >-
4353+ Globally unique identifier for the user who is out of office.
4354+ workspace:
4355+ type: string
4356+ description: >-
4357+ Globally unique identifier for the workspace.
4358+ example: '98765'
4359+ OooEntryUpdateRequest:
4360+ $ref: '#/components/schemas/OooEntryBase'
42904361 OrganizationExportBase:
42914362 $ref: '#/components/schemas/OrganizationExportCompact'
42924363 OrganizationExportCompact:
You can’t perform that action at this time.
0 commit comments