Skip to content
Novus Examples
json371 B

Convert v2 Archive Member Manifest

JSON ground-truth manifest for the canonical compressed-TAR twins, publishing each safe path, byte count, and full SHA-256 digest. Stable P8 artifact p8-convert-archive-member-manifest.

Preview — first 16 linesjson
{
  "archiveFamily": "p8-convert-archive-family",
  "members": [
    {
      "bytes": 24,
      "path": "project/brief.md",
      "sha256": "12d51e7b315f99dcb7e5d1144e32ac04272f67f0a36026edb9ea4fad605c34da"
    },
    {
      "bytes": 26,
      "path": "project/config.json",
      "sha256": "b195dbf3188cce0e1d917d54149749aab8377754834433656c7d32132de6415e"
    }
  ]
}

Specifications

Members
2
Hash Algorithm
sha256
Delivery Mode
download-only
Provider
converter-v2
Provenance
Synthetic deterministic P8 fixture generated by generation/p8_content.py; seed namespace 2026082300
Fixture Reserve
convert-v2

Testing contract

Reference control
Scenario
Extract a canonical archive and compare every member with this manifest.
Expected result
Exactly two members are present and both byte counts and full SHA-256 digests match; no unlisted path is accepted.

What is a .json file?

JSON (JavaScript Object Notation) is a lightweight, text-based data-interchange format representing objects, arrays, strings, numbers, booleans, and null. It is language-independent, human-readable, and the dominant format for web APIs and configuration. It requires a single well-formed root value.

How to use this file

Use an example JSON file to test parsers and serializers, schema validation, Unicode and number-precision handling, and API request or response processing.

How to use this file for testing

“Convert v2 Archive Member Manifest” is a deterministic Novus Examples fixture for Conversion testing, Schema validation. The same content exported across many formats and linked as a group, so you can convert one and diff against the expected twin.

Documented properties for this file: JSON · 371 bytes. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Archive fixtures are documented down to their member list (shown on this page) and are deliberately safe — no zip bombs, executables, or hidden payloads. Test extractors against nested, unicode, empty, and encrypted variants.

Code examples

import json

with open("member-manifest.json") as f:
    data = json.load(f)
print(type(data), len(data))

Generated by generation/p8_content.py. Free for any use, no attribution required — license.