Apply updates to electrical properties
- Rename property FormationFactor to FormationResistivityFactor
- Include data related to Formation Resistivity Factor, should be achieved via merge of existing formation resistivity content schema
- Remove existing formation resistivity index content schema and endpoint from RAFS DDMS
- Manifest Number of electrodes refernce list: https://gitlab.opengroup.org/osdu/subcommittees/data-def/projects/RAFSDDMSDEV/docs/-/blob/main/Design%20Documents/ReferenceValues/Manifests/reference-data/OPEN/NumberOfElectrodes.1.0.0.json
Expected Electrical Properties Schema
```json"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"SamplesAnalysisID": {
"type": "string",
"pattern": "^[\\w\\-\\.]+:work-product-component\\-\\-SamplesAnalysis:[\\w\\-\\.\\:\\%]+:[0-9]*$"
},
"SamplesID": {
"type": "string",
"pattern": "^[\\w-.]+:master-data-Samples:[\\w\\-\\.\\:\\%]+:[0-9]*$"
},
"BrineConcentration": {
"type": "object",
"properties": {
"Value": {
"type": "number"
},
"UnitOfMeasure": {
"type": "string",
"pattern": "^[\\w-.]:reference-data--UnitOfMeasure:[\\w\\-\\.\\:\\%]+:[0-9]*$"
}
}
},
"FormationResistivityFactor": {
"type": "number"
},
"AdjustedFormationResistivityFactor": {
"type": "number"
},
"CementationExponent": {
"type": "number"
},
"AdjustedCementationExponent": {
"type": "number"
},
"SaturationExponent": {
"type": "number"
},
"AdjustedSaturationExponent": {
"type": "number"
},
"PorosityExponent": {
"type": "number"
},
"AdjustedPorosityExponent": {
"type": "number"
},
"BrineSaturation": {
"type": "object",
"properties": {
"Value": {
"type": "number"
},
"UnitOfMeasure": {
"type": "string",
"pattern": "^[\\w-.]:reference-data--UnitOfMeasure:[\\w\\-\\.\\:\\%]+:[0-9]*$"
}
}
},
"FormationFactorAtNetOverburdenPressure": {
"type": "number"
},
"AdjustedFormationFactorAtNetOverburnedPressure": {
"type": "number"
},
"BrineSalinity": {
"type": "object",
"properties": {
"Value": {
"type": "number"
},
"UnitOfMeasure": {
"type": "string",
"pattern": "^[\\w-.]:reference-data--UnitOfMeasure:[\\w\\-\\.\\:\\%]+:[0-9]*$"
}
}
},
"NumberOfElectrodes": {
"type": "string",
"pattern": "^[\\w-.]:reference-data--NumberOfElectrodes:[\\w\\-\\.\\:\\%]+:[0-9]*$"
},
"QuantityOfOilInTheVolume": {
"type": "object",
"properties": {
"Value": {
"type": "number"
},
"UnitOfMeasure": {
"type": "string",
"pattern": "^[\\w-.]:reference-data--UnitOfMeasure:[\\w\\-\\.\\:\\%]+:[0-9]*$"
}
}
}
},
"required": [
"SamplesAnalysisID",
"SamplesID"
]
}
Edited by Mykhailo Buriak