Agenda
Review the roadmap
Demonstration of current work
Review the roadmap
Design Questions
...
Roadmap
Planned Architecture
...
Working Client Management and Authentication
Expand |
---|
|
Code Block |
---|
sequenceDiagram
actor Sys Admin
rect rgb(191, 223, 255)
note right of Sys Admin: One time setup.
Sys Admin->>Config Service: POST /connect/register
Config Service->>Identity Provider: Create credentials
note right of Identity Provider: Created with config role
Config Service-->>Sys Admin: clientCredentials
end
Sys Admin->>Config Service: POST /v2/vendors
Config Service->>Config Database: INSERT dbo.Vendor
Sys Admin->>Config Service: POST /v2/applications
Config Service->>Identity Provider: Create credentials
note right of Identity Provider: Created with dms role
Identity Provider-->>Config Service: clientCredentials
Config Service->>Config Database: INSERT dbo.Application
Config Database -->>Config Service: applicationId
Config Service->>Config Database: INSERT dbo.ApplicationEducationOrganization
Config Service->>Config Database: INSERT dbo.ApiClient
Config Service-->>Sys Admin: clientCredentials |
|
...
Roadmap
Basic timeline
Tech Congress 2025 - release candidate with “basic” feature set useable for pilot testing typical data exchange scenarios.
...
Feature | ODS/API Platform | Data Management Service | By TC | By Summit |
---|
SwaggerUI | | | | |
Admin Console | coming soon | | | |
Demonstration
Working Client Management and Authentication
Expand |
---|
|
Code Block |
---|
sequenceDiagram
actor Sys Admin
rect rgb(191, 223, 255)
note right of Sys Admin: One time setup.
Sys Admin->>Config Service: POST /connect/register
Config Service->>Identity Provider: Create credentials
note right of Identity Provider: Created with config role
Config Service-->>Sys Admin: clientCredentials
end
Sys Admin->>Config Service: POST /v2/vendors
Config Service->>Config Database: INSERT dbo.Vendor
Sys Admin->>Config Service: POST /v2/applications
Config Service->>Identity Provider: Create credentials
note right of Identity Provider: Created with dms role
Identity Provider-->>Config Service: clientCredentials
Config Service->>Config Database: INSERT dbo.Application
Config Database -->>Config Service: applicationId
Config Service->>Config Database: INSERT dbo.ApplicationEducationOrganization
Config Service->>Config Database: INSERT dbo.ApiClient
Config Service-->>Sys Admin: clientCredentials |
|
...
Design Questions
What plans are there for error detection (i.e. dropped records) and correction?
...