From d0bdbaa1ed76dfbf3211bb43eee48c49cc4fd448 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Mon, 22 Jun 2026 13:12:27 +0400 Subject: feat: implement FParkan architecture foundation Add the modular fparkan workspace, domain crates, adapters, apps, xtask policy/CI, acceptance evidence, and licensed corpus gates for the macOS-focused roadmap foundation. --- fixtures/schemas/corpus-manifest.schema.json | 19 +++++++++++++++++++ fixtures/schemas/report.schema.json | 10 ++++++++++ 2 files changed, 29 insertions(+) create mode 100644 fixtures/schemas/corpus-manifest.schema.json create mode 100644 fixtures/schemas/report.schema.json (limited to 'fixtures/schemas') diff --git a/fixtures/schemas/corpus-manifest.schema.json b/fixtures/schemas/corpus-manifest.schema.json new file mode 100644 index 0000000..4542ec0 --- /dev/null +++ b/fixtures/schemas/corpus-manifest.schema.json @@ -0,0 +1,19 @@ +{ + "schema": 1, + "required": ["schema", "corpus"], + "properties": { + "schema": { "const": 1 }, + "corpus": { + "type": "array", + "items": { + "required": ["id", "kind", "root", "expected_profile"], + "properties": { + "id": { "type": "string" }, + "kind": { "enum": ["demo", "part1", "part2"] }, + "root": { "type": "string" }, + "expected_profile": { "type": "string" } + } + } + } + } +} diff --git a/fixtures/schemas/report.schema.json b/fixtures/schemas/report.schema.json new file mode 100644 index 0000000..70ab4df --- /dev/null +++ b/fixtures/schemas/report.schema.json @@ -0,0 +1,10 @@ +{ + "schema": 1, + "required": ["schema", "kind", "files", "metrics"], + "properties": { + "schema": { "const": 1 }, + "kind": { "type": "string" }, + "files": { "type": "integer" }, + "metrics": { "type": "object" } + } +} -- cgit v1.2.3