v51

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-08-01131107332.8 KB
Group rules

Update group rule configuration

Updates the configuration of a single rule for the group. The configuration data is specific to each rule type, so the configuration of the COMPATIBILITY rule is in a different format from the configuration of the VALIDITY rule.

This operation can fail for the following reasons:

  • No group with this groupId exists (HTTP error 404)
  • No rule with this name/type is configured for this artifact (HTTP error 404)
  • Invalid rule type (HTTP error 400)
  • A server error occurred (HTTP error 500)
put/groups/{groupId}/rules/{ruleType}

Request body

configstring required
ruleType'VALIDITY' | 'COMPATIBILITY' | 'INTEGRITY'

Example request

{
  "ruleType": "VALIDITY",
  "config": "FULL"
}

Response

Rule configuration was updated.

configstring required
ruleType'VALIDITY' | 'COMPATIBILITY' | 'INTEGRITY'

Example response

{
  "ruleType": "VALIDITY",
  "config": "FULL"
}