@@ -1598,15 +1598,15 @@ public class Script : ScriptBase
15981598 response [ "schema" ] [ "properties" ] [ "signerName" ] = new JObject
15991599 {
16001600 [ "type" ] = "string" ,
1601- [ "x-ms-summary" ] = "* Signer name "
1601+ [ "x-ms-summary" ] = "* Signer or Signing Group Name "
16021602 } ;
16031603 }
16041604 else if ( recipientType . Equals ( "signers" , StringComparison . OrdinalIgnoreCase ) )
16051605 {
16061606 response [ "schema" ] [ "properties" ] [ "name" ] = new JObject
16071607 {
16081608 [ "type" ] = "string" ,
1609- [ "x-ms-summary" ] = "* Signer name "
1609+ [ "x-ms-summary" ] = "* Signer or Signing Group Name "
16101610 } ;
16111611 response [ "schema" ] [ "properties" ] [ "email" ] = new JObject
16121612 {
@@ -1637,12 +1637,12 @@ public class Script : ScriptBase
16371637 response [ "schema" ] [ "properties" ] [ "name" ] = new JObject
16381638 {
16391639 [ "type" ] = "string" ,
1640- [ "x-ms-summary" ] = "* Name"
1640+ [ "x-ms-summary" ] = "* Recipient or Signing Group Name"
16411641 } ;
16421642 response [ "schema" ] [ "properties" ] [ "email" ] = new JObject
16431643 {
16441644 [ "type" ] = "string" ,
1645- [ "x-ms-summary" ] = "Email"
1645+ [ "x-ms-summary" ] = "Recipient Email (Leave empty if there’s a signing group) "
16461646 } ;
16471647 }
16481648 }
@@ -3936,11 +3936,26 @@ public class Script : ScriptBase
39363936 foreach ( var signer in signers )
39373937 {
39383938 var roleName = signer [ "roleName" ] ;
3939- itemProperties [ roleName + " Name" ] = basePropertyDefinition . DeepClone ( ) ;
3940- itemProperties [ roleName + " Email" ] = basePropertyDefinition . DeepClone ( ) ;
3939+ itemProperties [ roleName + " Name" ] = new JObject
3940+ {
3941+ [ "type" ] = "string" ,
3942+ [ "x-ms-keyOrder" ] = 0 ,
3943+ [ "x-ms-keyType" ] = "none" ,
3944+ [ "x-ms-sort" ] = "none" ,
3945+ [ "x-ms-summary" ] = roleName + " Recipient Or Signing Group Name"
3946+ } ;
3947+ itemProperties [ roleName + " Email" ] = new JObject
3948+ {
3949+ [ "type" ] = "string" ,
3950+ [ "x-ms-keyOrder" ] = 0 ,
3951+ [ "x-ms-keyType" ] = "none" ,
3952+ [ "x-ms-sort" ] = "none" ,
3953+ [ "x-ms-summary" ] = roleName + " Recipient Email (Leave empty if there’s a signing group)"
3954+ } ;
39413955 itemProperties [ roleName + " Signing Group" ] = new JObject
39423956 {
39433957 [ "type" ] = "string" ,
3958+ [ "x-ms-summary" ] = roleName + " Signing Group" ,
39443959 [ "x-ms-dynamic-values" ] = new JObject
39453960 {
39463961 [ "operationId" ] = "GetSigningGroups" ,
0 commit comments