changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "breakdown": {
+ "description": "How many of each item fit.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "count": {
+ "type": "number"
+ },
+ "label": {
+ "type": "string"
+ },
+ "unit": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "label",
+ "count",
+ "unit"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "content": {
+ "type": "string"
+ },
+ "storage_gb": {
+ "type": "number"
+ },
+ "usable_gb": {
+ "description": "Usable GB after OS/filesystem overhead.",
+ "type": "number"
+ }
+ },
+ "required": [
+ "storage_gb",
+ "usable_gb",
+ "content",
+ "breakdown"
+ ],
+ "type": "object"
+}