Skip to content

Commit

Permalink
updated schema
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Oct 28, 2022
1 parent 13761cd commit 4e555f3
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 22 deletions.
20 changes: 10 additions & 10 deletions ui/public/assets/data/registration.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
25 changes: 14 additions & 11 deletions ui/public/assets/data/registrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
77 changes: 76 additions & 1 deletion ui/public/assets/schema/dynamic-registration/oidc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit 4e555f3

Please sign in to comment.