@retropak/schema 1.0.0-draft6 → 1.0.0-draft8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@retropak/schema",
3
- "version": "1.0.0-draft6",
3
+ "version": "1.0.0-draft8",
4
4
  "description": "Metadata specification for Retropak software containers",
5
5
  "type": "module",
6
6
  "main": "./schemas/v1/retropak.schema.json",
@@ -658,6 +658,11 @@
658
658
  "pattern": "^[a-fA-F0-9]{40}$",
659
659
  "description": "SHA-1 checksum of the media file for verification."
660
660
  },
661
+ "sha256": {
662
+ "type": "string",
663
+ "pattern": "^[a-fA-F0-9]{64}$",
664
+ "description": "SHA-256 checksum of the media file for verification."
665
+ },
661
666
  "crc32": {
662
667
  "type": "string",
663
668
  "pattern": "^[a-fA-F0-9]{8}$",
@@ -685,6 +690,10 @@
685
690
  "notes": {
686
691
  "type": "string",
687
692
  "description": "Additional notes about this specific media file (e.g. distribution method, requirements, known issues)."
693
+ },
694
+ "labelImage": {
695
+ "$ref": "#/$defs/image",
696
+ "description": "Image of the media label (e.g. disc label, cartridge label, cassette label)."
688
697
  }
689
698
  }
690
699
  },