From ceac3ada853eb980fe78eae6fe80288b9a88fff4 Mon Sep 17 00:00:00 2001 From: Ray Chen Date: Wed, 17 Jul 2024 16:39:40 +0800 Subject: [PATCH 1/2] Update GenerateOutputSchema.json --- .../sdkautomation/GenerateOutputSchema.json | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/documentation/sdkautomation/GenerateOutputSchema.json b/documentation/sdkautomation/GenerateOutputSchema.json index c0503f4b3375..d41c8f4217c7 100644 --- a/documentation/sdkautomation/GenerateOutputSchema.json +++ b/documentation/sdkautomation/GenerateOutputSchema.json @@ -46,6 +46,19 @@ "type": "string" } }, + "typespecProject": { + // List of related typespec project of this package. + "type": "array", + "items": { + "type": "string" + } + }, + "language": { + "type": "string" + }, + "apiViewArtifact": { + "type": "string" + }, "changelog": { "type": "object", "properties": { @@ -56,10 +69,18 @@ "hasBreakingChange": { // Does the new package has breaking change "type": "boolean" + }, + "breakingChangeItems": { + // The breaking change details quote from the changelog + "type": "array", + "items": { + "type": "string" + } } }, "required": [ - "content" + "content", + "hasBreakingChange" ] }, "artifacts": { From b334e8c324f41afca22b41894c323257ecf7a448 Mon Sep 17 00:00:00 2001 From: Ray Chen Date: Wed, 17 Jul 2024 16:41:55 +0800 Subject: [PATCH 2/2] Update GenerateOutputSchema.json --- documentation/sdkautomation/GenerateOutputSchema.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/documentation/sdkautomation/GenerateOutputSchema.json b/documentation/sdkautomation/GenerateOutputSchema.json index d41c8f4217c7..b14973a2bcb5 100644 --- a/documentation/sdkautomation/GenerateOutputSchema.json +++ b/documentation/sdkautomation/GenerateOutputSchema.json @@ -79,8 +79,7 @@ } }, "required": [ - "content", - "hasBreakingChange" + "content" ] }, "artifacts": {