diff options
author | leventecsanyi <levente.csanyi@est.tech> | 2024-07-18 13:45:35 +0200 |
---|---|---|
committer | leventecsanyi <levente.csanyi@est.tech> | 2024-07-19 14:19:49 +0200 |
commit | aa4d6e27a7488ff06aae8b97aac9b45d3e4d3bfe (patch) | |
tree | ceee4cca9f8e480fb1c41d26666fe352f6097354 /docs | |
parent | 0fe1b63d10a6ce4ec452d2089b9ffe101acd38f8 (diff) |
Added DataJob related stub implementations
- updated pom.xml
- added dataJob related code to DMI Stub controller
- uplifted swagger core dependency
Issue-ID: CPS-2323
Signed-off-by: leventecsanyi <levente.csanyi@est.tech>
Change-Id: If30e1fad31daec004ad67dd3f2be1815aeb538b2
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api/swagger/openapi-datajob.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/api/swagger/openapi-datajob.yaml b/docs/api/swagger/openapi-datajob.yaml index e58591e0..284b372e 100644 --- a/docs/api/swagger/openapi-datajob.yaml +++ b/docs/api/swagger/openapi-datajob.yaml @@ -282,3 +282,22 @@ components: - op - path type: object + SubjobWriteResponse: + type: object + required: + - subJobId + - dmiServiceName + - dataProducerId + properties: + subJobId: + description: Unique identifier for the sub-job + example: my-sub-job-id + type: string + dmiServiceName: + description: Name of the relevant DMI Service + example: my-dmi-service + type: string + dataProducerId: + description: ID of the producer registered by DMI for the paths in the operations in this request + example: my-data-producer-identifier + type: string |