Konzept
¶
Das hier präsentierte Casereporting Schema basiert auf einer Veröffentlichung von Bernerd et al. 2023 (Bernert et al., 2023)1. Es wurde in der Umsetzung konkretisiert und in mehreren Formularen und einer Datenbank implementiert.
-
Experiments: ...
-
Lab Data: ...
-
Actors:
-
Organisations:
RWL Schema UML¶
Viewing, Downloading, and Editing
- See the diagram in fullscreen here.
- Edit this diagram in the Mermaid Live Editor (layout, colors etc.)
Downloads and Examples
- Standard Diagram (
LR): Download .mmd - Fullscreen Diagram (
TB, Wide): Download .mmd - You can export your own diagram from the Live Editor. See an example of an exported SVG here.
This is a live view for the latest Schema version.
classDiagram
direction LR
class Actor {
+ CompositeKey pkey
+ string name
+ Sector sector
+ string description
+ string contact_data
+ string link_url
}
class Sector{
<<enumeration>>
UNKNOWN
SOCIETY
SCIENCE
BUSINESS
ADMINISTRATION
}
class Publication {
+ CompositeKey pkey
+ string title
+ string citation
+ string link_url
+ CompositeKey lab_pkey
+ CompositeKey experiment_pkey
}
class Origin {
+ int32 origin_id
+ string name
}
class CompositeKey {
+ Origin origin
+ string id
}
class LabContext {
+ CompositeKey pkey
+ CompositeKey lab_pkey
+ Motivation motivation
+ ExternalFactors external_factors
+ ScopeAndGovernance scope_and_governance
}
class Motivation {
+ string sustainability_problem
+ string research_motivation_and_objectives
+ string sustainability_understanding_adopted
+ string sustainability_understanding_process
+ string sustainability_understanding_changes
}
class ExternalFactors {
+ string environmental
+ string financial_economic
+ string legal_political
+ string organisational_capacity
+ string social_cultural
+ string technical_infrastructure
}
class ScopeAndGovernance {
+ string governance_system
+ string spatial_scope
+ string temporal_scope
+ string foundation_and_previous_work
+ string long_term_perspective
}
class ExperimentContext {
+ CompositeKey pkey
+ CompositeKey experiment_pkey
+ string external_context_description
}
class Lab {
+ CompositeKey pkey
+ string name
+ string image_url
+ string description
+ string link_url
+ List~string~ topics
+ InnovationFocus innovation_focus
+ bool is_finished
+ google.protobuf.Timestamp start_date
+ google.protobuf.Timestamp end_date
+ google.protobuf.Duration duration
+ string responsible_institution
+ List~string~ involved_institutions
+ string financing_info
+ List~CompositeKey~ involved_actors_pkey
+ List~CompositeKey~ resulting_publications_pkey
}
class InnovationFocus{
<<enumeration>>
UNKNOWN
TECHNICAL
SOCIAL
}
class Experiment {
+ CompositeKey pkey
+ string general_information
+ string inputs
+ string process
+ string outcome
+ string output
+ CompositeKey lab_pkey
+ CompositeKey solution_pkey
+ google.protobuf.Timestamp start_date
+ google.protobuf.Timestamp end_date
+ google.protobuf.Duration duration
}
class Intervention {
+ CompositeKey pkey
+ string general_information
+ string inputs
+ string process
+ string outcome
+ string output
+ CompositeKey experiment_pkey
+ CompositeKey lab_pkey
+ CompositeKey solution_pkey
+ google.protobuf.Timestamp start_date
+ google.protobuf.Timestamp end_date
+ google.protobuf.Duration duration
}
Actor --> `CompositeKey`
Actor --> `Sector`
Actor --o `Sector`
CompositeKey --> `Origin`
Experiment --> `CompositeKey`
Experiment --> `google.protobuf.Duration`
Experiment --> `google.protobuf.Timestamp`
ExperimentContext --> `CompositeKey`
Intervention --> `CompositeKey`
Intervention --> `google.protobuf.Duration`
Intervention --> `google.protobuf.Timestamp`
Lab --> `CompositeKey`
Lab --> `InnovationFocus`
Lab --> `google.protobuf.Duration`
Lab --> `google.protobuf.Timestamp`
Lab --o `InnovationFocus`
LabContext --> `CompositeKey`
LabContext --> `ExternalFactors`
LabContext --> `Motivation`
LabContext --> `ScopeAndGovernance`
LabContext --o `ExternalFactors`
LabContext --o `Motivation`
LabContext --o `ScopeAndGovernance`
Publication --> `CompositeKey`
-
Bernert, P., Wahl, D., Von Wehrden, H., & Lang, D. J. (2023). Cross-case knowledge transfer in transformative research: Enabling learning in and across sustainability-oriented labs through case reporting. Urban Transformations, 5(1), 12. https://doi.org/10.1186/s42854-023-00056-w ↩