mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 20:37:50 +00:00
33 lines
983 B
YAML
33 lines
983 B
YAML
description: The inner object representing the completed SOD Violation check
|
|
type: object
|
|
properties:
|
|
message:
|
|
$ref: '../../v3/schemas/ErrorMessageDto.yaml'
|
|
description: >-
|
|
If the request failed, includes any error message that was generated.
|
|
example:
|
|
- locale: "en-US"
|
|
localeOrigin: "DEFAULT"
|
|
text: "An error has occurred during the SOD violation check"
|
|
clientMetadata:
|
|
type: object
|
|
additionalProperties:
|
|
type: string
|
|
description: >-
|
|
Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on
|
|
completion of the violation check.
|
|
example:
|
|
requestedAppName: test-app
|
|
requestedAppId: 2c91808f7892918f0178b78da4a305a1
|
|
violationContexts:
|
|
type: array
|
|
items:
|
|
$ref: './SodViolationContext.yaml'
|
|
violatedPolicies:
|
|
type: array
|
|
description: A list of the Policies that were violated.
|
|
items:
|
|
$ref: './SodPolicyDto.yaml'
|
|
|
|
|