Skip to content

Commit

Permalink
Fix for uncertainty
Browse files Browse the repository at this point in the history
  • Loading branch information
IKCAP committed Feb 23, 2023
1 parent d5d2f7a commit c881028
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions pylipd/globals/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,32 +331,37 @@
'instrument': {
'name': 'measuredBy',
'type': 'Individual',
'category': 'Instrument'
'category': 'Instrument',
},
'calibration': {
'name': 'calibratedVia',
'schema': 'CalibrationModel',
'type': 'Individual',
'multiple': True
},
'interpretation': {
'name': 'interpretedAs',
'schema': 'Interpretation',
'category': 'Interpretation',
'type': 'Individual',
'multiple': True
},
'hasResolution': {
'alternates': ['resolution'],
'name': 'hasResolution',
'category': 'Resolution',
'schema': 'Resolution',
'type': 'Individual',
'alternates': ['hasResolution']
},
'inferredFrom': {
'schema': 'Variable',
'category': 'MeasuredVariable'
'category': 'MeasuredVariable',
'type': 'Individual'
},
'hasUncertainty': {
'schema': 'Uncertainty',
'type': 'Individual',
'multiple': True
},
'hasValues': {
Expand Down Expand Up @@ -511,7 +516,12 @@
'@toJson': ['_unwrap_uncertainty'],
'reference': {
'name': 'relevantQuote'
}
},
'hasUncertainty': {
'schema': 'Uncertainty',
'type': 'Individual',
'multiple': True
},
},
'Person': { '@id': ['{name}'] },
'Uncertainty': {
Expand Down

0 comments on commit c881028

Please sign in to comment.