├── .editorconfig ├── .gitignore ├── CHANGES.md ├── LICENSE.md ├── README.md ├── context.jsonld ├── docs ├── .nojekyll ├── 404.html ├── CHANGES.html ├── FontAwesome │ ├── css │ │ └── font-awesome.css │ └── fonts │ │ ├── FontAwesome.ttf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── ayu-highlight.css ├── book.js ├── classes │ ├── Actor.html │ ├── AllocationFactor.html │ ├── AnalysisGroup.html │ ├── AspectValue.html │ ├── CalculationSetup.html │ ├── ComplianceDeclaration.html │ ├── CostValue.html │ ├── Currency.html │ ├── DQIndicator.html │ ├── DQScore.html │ ├── DQSystem.html │ ├── Entity.html │ ├── EnviFlow.html │ ├── EnviFlowValue.html │ ├── Epd.html │ ├── EpdModule.html │ ├── EpdProduct.html │ ├── Exchange.html │ ├── ExchangeRef.html │ ├── Flow.html │ ├── FlowMap.html │ ├── FlowMapEntry.html │ ├── FlowMapRef.html │ ├── FlowProperty.html │ ├── FlowPropertyFactor.html │ ├── FlowResult.html │ ├── GroupValue.html │ ├── ImpactCategory.html │ ├── ImpactFactor.html │ ├── ImpactMethod.html │ ├── ImpactResult.html │ ├── ImpactValue.html │ ├── LinkingConfig.html │ ├── Location.html │ ├── NwFactor.html │ ├── NwSet.html │ ├── Parameter.html │ ├── ParameterRedef.html │ ├── ParameterRedefSet.html │ ├── Process.html │ ├── ProcessDocumentation.html │ ├── ProcessLink.html │ ├── ProductSystem.html │ ├── Project.html │ ├── ProjectVariant.html │ ├── Ref.html │ ├── RefEntity.html │ ├── Result.html │ ├── ResultState.html │ ├── Review.html │ ├── ReviewScope.html │ ├── RootEntity.html │ ├── SankeyEdge.html │ ├── SankeyGraph.html │ ├── SankeyNode.html │ ├── SankeyRequest.html │ ├── SocialAspect.html │ ├── SocialIndicator.html │ ├── Source.html │ ├── TechFlow.html │ ├── TechFlowValue.html │ ├── Uncertainty.html │ ├── Unit.html │ ├── UnitGroup.html │ └── UpstreamNode.html ├── clipboard.min.js ├── context.jsonld ├── css │ ├── chrome.css │ ├── general.css │ ├── print.css │ └── variables.css ├── elasticlunr.min.js ├── enums │ ├── AllocationType.html │ ├── Direction.html │ ├── EpdType.html │ ├── FlowPropertyType.html │ ├── FlowType.html │ ├── ModelType.html │ ├── ParameterScope.html │ ├── ProcessType.html │ ├── ProviderLinking.html │ ├── RiskLevel.html │ └── UncertaintyType.html ├── favicon.png ├── favicon.svg ├── fonts │ ├── OPEN-SANS-LICENSE.txt │ ├── SOURCE-CODE-PRO-LICENSE.txt │ ├── fonts.css │ ├── open-sans-v17-all-charsets-300.woff2 │ ├── open-sans-v17-all-charsets-300italic.woff2 │ ├── open-sans-v17-all-charsets-600.woff2 │ ├── open-sans-v17-all-charsets-600italic.woff2 │ ├── open-sans-v17-all-charsets-700.woff2 │ ├── open-sans-v17-all-charsets-700italic.woff2 │ ├── open-sans-v17-all-charsets-800.woff2 │ ├── open-sans-v17-all-charsets-800italic.woff2 │ ├── open-sans-v17-all-charsets-italic.woff2 │ ├── open-sans-v17-all-charsets-regular.woff2 │ └── source-code-pro-v11-all-charsets-500.woff2 ├── highlight.css ├── highlight.js ├── index.html ├── intro.html ├── mark.min.js ├── print.html ├── schema.ttl ├── searcher.js ├── searchindex.js ├── searchindex.json └── tomorrow-night.css ├── examples ├── dq_indicator.json ├── dq_score.json ├── dq_system.json ├── exchange.json ├── flow.json ├── flow_property.json ├── flow_property_factor.json ├── impact_category.json ├── impact_factor.json ├── location.json ├── process.json ├── process_link.json ├── product_system.json ├── social_indicator.json ├── uncertainty.json ├── unit.json └── unit_group.json ├── intro.md ├── osch ├── .editorconfig ├── .gitignore ├── README.org ├── _all.bat ├── _doc.bat ├── _doc.sh ├── _proto.bat ├── args.go ├── context.go ├── go.mod ├── go.sum ├── gow.go ├── main.go ├── mdbook.go ├── proto.go ├── python.go ├── rdf.go ├── schema_check.go ├── tonel.go ├── ts.go ├── util.go ├── writer.go ├── yaml_model.go └── yaml_prop.go ├── py ├── .gitignore ├── README.md ├── olca_schema │ ├── __init__.py │ ├── schema.py │ ├── units │ │ ├── __init__.py │ │ └── units.csv │ └── zipio.py ├── pyproject.toml └── tests │ ├── example.py │ ├── test_bools.py │ ├── test_enum_conv.py │ ├── test_factory.py │ ├── test_json.py │ ├── test_ref_conv.py │ ├── test_result_types.py │ ├── test_root_fns.py │ ├── test_units.py │ └── test_zipio.py ├── pyrightconfig.json ├── scripts ├── model.py ├── templates │ ├── class_template.html │ ├── enum_template.html │ └── index_template.html ├── yaml_to_html.py └── yaml_to_ttl.py └── yaml ├── Actor.yaml ├── AllocationFactor.yaml ├── AllocationType.yaml ├── AnalysisGroup.yaml ├── AspectValue.yaml ├── ComplianceDeclaration.yaml ├── Currency.yaml ├── DQIndicator.yaml ├── DQScore.yaml ├── DQSystem.yaml ├── Direction.yaml ├── Entity.yaml ├── Epd.yaml ├── EpdModule.yaml ├── EpdProduct.yaml ├── EpdType.yaml ├── Exchange.yaml ├── ExchangeRef.yaml ├── Flow.yaml ├── FlowMap.yaml ├── FlowMapEntry.yaml ├── FlowMapRef.yaml ├── FlowProperty.yaml ├── FlowPropertyFactor.yaml ├── FlowPropertyType.yaml ├── FlowResult.yaml ├── FlowType.yaml ├── ImpactCategory.yaml ├── ImpactFactor.yaml ├── ImpactMethod.yaml ├── ImpactResult.yaml ├── LinkingConfig.yaml ├── Location.yaml ├── ModelType.yaml ├── NwFactor.yaml ├── NwSet.yaml ├── Parameter.yaml ├── ParameterRedef.yaml ├── ParameterRedefSet.yaml ├── ParameterScope.yaml ├── Process.yaml ├── ProcessDocumentation.yaml ├── ProcessLink.yaml ├── ProcessType.yaml ├── ProductSystem.yaml ├── Project.yaml ├── ProjectVariant.yaml ├── ProviderLinking.yaml ├── Ref.yaml ├── RefEntity.yaml ├── Result.yaml ├── Review.yaml ├── ReviewScope.yaml ├── RiskLevel.yaml ├── RootEntity.yaml ├── SocialAspect.yaml ├── SocialIndicator.yaml ├── Source.yaml ├── Uncertainty.yaml ├── UncertaintyType.yaml ├── Unit.yaml ├── UnitGroup.yaml └── results ├── CalculationSetup.yaml ├── CostValue.yaml ├── EnviFlow.yaml ├── EnviFlowValue.yaml ├── GroupValue.yaml ├── ImpactValue.yaml ├── ResultState.yaml ├── SankeyEdge.yaml ├── SankeyGraph.yaml ├── SankeyNode.yaml ├── SankeyRequest.yaml ├── TechFlow.yaml ├── TechFlowValue.yaml └── UpstreamNode.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | generated/ 4 | scripts/__pycache__/ 5 | 6 | build/ 7 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/README.md -------------------------------------------------------------------------------- /context.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/context.jsonld -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CHANGES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/CHANGES.html -------------------------------------------------------------------------------- /docs/FontAwesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/FontAwesome/css/font-awesome.css -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/FontAwesome/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/FontAwesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/FontAwesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/ayu-highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/ayu-highlight.css -------------------------------------------------------------------------------- /docs/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/book.js -------------------------------------------------------------------------------- /docs/classes/Actor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Actor.html -------------------------------------------------------------------------------- /docs/classes/AllocationFactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/AllocationFactor.html -------------------------------------------------------------------------------- /docs/classes/AnalysisGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/AnalysisGroup.html -------------------------------------------------------------------------------- /docs/classes/AspectValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/AspectValue.html -------------------------------------------------------------------------------- /docs/classes/CalculationSetup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/CalculationSetup.html -------------------------------------------------------------------------------- /docs/classes/ComplianceDeclaration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ComplianceDeclaration.html -------------------------------------------------------------------------------- /docs/classes/CostValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/CostValue.html -------------------------------------------------------------------------------- /docs/classes/Currency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Currency.html -------------------------------------------------------------------------------- /docs/classes/DQIndicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/DQIndicator.html -------------------------------------------------------------------------------- /docs/classes/DQScore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/DQScore.html -------------------------------------------------------------------------------- /docs/classes/DQSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/DQSystem.html -------------------------------------------------------------------------------- /docs/classes/Entity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Entity.html -------------------------------------------------------------------------------- /docs/classes/EnviFlow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/EnviFlow.html -------------------------------------------------------------------------------- /docs/classes/EnviFlowValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/EnviFlowValue.html -------------------------------------------------------------------------------- /docs/classes/Epd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Epd.html -------------------------------------------------------------------------------- /docs/classes/EpdModule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/EpdModule.html -------------------------------------------------------------------------------- /docs/classes/EpdProduct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/EpdProduct.html -------------------------------------------------------------------------------- /docs/classes/Exchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Exchange.html -------------------------------------------------------------------------------- /docs/classes/ExchangeRef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ExchangeRef.html -------------------------------------------------------------------------------- /docs/classes/Flow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Flow.html -------------------------------------------------------------------------------- /docs/classes/FlowMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/FlowMap.html -------------------------------------------------------------------------------- /docs/classes/FlowMapEntry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/FlowMapEntry.html -------------------------------------------------------------------------------- /docs/classes/FlowMapRef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/FlowMapRef.html -------------------------------------------------------------------------------- /docs/classes/FlowProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/FlowProperty.html -------------------------------------------------------------------------------- /docs/classes/FlowPropertyFactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/FlowPropertyFactor.html -------------------------------------------------------------------------------- /docs/classes/FlowResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/FlowResult.html -------------------------------------------------------------------------------- /docs/classes/GroupValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/GroupValue.html -------------------------------------------------------------------------------- /docs/classes/ImpactCategory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ImpactCategory.html -------------------------------------------------------------------------------- /docs/classes/ImpactFactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ImpactFactor.html -------------------------------------------------------------------------------- /docs/classes/ImpactMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ImpactMethod.html -------------------------------------------------------------------------------- /docs/classes/ImpactResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ImpactResult.html -------------------------------------------------------------------------------- /docs/classes/ImpactValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ImpactValue.html -------------------------------------------------------------------------------- /docs/classes/LinkingConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/LinkingConfig.html -------------------------------------------------------------------------------- /docs/classes/Location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Location.html -------------------------------------------------------------------------------- /docs/classes/NwFactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/NwFactor.html -------------------------------------------------------------------------------- /docs/classes/NwSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/NwSet.html -------------------------------------------------------------------------------- /docs/classes/Parameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Parameter.html -------------------------------------------------------------------------------- /docs/classes/ParameterRedef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ParameterRedef.html -------------------------------------------------------------------------------- /docs/classes/ParameterRedefSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ParameterRedefSet.html -------------------------------------------------------------------------------- /docs/classes/Process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Process.html -------------------------------------------------------------------------------- /docs/classes/ProcessDocumentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ProcessDocumentation.html -------------------------------------------------------------------------------- /docs/classes/ProcessLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ProcessLink.html -------------------------------------------------------------------------------- /docs/classes/ProductSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ProductSystem.html -------------------------------------------------------------------------------- /docs/classes/Project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Project.html -------------------------------------------------------------------------------- /docs/classes/ProjectVariant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ProjectVariant.html -------------------------------------------------------------------------------- /docs/classes/Ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Ref.html -------------------------------------------------------------------------------- /docs/classes/RefEntity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/RefEntity.html -------------------------------------------------------------------------------- /docs/classes/Result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Result.html -------------------------------------------------------------------------------- /docs/classes/ResultState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ResultState.html -------------------------------------------------------------------------------- /docs/classes/Review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Review.html -------------------------------------------------------------------------------- /docs/classes/ReviewScope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/ReviewScope.html -------------------------------------------------------------------------------- /docs/classes/RootEntity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/RootEntity.html -------------------------------------------------------------------------------- /docs/classes/SankeyEdge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/SankeyEdge.html -------------------------------------------------------------------------------- /docs/classes/SankeyGraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/SankeyGraph.html -------------------------------------------------------------------------------- /docs/classes/SankeyNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/SankeyNode.html -------------------------------------------------------------------------------- /docs/classes/SankeyRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/SankeyRequest.html -------------------------------------------------------------------------------- /docs/classes/SocialAspect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/SocialAspect.html -------------------------------------------------------------------------------- /docs/classes/SocialIndicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/SocialIndicator.html -------------------------------------------------------------------------------- /docs/classes/Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Source.html -------------------------------------------------------------------------------- /docs/classes/TechFlow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/TechFlow.html -------------------------------------------------------------------------------- /docs/classes/TechFlowValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/TechFlowValue.html -------------------------------------------------------------------------------- /docs/classes/Uncertainty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Uncertainty.html -------------------------------------------------------------------------------- /docs/classes/Unit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/Unit.html -------------------------------------------------------------------------------- /docs/classes/UnitGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/UnitGroup.html -------------------------------------------------------------------------------- /docs/classes/UpstreamNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/classes/UpstreamNode.html -------------------------------------------------------------------------------- /docs/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/clipboard.min.js -------------------------------------------------------------------------------- /docs/context.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/context.jsonld -------------------------------------------------------------------------------- /docs/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/css/chrome.css -------------------------------------------------------------------------------- /docs/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/css/general.css -------------------------------------------------------------------------------- /docs/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/css/print.css -------------------------------------------------------------------------------- /docs/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/css/variables.css -------------------------------------------------------------------------------- /docs/elasticlunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/elasticlunr.min.js -------------------------------------------------------------------------------- /docs/enums/AllocationType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/AllocationType.html -------------------------------------------------------------------------------- /docs/enums/Direction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/Direction.html -------------------------------------------------------------------------------- /docs/enums/EpdType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/EpdType.html -------------------------------------------------------------------------------- /docs/enums/FlowPropertyType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/FlowPropertyType.html -------------------------------------------------------------------------------- /docs/enums/FlowType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/FlowType.html -------------------------------------------------------------------------------- /docs/enums/ModelType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/ModelType.html -------------------------------------------------------------------------------- /docs/enums/ParameterScope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/ParameterScope.html -------------------------------------------------------------------------------- /docs/enums/ProcessType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/ProcessType.html -------------------------------------------------------------------------------- /docs/enums/ProviderLinking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/ProviderLinking.html -------------------------------------------------------------------------------- /docs/enums/RiskLevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/RiskLevel.html -------------------------------------------------------------------------------- /docs/enums/UncertaintyType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/enums/UncertaintyType.html -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/fonts/OPEN-SANS-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/OPEN-SANS-LICENSE.txt -------------------------------------------------------------------------------- /docs/fonts/SOURCE-CODE-PRO-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/SOURCE-CODE-PRO-LICENSE.txt -------------------------------------------------------------------------------- /docs/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/fonts.css -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-300.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-300italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-600.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-600italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-700.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-700italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-800.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-800italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-italic.woff2 -------------------------------------------------------------------------------- /docs/fonts/open-sans-v17-all-charsets-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/open-sans-v17-all-charsets-regular.woff2 -------------------------------------------------------------------------------- /docs/fonts/source-code-pro-v11-all-charsets-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/fonts/source-code-pro-v11-all-charsets-500.woff2 -------------------------------------------------------------------------------- /docs/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/highlight.css -------------------------------------------------------------------------------- /docs/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/highlight.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/intro.html -------------------------------------------------------------------------------- /docs/mark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/mark.min.js -------------------------------------------------------------------------------- /docs/print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/print.html -------------------------------------------------------------------------------- /docs/schema.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/schema.ttl -------------------------------------------------------------------------------- /docs/searcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/searcher.js -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs/searchindex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/searchindex.json -------------------------------------------------------------------------------- /docs/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/docs/tomorrow-night.css -------------------------------------------------------------------------------- /examples/dq_indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/dq_indicator.json -------------------------------------------------------------------------------- /examples/dq_score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/dq_score.json -------------------------------------------------------------------------------- /examples/dq_system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/dq_system.json -------------------------------------------------------------------------------- /examples/exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/exchange.json -------------------------------------------------------------------------------- /examples/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/flow.json -------------------------------------------------------------------------------- /examples/flow_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/flow_property.json -------------------------------------------------------------------------------- /examples/flow_property_factor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/flow_property_factor.json -------------------------------------------------------------------------------- /examples/impact_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/impact_category.json -------------------------------------------------------------------------------- /examples/impact_factor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/impact_factor.json -------------------------------------------------------------------------------- /examples/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/location.json -------------------------------------------------------------------------------- /examples/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/process.json -------------------------------------------------------------------------------- /examples/process_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/process_link.json -------------------------------------------------------------------------------- /examples/product_system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/product_system.json -------------------------------------------------------------------------------- /examples/social_indicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/social_indicator.json -------------------------------------------------------------------------------- /examples/uncertainty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/uncertainty.json -------------------------------------------------------------------------------- /examples/unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/unit.json -------------------------------------------------------------------------------- /examples/unit_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/examples/unit_group.json -------------------------------------------------------------------------------- /intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/intro.md -------------------------------------------------------------------------------- /osch/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/.editorconfig -------------------------------------------------------------------------------- /osch/.gitignore: -------------------------------------------------------------------------------- 1 | osch 2 | osch.exe 3 | -------------------------------------------------------------------------------- /osch/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/README.org -------------------------------------------------------------------------------- /osch/_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/_all.bat -------------------------------------------------------------------------------- /osch/_doc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/_doc.bat -------------------------------------------------------------------------------- /osch/_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/_doc.sh -------------------------------------------------------------------------------- /osch/_proto.bat: -------------------------------------------------------------------------------- 1 | go build 2 | osch proto 3 | -------------------------------------------------------------------------------- /osch/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/args.go -------------------------------------------------------------------------------- /osch/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/context.go -------------------------------------------------------------------------------- /osch/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/go.mod -------------------------------------------------------------------------------- /osch/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/go.sum -------------------------------------------------------------------------------- /osch/gow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/gow.go -------------------------------------------------------------------------------- /osch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/main.go -------------------------------------------------------------------------------- /osch/mdbook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/mdbook.go -------------------------------------------------------------------------------- /osch/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/proto.go -------------------------------------------------------------------------------- /osch/python.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/python.go -------------------------------------------------------------------------------- /osch/rdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/rdf.go -------------------------------------------------------------------------------- /osch/schema_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/schema_check.go -------------------------------------------------------------------------------- /osch/tonel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/tonel.go -------------------------------------------------------------------------------- /osch/ts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/ts.go -------------------------------------------------------------------------------- /osch/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/util.go -------------------------------------------------------------------------------- /osch/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/writer.go -------------------------------------------------------------------------------- /osch/yaml_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/yaml_model.go -------------------------------------------------------------------------------- /osch/yaml_prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/osch/yaml_prop.go -------------------------------------------------------------------------------- /py/.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info/ 2 | *.pyc 3 | 4 | build/ 5 | dist/ 6 | -------------------------------------------------------------------------------- /py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/README.md -------------------------------------------------------------------------------- /py/olca_schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/olca_schema/__init__.py -------------------------------------------------------------------------------- /py/olca_schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/olca_schema/schema.py -------------------------------------------------------------------------------- /py/olca_schema/units/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/olca_schema/units/__init__.py -------------------------------------------------------------------------------- /py/olca_schema/units/units.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/olca_schema/units/units.csv -------------------------------------------------------------------------------- /py/olca_schema/zipio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/olca_schema/zipio.py -------------------------------------------------------------------------------- /py/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/pyproject.toml -------------------------------------------------------------------------------- /py/tests/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/example.py -------------------------------------------------------------------------------- /py/tests/test_bools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/test_bools.py -------------------------------------------------------------------------------- /py/tests/test_enum_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/test_enum_conv.py -------------------------------------------------------------------------------- /py/tests/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/test_factory.py -------------------------------------------------------------------------------- /py/tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/test_json.py -------------------------------------------------------------------------------- /py/tests/test_ref_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/test_ref_conv.py -------------------------------------------------------------------------------- /py/tests/test_result_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/test_result_types.py -------------------------------------------------------------------------------- /py/tests/test_root_fns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/test_root_fns.py -------------------------------------------------------------------------------- /py/tests/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/test_units.py -------------------------------------------------------------------------------- /py/tests/test_zipio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/py/tests/test_zipio.py -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /scripts/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/scripts/model.py -------------------------------------------------------------------------------- /scripts/templates/class_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/scripts/templates/class_template.html -------------------------------------------------------------------------------- /scripts/templates/enum_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/scripts/templates/enum_template.html -------------------------------------------------------------------------------- /scripts/templates/index_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/scripts/templates/index_template.html -------------------------------------------------------------------------------- /scripts/yaml_to_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/scripts/yaml_to_html.py -------------------------------------------------------------------------------- /scripts/yaml_to_ttl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/scripts/yaml_to_ttl.py -------------------------------------------------------------------------------- /yaml/Actor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Actor.yaml -------------------------------------------------------------------------------- /yaml/AllocationFactor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/AllocationFactor.yaml -------------------------------------------------------------------------------- /yaml/AllocationType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/AllocationType.yaml -------------------------------------------------------------------------------- /yaml/AnalysisGroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/AnalysisGroup.yaml -------------------------------------------------------------------------------- /yaml/AspectValue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/AspectValue.yaml -------------------------------------------------------------------------------- /yaml/ComplianceDeclaration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ComplianceDeclaration.yaml -------------------------------------------------------------------------------- /yaml/Currency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Currency.yaml -------------------------------------------------------------------------------- /yaml/DQIndicator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/DQIndicator.yaml -------------------------------------------------------------------------------- /yaml/DQScore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/DQScore.yaml -------------------------------------------------------------------------------- /yaml/DQSystem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/DQSystem.yaml -------------------------------------------------------------------------------- /yaml/Direction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Direction.yaml -------------------------------------------------------------------------------- /yaml/Entity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Entity.yaml -------------------------------------------------------------------------------- /yaml/Epd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Epd.yaml -------------------------------------------------------------------------------- /yaml/EpdModule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/EpdModule.yaml -------------------------------------------------------------------------------- /yaml/EpdProduct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/EpdProduct.yaml -------------------------------------------------------------------------------- /yaml/EpdType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/EpdType.yaml -------------------------------------------------------------------------------- /yaml/Exchange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Exchange.yaml -------------------------------------------------------------------------------- /yaml/ExchangeRef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ExchangeRef.yaml -------------------------------------------------------------------------------- /yaml/Flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Flow.yaml -------------------------------------------------------------------------------- /yaml/FlowMap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/FlowMap.yaml -------------------------------------------------------------------------------- /yaml/FlowMapEntry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/FlowMapEntry.yaml -------------------------------------------------------------------------------- /yaml/FlowMapRef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/FlowMapRef.yaml -------------------------------------------------------------------------------- /yaml/FlowProperty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/FlowProperty.yaml -------------------------------------------------------------------------------- /yaml/FlowPropertyFactor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/FlowPropertyFactor.yaml -------------------------------------------------------------------------------- /yaml/FlowPropertyType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/FlowPropertyType.yaml -------------------------------------------------------------------------------- /yaml/FlowResult.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/FlowResult.yaml -------------------------------------------------------------------------------- /yaml/FlowType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/FlowType.yaml -------------------------------------------------------------------------------- /yaml/ImpactCategory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ImpactCategory.yaml -------------------------------------------------------------------------------- /yaml/ImpactFactor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ImpactFactor.yaml -------------------------------------------------------------------------------- /yaml/ImpactMethod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ImpactMethod.yaml -------------------------------------------------------------------------------- /yaml/ImpactResult.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ImpactResult.yaml -------------------------------------------------------------------------------- /yaml/LinkingConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/LinkingConfig.yaml -------------------------------------------------------------------------------- /yaml/Location.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Location.yaml -------------------------------------------------------------------------------- /yaml/ModelType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ModelType.yaml -------------------------------------------------------------------------------- /yaml/NwFactor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/NwFactor.yaml -------------------------------------------------------------------------------- /yaml/NwSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/NwSet.yaml -------------------------------------------------------------------------------- /yaml/Parameter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Parameter.yaml -------------------------------------------------------------------------------- /yaml/ParameterRedef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ParameterRedef.yaml -------------------------------------------------------------------------------- /yaml/ParameterRedefSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ParameterRedefSet.yaml -------------------------------------------------------------------------------- /yaml/ParameterScope.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ParameterScope.yaml -------------------------------------------------------------------------------- /yaml/Process.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Process.yaml -------------------------------------------------------------------------------- /yaml/ProcessDocumentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ProcessDocumentation.yaml -------------------------------------------------------------------------------- /yaml/ProcessLink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ProcessLink.yaml -------------------------------------------------------------------------------- /yaml/ProcessType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ProcessType.yaml -------------------------------------------------------------------------------- /yaml/ProductSystem.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ProductSystem.yaml -------------------------------------------------------------------------------- /yaml/Project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Project.yaml -------------------------------------------------------------------------------- /yaml/ProjectVariant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ProjectVariant.yaml -------------------------------------------------------------------------------- /yaml/ProviderLinking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ProviderLinking.yaml -------------------------------------------------------------------------------- /yaml/Ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Ref.yaml -------------------------------------------------------------------------------- /yaml/RefEntity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/RefEntity.yaml -------------------------------------------------------------------------------- /yaml/Result.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Result.yaml -------------------------------------------------------------------------------- /yaml/Review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Review.yaml -------------------------------------------------------------------------------- /yaml/ReviewScope.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/ReviewScope.yaml -------------------------------------------------------------------------------- /yaml/RiskLevel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/RiskLevel.yaml -------------------------------------------------------------------------------- /yaml/RootEntity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/RootEntity.yaml -------------------------------------------------------------------------------- /yaml/SocialAspect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/SocialAspect.yaml -------------------------------------------------------------------------------- /yaml/SocialIndicator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/SocialIndicator.yaml -------------------------------------------------------------------------------- /yaml/Source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Source.yaml -------------------------------------------------------------------------------- /yaml/Uncertainty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Uncertainty.yaml -------------------------------------------------------------------------------- /yaml/UncertaintyType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/UncertaintyType.yaml -------------------------------------------------------------------------------- /yaml/Unit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/Unit.yaml -------------------------------------------------------------------------------- /yaml/UnitGroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/UnitGroup.yaml -------------------------------------------------------------------------------- /yaml/results/CalculationSetup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/CalculationSetup.yaml -------------------------------------------------------------------------------- /yaml/results/CostValue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/CostValue.yaml -------------------------------------------------------------------------------- /yaml/results/EnviFlow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/EnviFlow.yaml -------------------------------------------------------------------------------- /yaml/results/EnviFlowValue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/EnviFlowValue.yaml -------------------------------------------------------------------------------- /yaml/results/GroupValue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/GroupValue.yaml -------------------------------------------------------------------------------- /yaml/results/ImpactValue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/ImpactValue.yaml -------------------------------------------------------------------------------- /yaml/results/ResultState.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/ResultState.yaml -------------------------------------------------------------------------------- /yaml/results/SankeyEdge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/SankeyEdge.yaml -------------------------------------------------------------------------------- /yaml/results/SankeyGraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/SankeyGraph.yaml -------------------------------------------------------------------------------- /yaml/results/SankeyNode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/SankeyNode.yaml -------------------------------------------------------------------------------- /yaml/results/SankeyRequest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/SankeyRequest.yaml -------------------------------------------------------------------------------- /yaml/results/TechFlow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/TechFlow.yaml -------------------------------------------------------------------------------- /yaml/results/TechFlowValue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/TechFlowValue.yaml -------------------------------------------------------------------------------- /yaml/results/UpstreamNode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenDelta/olca-schema/HEAD/yaml/results/UpstreamNode.yaml --------------------------------------------------------------------------------