From 796f31aadfeef86bdbc77fb65ab552e07fd8a424 Mon Sep 17 00:00:00 2001 From: Quaternions <krakow20@gmail.com> Date: Fri, 11 Apr 2025 12:49:34 -0700 Subject: [PATCH] openapi: add fields to submission create --- openapi.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index abb3424..69ea9bb 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -1641,12 +1641,25 @@ components: SubmissionTriggerCreate: required: - AssetID + - DisplayName + - Creator + - GameID type: object properties: AssetID: type: integer format: int64 minimum: 0 + DisplayName: + type: string + maxLength: 128 + Creator: + type: string + maxLength: 128 + GameID: + type: integer + format: int32 + minimum: 0 ReleaseInfo: required: - SubmissionID