@@ -351,6 +351,7 @@ paths:
351351 - $ref : " #/parameters/x-email"
352352 - name : claGroupInput
353353 in : body
354+ required : true
354355 schema :
355356 $ref : ' #/definitions/create-cla-group-input'
356357 responses :
@@ -2663,6 +2664,7 @@ paths:
26632664 - $ref : " #/parameters/path-userID"
26642665 - name : body
26652666 in : body
2667+ required : true
26662668 schema :
26672669 type : object
26682670 required :
@@ -2829,6 +2831,7 @@ paths:
28292831 - $ref : " #/parameters/path-companyID"
28302832 - $ref : " #/parameters/path-projectSFID"
28312833 - name : body
2834+ required : true
28322835 in : body
28332836 schema :
28342837 type : object
@@ -2998,6 +3001,7 @@ paths:
29983001 - $ref : " #/parameters/path-companyID"
29993002 - name : body
30003003 in : body
3004+ required : true
30013005 schema :
30023006 type : object
30033007 x-nullable : false
@@ -3043,6 +3047,7 @@ paths:
30433047 - $ref : " #/parameters/path-companyID"
30443048 - name : body
30453049 in : body
3050+ required : true
30463051 schema :
30473052 type : object
30483053 x-nullable : false
@@ -4637,7 +4642,9 @@ parameters:
46374642 description : the Salesforce ID of the Foundation
46384643 in : query
46394644 type : string
4640- pattern : ' ^[a-zA-Z0-9]{18}|[a-zA-Z0-9]{15}$' # see: https://stackoverflow.com/questions/9742913/validating-a-salesforce-id
4645+ pattern : ' ^([0-9A-Za-z]{15}|[0-9A-Za-z]{18})$' # see: https://stackoverflow.com/questions/9742913/validating-a-salesforce-id
4646+ minLength : 15
4647+ maxLength : 18
46414648 companyID :
46424649 name : companyID
46434650 description : The internal company ID representing signing entity name instance (EasyCLA)
@@ -4658,18 +4665,18 @@ parameters:
46584665 in : path
46594666 type : string
46604667 required : true
4661- pattern : ' ^[a-zA-Z0-9]{18 }|[a-zA-Z0-9]{15} $' # see: https://stackoverflow.com/questions/9742913/validating-a-salesforce-id
4662- minLength : 5
4663- maxLength : 255
4668+ pattern : ' ^([0-9A-Za-z]{15 }|[0-9A-Za-z]{18}) $' # see: https://stackoverflow.com/questions/9742913/validating-a-salesforce-id
4669+ minLength : 15
4670+ maxLength : 18
46644671 path-projectSFID :
46654672 name : projectSFID
46664673 description : the Salesforce ID of the project
46674674 in : path
46684675 type : string
46694676 required : true
4670- pattern : ' ^[a-zA-Z0-9]{18 }|[a-zA-Z0-9]{15} $' # see: https://stackoverflow.com/questions/9742913/validating-a-salesforce-id
4671- minLength : 5
4672- maxLength : 255
4677+ pattern : ' ^([0-9A-Za-z]{15 }|[0-9A-Za-z]{18}) $' # see: https://stackoverflow.com/questions/9742913/validating-a-salesforce-id
4678+ minLength : 15
4679+ maxLength : 18
46734680 path-userID :
46744681 name : userID
46754682 description : v1 EasyCLA user Admin ID
@@ -4699,7 +4706,9 @@ parameters:
46994706 in : path
47004707 type : string
47014708 required : true
4702- pattern : ' ^[a-zA-Z0-9]{18}|[a-zA-Z0-9]{15}$' # see: https://stackoverflow.com/questions/9742913/validating-a-salesforce-id
4709+ pattern : ' ^([0-9A-Za-z]{15}|[0-9A-Za-z]{18})$' # see: https://stackoverflow.com/questions/9742913/validating-a-salesforce-id
4710+ minLength : 15
4711+ maxLength : 18
47034712 path-companyName :
47044713 name : companyName
47054714 description : the company name
0 commit comments