nmdc-schema 11.12.0rc1__py3-none-any.whl → 11.12.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2649,9 +2649,9 @@
2649
2649
  ]
2650
2650
  },
2651
2651
  "misc_param": {
2652
- "description": "Any other measurement performed or parameter collected, that is not listed here",
2652
+ "description": "Structured miscellaneous property assertions for this Biosample. Use when a value cannot cleanly fit an existing, policy-governed slot.",
2653
2653
  "items": {
2654
- "$ref": "#/$defs/TextValue"
2654
+ "$ref": "#/$defs/PropertyAssertion"
2655
2655
  },
2656
2656
  "type": [
2657
2657
  "array",
@@ -8540,7 +8540,7 @@
8540
8540
  },
8541
8541
  "Instrument": {
8542
8542
  "additionalProperties": false,
8543
- "description": "A material entity that is designed to perform a function in a scientific investigation, but is not a reagent.",
8543
+ "description": "A material entity that is designed to perform a function in a scientific investigation, but is not a reagent. This class models the make and model of the instrument, not the specific instance of the instrument.",
8544
8544
  "properties": {
8545
8545
  "alternative_identifiers": {
8546
8546
  "description": "A list of alternative identifiers for the entity.",
@@ -13202,10 +13202,113 @@
13202
13202
  "title": "ProfilePositionEnum",
13203
13203
  "type": "string"
13204
13204
  },
13205
+ "PropertyAssertion": {
13206
+ "additionalProperties": false,
13207
+ "description": "A structured record of data that doesn't fit nicely within the constraints of other NMDC AttributeValues. Uses primitive ranges only.",
13208
+ "properties": {
13209
+ "has_attribute_id": {
13210
+ "description": "CURIE or IRI for the property (MIxS slot, NMDC slot, ENVO/OBI term, etc.).",
13211
+ "type": [
13212
+ "string",
13213
+ "null"
13214
+ ]
13215
+ },
13216
+ "has_attribute_label": {
13217
+ "description": "Human-readable label for the property (e.g., MIxS label, ENVO term label).",
13218
+ "type": [
13219
+ "string",
13220
+ "null"
13221
+ ]
13222
+ },
13223
+ "has_boolean_value": {
13224
+ "description": "Links a quantity value to a boolean",
13225
+ "type": [
13226
+ "boolean",
13227
+ "null"
13228
+ ]
13229
+ },
13230
+ "has_datetime_value": {
13231
+ "description": "Date-time value for the property in ISO-8601 format.",
13232
+ "type": [
13233
+ "string",
13234
+ "null"
13235
+ ]
13236
+ },
13237
+ "has_maximum_numeric_value": {
13238
+ "description": "The maximum value part, expressed as number, of the quantity value when the value covers a range.",
13239
+ "type": [
13240
+ "number",
13241
+ "null"
13242
+ ]
13243
+ },
13244
+ "has_minimum_numeric_value": {
13245
+ "description": "The minimum value part, expressed as number, of the quantity value when the value covers a range.",
13246
+ "type": [
13247
+ "number",
13248
+ "null"
13249
+ ]
13250
+ },
13251
+ "has_numeric_value": {
13252
+ "description": "Links a quantity value to a number",
13253
+ "type": [
13254
+ "number",
13255
+ "null"
13256
+ ]
13257
+ },
13258
+ "has_quantity_kind_id": {
13259
+ "description": "Optional CURIE or IRI for the physical quantity kind (e.g., qudt:QuantityKind).",
13260
+ "type": [
13261
+ "string",
13262
+ "null"
13263
+ ]
13264
+ },
13265
+ "has_raw_value": {
13266
+ "description": "Original contributor string representation (unparsed)",
13267
+ "type": "string"
13268
+ },
13269
+ "has_unit": {
13270
+ "description": "UCUM unit code (required only when numeric value is present)",
13271
+ "type": [
13272
+ "string",
13273
+ "null"
13274
+ ]
13275
+ },
13276
+ "has_value_term_id": {
13277
+ "description": "CURIE or IRI for categorical values (ENVO, PATO, METPO, etc.).",
13278
+ "type": [
13279
+ "string",
13280
+ "null"
13281
+ ]
13282
+ },
13283
+ "type": {
13284
+ "description": "the class_uri of the class that has been instantiated",
13285
+ "enum": [
13286
+ "nmdc:PropertyAssertion"
13287
+ ],
13288
+ "type": "string"
13289
+ }
13290
+ },
13291
+ "required": [
13292
+ "has_raw_value",
13293
+ "type"
13294
+ ],
13295
+ "title": "PropertyAssertion",
13296
+ "type": "object"
13297
+ },
13205
13298
  "Protocol": {
13206
13299
  "additionalProperties": false,
13207
13300
  "description": "",
13208
13301
  "properties": {
13302
+ "analysis_type": {
13303
+ "description": "Select all the data types associated or available for this biosample",
13304
+ "items": {
13305
+ "$ref": "#/$defs/AnalysisTypeEnum"
13306
+ },
13307
+ "type": [
13308
+ "array",
13309
+ "null"
13310
+ ]
13311
+ },
13209
13312
  "description": {
13210
13313
  "description": "a human-readable description of a thing",
13211
13314
  "type": [
@@ -13220,6 +13323,10 @@
13220
13323
  "null"
13221
13324
  ]
13222
13325
  },
13326
+ "protocol_for": {
13327
+ "$ref": "#/$defs/ProtocolForEnum",
13328
+ "description": "The type of planned process that the protocol describes."
13329
+ },
13223
13330
  "type": {
13224
13331
  "description": "the class_uri of the class that has been instantiated",
13225
13332
  "enum": [
@@ -13258,6 +13365,43 @@
13258
13365
  "title": "ProtocolCategoryEnum",
13259
13366
  "type": "string"
13260
13367
  },
13368
+ "ProtocolForEnum": {
13369
+ "description": "The permitted values for describing the type of planned process that a protocol describes.",
13370
+ "enum": [
13371
+ "AnnotatingWorkflow",
13372
+ "ChemicalConversionProcess",
13373
+ "ChromatographicSeparationProcess",
13374
+ "CollectingBiosamplesFromSite",
13375
+ "DataEmitterProcess",
13376
+ "DataGeneration",
13377
+ "DissolvingProcess",
13378
+ "Extraction",
13379
+ "FiltrationProcess",
13380
+ "LibraryPreparation",
13381
+ "MagsAnalysis",
13382
+ "MassSpectrometry",
13383
+ "MaterialProcessing",
13384
+ "MetabolomicsAnalysis",
13385
+ "MetagenomeAnnotation",
13386
+ "MetagenomeAssembly",
13387
+ "MetaproteomicsAnalysis",
13388
+ "MetatranscriptomeAnnotation",
13389
+ "MetatranscriptomeAssembly",
13390
+ "MetatranscriptomeExpressionAnalysis",
13391
+ "MixingProcess",
13392
+ "NomAnalysis",
13393
+ "NucleotideSequencing",
13394
+ "PlannedProcess",
13395
+ "Pooling",
13396
+ "ReadBasedTaxonomyAnalysis",
13397
+ "ReadQcAnalysis",
13398
+ "StorageProcess",
13399
+ "SubSamplingProcess",
13400
+ "WorkflowExecution"
13401
+ ],
13402
+ "title": "ProtocolForEnum",
13403
+ "type": "string"
13404
+ },
13261
13405
  "QuadPosEnum": {
13262
13406
  "description": "",
13263
13407
  "enum": [
@@ -15108,6 +15252,7 @@
15108
15252
  "g/m3",
15109
15253
  "m2",
15110
15254
  "atm",
15255
+ "V",
15111
15256
  "mV",
15112
15257
  "L",
15113
15258
  "um",
@@ -15664,5 +15809,5 @@
15664
15809
  },
15665
15810
  "title": "NMDC",
15666
15811
  "type": "object",
15667
- "version": "11.12.0rc1"
15812
+ "version": "11.12.1"
15668
15813
  }