{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.imatest.com/schema/25-1/common-memory",
  "title": "Memory",
  "description": "Information about the memory usage.",
  "type": "object",
  "properties": {
    "matlab_used_MB": {
      "description": "The memory used by MATLAB in MB.",
      "type": "number"
    },
    "physical_free_MB": {
      "description": "The free physical memory in MB.",
      "type": "number"
    },
    "physical_total_MB": {
      "description": "The total physical memory in MB.",
      "type": "number"
    }
  },
  "required": [
    "matlab_used_MB",
    "physical_free_MB",
    "physical_total_MB"
  ],
  "unevaluatedProperties": false
}