diff --git a/ui/public/assets/data/registration.json b/ui/public/assets/data/registration.json index e7434acd6..c18fb57d6 100644 --- a/ui/public/assets/data/registration.json +++ b/ui/public/assets/data/registration.json @@ -1,18 +1,18 @@ { "resourceId": "foobar", "name": "Foobar", - "redirect_uris": [], - "response_types": [], - "grant_types": "", - "application_type": "", + "redirectUris": [], + "responseTypes": [], + "grantTypes": "", + "applicationType": "", "contacts": "", - "subject_type": "", + "subjectType": "", "jwks": "", - "jwks_uri": "", - "token_endpoint_auth_method": "", - "logo_uri": "", - "policy_uri": "", - "tos_uri": "", + "jwksUri": "", + "tokenEndpointAuthMethod": "", + "logoUri": "", + "policyUri": "", + "tosUri": "", "scope": "", "enabled": true, "modifiedDate": "2022-10-21T11:57:24.391649", diff --git a/ui/public/assets/data/registrations.json b/ui/public/assets/data/registrations.json index 90dd2b1af..1578a9723 100644 --- a/ui/public/assets/data/registrations.json +++ b/ui/public/assets/data/registrations.json @@ -2,18 +2,21 @@ { "resourceId": "foobar", "name": "Foobar", - "redirect_uris": [], - "response_types": [], - "grant_types": "", - "application_type": "", + "redirectUris": [], + "responseTypes": [], + "grantTypes": "", + "applicationType": "", "contacts": "", - "subject_type": "", + "subjectType": "", "jwks": "", - "jwks_uri": "", - "token_endpoint_auth_method": "", - "logo_uri": "", - "policy_uri": "", - "tos_uri": "", - "scope": "" + "jwksUri": "", + "tokenEndpointAuthMethod": "", + "logoUri": "", + "policyUri": "", + "tosUri": "", + "scope": "", + "enabled": true, + "modifiedDate": "2022-10-21T11:57:24.391649", + "createdData": "2022-10-21T11:57:24.391649" } ] diff --git a/ui/public/assets/schema/dynamic-registration/oidc.json b/ui/public/assets/schema/dynamic-registration/oidc.json index c746c5d29..4b6f8fb85 100644 --- a/ui/public/assets/schema/dynamic-registration/oidc.json +++ b/ui/public/assets/schema/dynamic-registration/oidc.json @@ -8,6 +8,81 @@ "type": "string", "minLength": 1, "maxLength": 255 - } + }, + "resourceId": { + "type": "string" + }, + "redirectUris": { + "type": "array", + "items": { + "type": "string" + } + }, + "responseTypes": { + "type": "array", + "items": { + "type": "string" + } + }, + "grantTypes": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "applicationType": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "contacts": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "subjectType": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "jwks": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "jwksUri": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "tokenEndpointAuthMethod": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "logoUri": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "policyUri": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "tosUri": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "scope": { + "title": "label.dynamic-registration-", + "description": "tooltip.dynamic-registration-", + "type": "string" + }, + "enabled": { + "type": "boolean" + }, + "modifiedDate": "2022-10-21T11:57:24.391649", + "createdData": "2022-10-21T11:57:24.391649" } }