Validation Entities =================== For the validation set four related entities are required. :Product: This is the main product. In the database up to NMDv2 this corresponds to the "OuderProduct" or the "TotaalProduct". In the NMDv3 onwards, this corresponds to the EnvironmentalDeclaration/ConstructionProduct. :EnvironmentalProfile: For te NMDv2 this corresponds to the ProfielSet. :Scaling: For NMDv2 the scaling values where included in the ProfielSet. :Dimension: For the NMDv2 the Dimensions where included in the ProfielSet. .. graphviz:: validation-set-entities.dot :caption: Schematic overview validation set :name: schematic-validation-set-entities The fields of these entities are described in the following sections: .. toctree:: :maxdepth: 1 product environmental_profile scaling dimension Example ------- After walking through the section above, the final result for a product should be similar to the following: .. code-block:: json { "registration_number": "nmd_12345", "title": "Testproduct", "categorie": "category-1", "unit": "kWh", "environmental_profiles": [ { "title": "Testprofielset", "amount": 2.5, "scaling": { "formula": "v3_linear", "parameters": [1.1, 0, 0.1], "dimensions": [ { "minimum": 0.5, "maximum": 2.0, "inspected_value": 1.0, } ], "scaled_mki_set": [ { "input_values": [0.5], "mki": 0.5, "mki_net": 0.4, }, { "input_values": [0.75], "mki": 0.75, "mki_net": 0.6 }, { "input_values": [1.0], "mki": 1.0, "mki_net": 0.85 }, { "input_values": [1.5], "mki": 1.5, "mki_net": 1.4 }, { "input_values": [2.0], "mki": 2.0, "mki_net": 1.8 } ] }, "mki": 1.23, "mki_net": 1.12 } ], "mki": 1.23, "mki_net": 1.12 }