mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 04:19:16 +00:00
IDNDENALI-7705: Create taskman GET /v3/task-status and it should accept filtering' by github action: 6089577646
30 lines
580 B
YAML
30 lines
580 B
YAML
description: TaskStatus Message
|
|
required:
|
|
- key
|
|
- localizedText
|
|
- type
|
|
- parameters
|
|
type: object
|
|
properties:
|
|
type:
|
|
description: Type of the message
|
|
type: string
|
|
enum:
|
|
- INFO
|
|
- WARN
|
|
- ERROR
|
|
example: INFO
|
|
localizedText:
|
|
description: Localized form of the message
|
|
$ref: './LocalizedMessage.yaml'
|
|
key:
|
|
description: Key of the message
|
|
type: string
|
|
example: akey
|
|
parameters:
|
|
description: Message parameters for internationalization
|
|
type: array
|
|
items:
|
|
type: object
|
|
example: [{ "name": "value"}]
|