{
    "title": "OIDC Identity Provider",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.security.identityservice.OidcIdentityProvider",
    "type": "object",
    "properties": {
        "identityServiceName": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        },
        "iamOidcClientId": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "iamOidcClientSecret": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "iamOidcName": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "iamOidcAuthenticationUrl": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "iamIconUrl": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        }
    },
    "additionalProperties": false
}