M1, M2 and M3 complete * M1, M2 and M3 complete * review changes * docs * docs
61 KiB
Mutable Metadata & Per-Client Custom Schemas - Combined Design Plan
Status: DRAFT - Combined Claude + Codex + Jay's recommendations (2026-03-24, rev 2026-03-31 post-review)
Lineage: This plan was informed by two original detailed specs done adversarily. One by claude Opus 4.6 and one by Codex 5.4 (xhigh) based on human written requirements. Each was human reviewed for common items and conflicting items. Where there were conflicts the human was the final decision maker. This resulting hybrid document represents an improved design over each of the source documents.
1. Problem Statement
Today, all field extraction data is stored in a rigid 3-table schema with ~130 statically-defined columns (19 single-value fields + 112 array fields). Every client shares the same field definitions. This means:
- Clients cannot define domain-specific fields (e.g., "aircraft engineering" vs. "auto engineering" document classes)
- Adding new fields requires database migrations and code changes across the full stack
- The system cannot accommodate varying data shapes per document class within a single client
Goal: Allow each client to curate their own collections of document schemas, where each schema defines the custom fields (with types and constraints) that a document's metadata must conform to.
2. Current Architecture Summary
2.1 Existing Tables
documentFieldExtractions -- 19 single-value fields (1:1 per document)
documentFieldExtractionVersions -- Version tracking with row-level locking
documentFieldExtractionArrayFields -- 112 array fields (1:N per extraction)
2.2 Existing API Endpoints
| Method | Path | Description |
|---|---|---|
| POST | /field-extractions |
Create versioned extraction (singleFields + arrayFields) |
| GET | /field-extractions |
Get current (latest version) extraction for a document |
| GET | /field-extractions/version |
Get extraction by specific version |
| GET | /field-extractions/history |
List all versions for a document |
2.3 Key Relationships
documents.id->documentFieldExtractions.documentId(1:N via versions)documentFieldExtractions.id->documentFieldExtractionArrayFields.fieldExtractionId(1:N)documentFieldExtractions.id->documentFieldExtractionVersions.fieldExtractionId(1:N)- Documents belong to clients via
documents.clientId - No per-client customization of field definitions exists today
3. Design Principles
- Additive, not destructive - The existing static field extraction system continues to work unchanged for documents that do not opt into custom schemas. Custom schemas are an additive capability.
- Mutual exclusivity - A document uses EITHER the legacy static field extraction system OR the custom schema system, never both. This prevents ambiguity about which system is authoritative for a document's metadata. Once a document is assigned a custom schema, the legacy field extraction endpoints reject writes for that document, and vice versa.
- Schema-as-data - Schemas are stored as JSON Schema documents in the database, not as DDL. No migrations needed when clients add/modify schemas.
- Immutable schema versions - When a schema is updated, a new version (with new ID) is created. Old versions remain for historical reference. No backward compatibility checking is required between versions since each version gets a distinct ID.
- Schema binding is permanent - Once custom metadata is written to a document with a schema ID, that schema ID cannot be changed on the document. This guarantees data integrity.
- JSON blob storage - Custom metadata is stored as JSONB in PostgreSQL, validated against the schema at write time. This avoids dynamic column creation.
- Client isolation - Schemas are scoped to clients. A client cannot reference another client's schema.
- Size limits - Schema definitions are capped at 64KB (
MaxSchemaDefinitionBytes = 65536). Metadata payloads are capped at 1MB (MaxMetadataPayloadBytes = 1048576). Bulk folder assignments are capped at 10,000 documents (MaxBulkAssignDocuments = 10000). All are tunable constants. - No JSONB search/filter - The system does NOT support querying or filtering documents by custom metadata values. Custom metadata is opaque storage validated on write. If search is needed in the future, it would require GIN indexes on the JSONB columns and a dedicated query API (separate phase).
- Admin-scoped schema management - Schema CRUD operations and folder-level schema assignment live under
/adminand require the existinguser_adminrole. Custom metadata read/write on documents is available to regularclient_userusers. - Defense-in-depth - Critical invariants (schema lock after first extraction, client/schema ownership match, schema_id consistency across metadata versions) are enforced at BOTH the application layer AND the database layer via triggers. The app-layer checks provide better error messages; the DB triggers are safety nets against bypass.
- No migration from static fields - There is no migration path from the existing static field extraction data into the custom schema system. They are mutually exclusive per document. Out of scope.
4. Database Schema Design
4.1 New Type: schema_status_type
A three-state enum that distinguishes between different reasons a schema is no longer assignable:
CREATE TYPE schema_status_type AS ENUM ('active', 'superseded', 'retired');
active: The schema version is current and can be assigned to new documents.superseded: A newer version of this schema (samename) was created. The schema is still valid for documents already using it, but should not be assigned to new documents. Set automatically when a new version is created viaPUT.retired: An admin explicitly disabled this schema version. Functionally similar tosupersededbut indicates a deliberate administrative action rather than an automatic version succession.
4.2 New Table: client_metadata_schemas
Stores client-defined JSON Schema documents. Each row is an immutable version of a schema definition.
CREATE TABLE client_metadata_schemas (
id uuid PRIMARY KEY DEFAULT uuid_generate_v7(),
client_id varchar(255) NOT NULL REFERENCES clients(clientId),
name varchar(255) NOT NULL,
description text,
schema_def jsonb NOT NULL, -- The JSON Schema document (max 64KB enforced at app layer)
version int NOT NULL DEFAULT 1, -- Auto-incremented per (client_id, name)
status schema_status_type NOT NULL DEFAULT 'active',
created_at timestamptz NOT NULL DEFAULT NOW(),
created_by varchar(255) NOT NULL,
CONSTRAINT uq_client_schema_name_version UNIQUE (client_id, name, version),
CONSTRAINT chk_schema_def_size CHECK (pg_column_size(schema_def) <= 70000) -- ~68KB to account for JSONB overhead; app layer enforces 64KB on raw JSON
);
CREATE INDEX idx_cms_client_id ON client_metadata_schemas(client_id);
CREATE INDEX idx_cms_client_name ON client_metadata_schemas(client_id, name);
CREATE INDEX idx_cms_client_status ON client_metadata_schemas(client_id, status);
Note
: The 64KB limit is enforced at the application layer (Go constant
MaxSchemaDefinitionBytes = 65536) by checkinglen(rawJSON). The database CHECK constraint usespg_column_size()which measures on-disk JSONB storage (includes header overhead), so it is set slightly higher (~68KB) as a safety net. The app-layer check provides the user-facing 64KB limit and a better error message.
Design decisions:
name+versionscoped to client: Allows human-friendly naming ("aircraft-engineering-v3") with automatic versioning. When a schema is "updated," a new row is inserted withversion = max(version) + 1for that(client_id, name).schema_defis JSONB: Stores the full JSON Schema document. PostgreSQL can index into it if needed later.statusenum: Three-state lifecycle.supersededis set automatically when a newer version is created.retiredis set explicitly by admin action (soft-delete). Both states prevent assignment to new documents but allow existing documents to continue using the schema for validation. This is richer than a booleanis_activebecause it distinguishes "replaced by v2" from "admin decided this is bad."idis the schema version ID: This is what documents reference. Each update creates a newid. The(client_id, name, version)tuple provides the human-readable lineage.
4.3 New Table: document_custom_metadata
Stores the actual custom metadata for documents, validated against the referenced schema.
CREATE TABLE document_custom_metadata (
id uuid PRIMARY KEY DEFAULT uuid_generate_v7(),
document_id uuid NOT NULL REFERENCES documents(id),
schema_id uuid NOT NULL REFERENCES client_metadata_schemas(id),
metadata jsonb NOT NULL, -- The actual custom field values
version int NOT NULL DEFAULT 1, -- Versioned like field extractions
created_at timestamptz NOT NULL DEFAULT NOW(),
created_by varchar(255) NOT NULL,
CONSTRAINT uq_doc_custom_metadata_version UNIQUE (document_id, version)
);
CREATE INDEX idx_dcm_document_id ON document_custom_metadata(document_id);
CREATE INDEX idx_dcm_schema_id ON document_custom_metadata(schema_id);
CREATE INDEX idx_dcm_doc_version_desc ON document_custom_metadata(document_id, version DESC); -- Enables efficient DISTINCT ON in current_document_custom_metadata view
Design decisions:
- Single table with version column: We use one table (rather than separate extraction + version tables like the legacy pattern) because the simpler design is sufficient. The legacy two-table pattern exists to support row-level locking on the version counter independently of the data row. For custom metadata, the
UNIQUE (document_id, version)constraint plusSELECT ... FOR UPDATEon the max-version row provides the same concurrency safety with less complexity. If this proves insufficient under load, splitting into two tables is a backward-compatible change. schema_idis immutable per document: Enforced at both the application layer and the database trigger (see Section 4.7). All versions of custom metadata for a document must reference the same schema ID.metadatais JSONB: Validated againstclient_metadata_schemas.schema_defat write time. Stored as a single blob for simplicity and query flexibility.
4.4 Alteration: documents Table
Add an optional schema binding column:
ALTER TABLE documents
ADD COLUMN custom_schema_id uuid NULL REFERENCES client_metadata_schemas(id);
CREATE INDEX idx_documents_custom_schema_id ON documents(custom_schema_id);
Behavior:
NULL= document uses the legacy static field extraction system (default, backward-compatible)NOT NULL= document is opted into the custom schema system; legacy field extraction endpoints will reject writes for this document- Once set AND custom metadata has been written, this field becomes immutable (enforced at app layer AND DB trigger)
- Can be set before metadata is written (pre-binding) and changed freely until first metadata write
- Must reference a schema owned by the same client as the document (cross-client reference check enforced at app layer AND DB trigger)
- Cannot be set on a document that already has legacy field extractions (returns 409 Conflict)
4.5 New View: current_document_custom_metadata
CREATE VIEW current_document_custom_metadata AS
SELECT DISTINCT ON (document_id)
id,
document_id,
schema_id,
metadata,
version,
created_at,
created_by
FROM document_custom_metadata
ORDER BY document_id, version DESC;
4.6 Entity Relationship Diagram
clients
|
|-- 1:N --> client_metadata_schemas (per-client schema definitions)
| |
| |-- referenced by --> documents.custom_schema_id
| |-- referenced by --> document_custom_metadata.schema_id
|
|-- 1:N --> documents
|
|-- 1:N --> document_custom_metadata (versioned JSONB blobs)
| [MUTUALLY EXCLUSIVE with legacy extractions]
|-- 1:N --> documentFieldExtractions (existing static fields)
[MUTUALLY EXCLUSIVE with custom metadata]
4.7 Database Triggers (Defense-in-Depth)
Three triggers enforce critical invariants at the database level, providing a safety net regardless of which code path modifies the data.
Trigger 1: Prevent schema reassignment after first extraction
Fires on documents BEFORE UPDATE of custom_schema_id. Prevents changes if the document has any extraction data (legacy or custom).
CREATE OR REPLACE FUNCTION trg_prevent_schema_reassignment()
RETURNS TRIGGER AS $$
BEGIN
-- Only fire if custom_schema_id is actually changing
IF OLD.custom_schema_id IS DISTINCT FROM NEW.custom_schema_id THEN
-- Check for existing custom metadata
IF EXISTS (
SELECT 1 FROM document_custom_metadata
WHERE document_id = NEW.id
LIMIT 1
) THEN
RAISE EXCEPTION 'Cannot change custom_schema_id on document % because custom metadata already exists', NEW.id;
END IF;
-- Check for existing legacy field extractions
IF EXISTS (
SELECT 1 FROM "documentFieldExtractionVersions"
WHERE "documentId" = NEW.id
LIMIT 1
) THEN
RAISE EXCEPTION 'Cannot change custom_schema_id on document % because legacy field extractions already exist', NEW.id;
END IF;
END IF;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER trg_documents_prevent_schema_reassignment
BEFORE UPDATE OF custom_schema_id ON documents
FOR EACH ROW
EXECUTE FUNCTION trg_prevent_schema_reassignment();
Trigger 2: Validate client/schema ownership match
Fires on documents BEFORE INSERT OR UPDATE of custom_schema_id. Ensures the referenced schema belongs to the same client as the document.
CREATE OR REPLACE FUNCTION trg_validate_schema_client_match()
RETURNS TRIGGER AS $$
DECLARE
schema_client_id varchar(255);
BEGIN
-- Only check when custom_schema_id is non-null
IF NEW.custom_schema_id IS NOT NULL THEN
SELECT client_id INTO schema_client_id
FROM client_metadata_schemas
WHERE id = NEW.custom_schema_id;
IF schema_client_id IS NULL THEN
RAISE EXCEPTION 'Schema % does not exist', NEW.custom_schema_id;
END IF;
IF schema_client_id != NEW."clientId" THEN
RAISE EXCEPTION 'Schema % belongs to client %, but document % belongs to client %',
NEW.custom_schema_id, schema_client_id, NEW.id, NEW."clientId";
END IF;
END IF;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER trg_documents_validate_schema_client
BEFORE INSERT OR UPDATE OF custom_schema_id ON documents
FOR EACH ROW
EXECUTE FUNCTION trg_validate_schema_client_match();
Trigger 3: Enforce consistent schema_id across metadata versions
Fires on document_custom_metadata BEFORE INSERT. Ensures all metadata versions for a document reference the same schema ID. This is the database-level safety net for Invariant 7.
CREATE OR REPLACE FUNCTION trg_enforce_consistent_schema_id()
RETURNS TRIGGER AS $$
DECLARE
existing_schema_id uuid;
BEGIN
SELECT schema_id INTO existing_schema_id
FROM document_custom_metadata
WHERE document_id = NEW.document_id
LIMIT 1;
IF existing_schema_id IS NOT NULL AND existing_schema_id != NEW.schema_id THEN
RAISE EXCEPTION 'All custom metadata for document % must use schema %, but got %',
NEW.document_id, existing_schema_id, NEW.schema_id;
END IF;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
CREATE TRIGGER trg_dcm_enforce_consistent_schema
BEFORE INSERT ON document_custom_metadata
FOR EACH ROW
EXECUTE FUNCTION trg_enforce_consistent_schema_id();
Note
: These triggers duplicate checks that also exist in the application service layer. This is intentional. The app-layer checks return structured HTTP error responses (400/409). The triggers are a last-resort safety net that fires even if a future code path, migration script, or admin query bypasses the service layer.
5. API Design
5.1 Schema Management Endpoints (Admin)
All under the existing AdminService tag. These endpoints require the existing user_admin role (see Section 5.3 for auth details). Endpoints are prefixed with /admin/custom-schemas.
POST /admin/custom-schemas
Create a new schema for a client.
Request:
{
"clientId": "acme-corp",
"name": "aircraft-engineering",
"description": "Custom fields for aircraft engineering documents",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"aircraft_model": {
"type": "string",
"maxLength": 100
},
"certification_date": {
"type": "string",
"format": "date"
},
"max_altitude_ft": {
"type": "number",
"minimum": 0,
"maximum": 100000
},
"engine_count": {
"type": "integer",
"minimum": 1,
"maximum": 12
}
},
"required": ["aircraft_model"],
"additionalProperties": false
},
"createdBy": "admin@acme.com"
}
Response (201):
{
"id": "019577a3-...",
"clientId": "acme-corp",
"name": "aircraft-engineering",
"description": "Custom fields for aircraft engineering documents",
"schema": { ... },
"version": 1,
"status": "active",
"createdAt": "2026-03-23T12:00:00Z",
"createdBy": "admin@acme.com"
}
Validation:
- The
schemafield MUST be a valid JSON Schema document (validated server-side using a JSON Schema meta-validator) - The
schemafield must be <= 64KB in size (returns 400 with message referencing the limit) - Root
typemust be"object" - Root
additionalPropertiesMUST be explicitly present (eithertrueorfalse). If omitted, the server returns 400 with a message explaining thatadditionalPropertiesmust be explicitly declared. This prevents the common mistake of omitting it and inadvertently accepting arbitrary extra fields. namemust be unique within the client (for active schemas at the same version)
PUT /admin/custom-schemas/{schemaId}
Update an existing schema. Creates a new version with a new ID. The old version remains intact and its status is set to superseded. No backward compatibility check is performed -- the new version is treated as an independent schema that happens to share a name lineage.
Request:
{
"description": "Updated aircraft engineering fields (added wingspan)",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"aircraft_model": { "type": "string", "maxLength": 100 },
"certification_date": { "type": "string", "format": "date" },
"max_altitude_ft": { "type": "number", "minimum": 0, "maximum": 100000 },
"engine_count": { "type": "integer", "minimum": 1, "maximum": 12 },
"wingspan_meters": { "type": "number", "minimum": 0 }
},
"required": ["aircraft_model"],
"additionalProperties": false
},
"createdBy": "admin@acme.com"
}
Response (201):
{
"id": "019577b4-...",
"clientId": "acme-corp",
"name": "aircraft-engineering",
"version": 2,
"status": "active",
"previousVersionId": "019577a3-...",
...
}
Behavior:
- The
schemaIdin the path identifies the schema to "update" (really: create a new version of) - The new version inherits the
namefrom the previous version - The old version's status is set to
superseded(it remains valid for existing documents but should not be assigned to new ones) - Returns the newly created schema version
- The
schemafield in the request body follows the same validation rules asPOST(including theadditionalPropertiesrequirement) - Concurrency: Uses
SELECT ... FOR UPDATEonclient_metadata_schemas WHERE client_id = $1 AND name = $2to lock existing versions before readingmax(version). This prevents two concurrent PUTs from computing the same next version number. The unique constraintuq_client_schema_name_versionis the final safety net.
GET /admin/custom-schemas
List all schemas for a client.
Query Parameters:
clientId(required): The client whose schemas to listname(optional): Filter by schema namestatus(optional): Filter by status (active,superseded,retired). Default: return onlyactive.includeAllVersions(optional, default: false): Return all versions or just latest per namelimit(optional, default: 50, max: 200): Maximum number of results to returnoffset(optional, default: 0): Number of results to skip for pagination
Response (200):
{
"schemas": [
{
"id": "019577b4-...",
"clientId": "acme-corp",
"name": "aircraft-engineering",
"description": "...",
"version": 2,
"status": "active",
"documentCount": 45,
"canDelete": false,
"createdAt": "...",
"createdBy": "..."
},
{
"id": "019577c1-...",
"clientId": "acme-corp",
"name": "auto-engineering",
"description": "...",
"version": 1,
"status": "active",
"documentCount": 0,
"canDelete": true,
"createdAt": "...",
"createdBy": "..."
}
]
}
Notes:
documentCountshows how many documents reference each schema version. Computed via a subquery or join.canDeleteistruewhendocumentCount == 0AND nodocument_custom_metadatarows reference the schema. This saves the client a round-trip to check before attempting delete.
GET /admin/custom-schemas/{schemaId}
Get a specific schema by ID (returns full schema definition).
Response (200):
{
"id": "019577a3-...",
"clientId": "acme-corp",
"name": "aircraft-engineering",
"description": "...",
"schema": { ... },
"version": 1,
"status": "superseded",
"documentCount": 45,
"canDelete": false,
"createdAt": "...",
"createdBy": "..."
}
DELETE /admin/custom-schemas/{schemaId}
Retire a schema. Only succeeds if no documents reference it.
Response (204): No content on success.
Response (409 Conflict):
{
"error": "Schema is in use by 45 documents and cannot be deleted"
}
Behavior:
- Sets
status = 'retired' - Fails with 409 if any documents reference this schema ID (via
documents.custom_schema_idordocument_custom_metadata.schema_id) - Retired schemas still serve validation for existing documents but cannot be assigned to new documents
5.2 Document Schema Assignment Endpoints (Admin)
PATCH /admin/document/{id}/schema
Assign or change a custom schema on a single document. This endpoint is under /admin so that the Permit.io middleware maps it to resource admin (first path segment), ensuring only user_admin and super_admin roles can assign schemas. A non-admin path (/document/{id}/schema) would map to resource document, which client_user has access to -- violating the authorization model.
Request:
{
"customSchemaId": "019577a3-..."
}
Response (200):
{
"documentId": "...",
"customSchemaId": "019577a3-...",
"schemaName": "aircraft-engineering",
"schemaVersion": 1
}
Validation rules:
- Schema must belong to the same client as the document (enforced at app layer + DB trigger)
- Schema must have status
active - If the document already has custom metadata written, the schema cannot be changed (returns 409, also enforced by DB trigger)
- If the document already has legacy field extractions, the schema cannot be assigned (returns 409 -- mutual exclusivity)
- Setting
customSchemaIdtonullremoves the binding (only if no custom metadata exists)
POST /admin/folders/{folderId}/assign-schema (Bulk Folder Assignment)
Assign a custom schema to ALL documents in a folder and all its subfolders (recursive).
Request:
{
"customSchemaId": "019577a3-...",
"createdBy": "admin@acme.com"
}
Response (200):
{
"folderId": "...",
"customSchemaId": "019577a3-...",
"schemaName": "aircraft-engineering",
"documentsUpdated": 87,
"documentsSkipped": 5,
"skippedReasons": [
{"documentId": "...", "reason": "Document already has custom metadata with a different schema"},
{"documentId": "...", "reason": "Document already has custom metadata with a different schema"},
{"documentId": "...", "reason": "Document already assigned to same schema (no-op)"},
{"documentId": "...", "reason": "Document has legacy field extractions"},
{"documentId": "...", "reason": "Document has legacy field extractions"}
]
}
Behavior:
- Uses
WITH RECURSIVECTE to walk the entire folder subtree (same pattern as folder deletion) - For each document in the tree:
- If the document has no schema, no custom metadata, and no legacy extractions -> assign the schema
- If the document already has the same schema -> skip (no-op, counted in
documentsSkipped) - If the document has a different schema but no custom metadata yet -> reassign to new schema
- If the document has a different schema AND has custom metadata -> skip with reason (cannot change)
- If the document has legacy field extractions -> skip with reason (mutual exclusivity)
- Runs in a single transaction
- Document count limit: If the folder subtree contains more than
MaxBulkAssignDocuments(10,000) documents, returns422 Unprocessable Entitywith a message explaining the limit. This prevents unbounded transaction duration, excessive lock contention, and replication lag. - Returns summary of what was updated and what was skipped (with reasons)
- Requires
user_adminrole (admin endpoint)
GET /document/{id} (Modified)
Add customSchemaId and customMetadata fields to DocumentEnriched:
{
"id": "...",
"clientId": "acme-corp",
"hash": "...",
"customSchemaId": "019577a3-...",
"customSchemaName": "aircraft-engineering",
"hasCustomMetadata": true,
"customMetadata": { ... },
...existing fields...
}
Query parameter: customMetadata (boolean, default: false) - when true, includes the full custom metadata in the response (like the existing textRecord parameter).
5.3 Authorization & Permit.io Changes
No new roles are required. The existing role hierarchy handles all custom schema operations:
| Role | Schema CRUD | Schema Assignment | Metadata Read | Metadata Write |
|---|---|---|---|---|
super_admin |
Yes | Yes | Yes | Yes |
user_admin |
Yes | Yes | Yes | Yes |
auditor |
Read-only | No | Read-only | No |
client_user |
No | No | Yes | Yes |
user_admin(andsuper_admin): Full access to schema management (/admin/custom-schemas), folder-level schema assignment (/admin/folders/{folderId}/assign-schema), and single-document schema assignment (/admin/document/{id}/schema). These roles already have/admin/*permissions in Permit.io, so all admin endpoints are covered automatically.client_user: Can read and write custom metadata values on documents (/custom-metadataendpoints) and read schema assignments on documents. Cannot create, update, or delete schemas, and cannot assign schemas to documents or folders.auditor: Read-only access to custom metadata and schema details. Cannot write metadata or manage schemas.
Permit.io policy additions (in permit_policies.yaml):
# Add custom-metadata resource for client_user access:
client_user:
custom-metadata:
- get
- post
# user_admin already has admin:* which covers /admin/custom-schemas.
# Add custom-metadata access for user_admin:
user_admin:
custom-metadata:
- get
- post
# auditor gets read-only on custom-metadata:
auditor:
custom-metadata:
- get
Since user_admin already maps to the admin resource with full permissions, the new /admin/custom-schemas and /admin/folders/{folderId}/assign-schema endpoints are covered without additional configuration. The only new resource mapping needed is custom-metadata for the user-facing metadata endpoints.
5.4 Custom Metadata CRUD Endpoints (New)
All under a new CustomMetadataService tag.
POST /custom-metadata
Create or update custom metadata for a document. Creates a new version.
Request:
{
"documentId": "...",
"metadata": {
"aircraft_model": "Boeing 737-800",
"certification_date": "2024-06-15",
"max_altitude_ft": 41000,
"engine_count": 2
},
"createdBy": "analyst@acme.com"
}
Response (201):
{
"id": "...",
"documentId": "...",
"schemaId": "019577a3-...",
"metadata": { ... },
"version": 1,
"createdAt": "...",
"createdBy": "analyst@acme.com"
}
Validation:
- Document must have a
custom_schema_idassigned (400 if not) - Document must NOT have any legacy field extractions (409 if it does -- mutual exclusivity, also enforced by DB trigger on schema assignment)
- The
metadatapayload must be <= 1MB in size (MaxMetadataPayloadBytes = 1048576). Returns 400 if exceeded. - The
metadatapayload is validated against the JSON Schema stored inclient_metadata_schemas.schema_def - The request body does NOT include
schemaId-- the server derives it from the document'scustom_schema_id. This prevents client/server drift. - If validation fails, returns 400 with detailed validation errors:
{ "error": "Metadata does not conform to schema", "validationErrors": [ {"field": "engine_count", "message": "must be >= 1, got 0"}, {"field": "aircraft_model", "message": "required field missing"} ] } - On first write, locks the document's
custom_schema_id(makes it immutable via app-layer flag + DB trigger) - Subsequent writes create new versions but must use the same schema
GET /custom-metadata
Get current (latest version) custom metadata for a document.
Query Parameters:
documentId(required)
Response (200):
{
"id": "...",
"documentId": "...",
"schemaId": "019577a3-...",
"schemaName": "aircraft-engineering",
"metadata": { ... },
"version": 3,
"createdAt": "...",
"createdBy": "..."
}
GET /custom-metadata/version
Get a specific version of custom metadata.
Query Parameters:
documentId(required)version(required, >= 1)
GET /custom-metadata/history
Get version history for a document's custom metadata.
Query Parameters:
documentId(required)limit(optional, default: 50, max: 200): Maximum number of versions to returnoffset(optional, default: 0): Number of versions to skip for pagination
Response (200):
{
"versions": [
{"id": "...", "documentId": "...", "version": 3, "createdAt": "...", "createdBy": "..."},
{"id": "...", "documentId": "...", "version": 2, "createdAt": "...", "createdBy": "..."},
{"id": "...", "documentId": "...", "version": 1, "createdAt": "...", "createdBy": "..."}
]
}
6. Validation Strategy
6.1 JSON Schema Validation
Use a Go JSON Schema validation library for both:
- Schema validation (meta-validation): When a client submits a new schema, validate it against the JSON Schema meta-schema to ensure it is a well-formed JSON Schema document.
- Metadata validation: When custom metadata is submitted, validate the payload against the document's assigned schema.
Recommended library: github.com/santhosh-tekuri/jsonschema/v6
Reasons:
- Supports JSON Schema draft 2020-12
- Active maintenance
- Good error reporting
- Supports custom formats
6.2 Schema Definition Requirements
When a schema definition is submitted (via POST or PUT), the server validates:
- It is a valid JSON object
- It compiles successfully as a JSON Schema document (meta-validation)
- Root
typeis"object" - Root
additionalPropertiesis explicitly present (eithertrueorfalse). This is required because JSON Schema defaultsadditionalPropertiestotruewhen omitted, which silently accepts any extra fields. Requiring explicit declaration forces a conscious choice. - Size is <= 64KB
6.3 Supported JSON Schema Features
The system will support the following JSON Schema keywords for custom field definitions:
| Feature | JSON Schema Keyword | Example |
|---|---|---|
| Data type | type |
"string", "number", "integer", "boolean", "array", "object" |
| Required fields | required |
["field1", "field2"] |
| String length | minLength, maxLength |
"maxLength": 100 |
| Numeric range | minimum, maximum |
"minimum": 0 |
| Pattern matching | pattern |
"pattern": "^[A-Z]{2}$" |
| Enum values | enum |
"enum": ["active", "inactive"] |
| Date/time format | format |
"format": "date" |
| Array items | items, minItems, maxItems |
Nested array support |
| Nested objects | properties |
Hierarchical field groups |
| No extra fields | additionalProperties |
false to enforce strict schemas |
6.4 Validation Error Reporting
Validation errors will be returned as structured JSON with:
- The JSON pointer to the failing field (
/aircraft_model) - The constraint that was violated (
maxLength) - A human-readable message
7. Service Layer Design
7.1 New Service: internal/customschema/
internal/customschema/
service.go -- CustomSchemaService (CRUD + validation)
models.go -- Input/output types
validator.go -- JSON Schema meta-validation + payload validation
constants.go -- MaxSchemaDefinitionBytes and other limits
service_test.go -- Integration tests
Constants (constants.go):
const (
// MaxSchemaDefinitionBytes is the maximum size of a JSON Schema definition.
// This limit can be increased if clients need larger schemas.
MaxSchemaDefinitionBytes = 65536 // 64KB
// MaxMetadataPayloadBytes is the maximum size of a custom metadata JSON payload.
// Prevents unbounded JSONB blobs when schemas use additionalProperties: true.
MaxMetadataPayloadBytes = 1048576 // 1MB
// MaxBulkAssignDocuments is the maximum number of documents that can be updated
// in a single bulk folder schema assignment. Prevents unbounded transactions.
MaxBulkAssignDocuments = 10000
)
Key methods:
type Service struct {
cfg serviceconfig.ConfigProvider
validator *SchemaValidator
}
// Schema management (admin operations)
func (s *Service) CreateSchema(ctx, input CreateSchemaInput) (*Schema, error)
func (s *Service) UpdateSchema(ctx, schemaID uuid.UUID, input UpdateSchemaInput) (*Schema, error)
func (s *Service) GetSchema(ctx, schemaID uuid.UUID) (*Schema, error)
func (s *Service) ListSchemas(ctx, clientID string, filters ListFilters) ([]SchemaSummary, error)
func (s *Service) DeleteSchema(ctx, schemaID uuid.UUID) error
// Metadata operations (regular user operations)
func (s *Service) SetDocumentMetadata(ctx, input SetMetadataInput) (*CustomMetadata, error)
func (s *Service) GetCurrentMetadata(ctx, documentID uuid.UUID) (*CustomMetadata, error)
func (s *Service) GetMetadataByVersion(ctx, documentID uuid.UUID, version int) (*CustomMetadata, error)
func (s *Service) GetMetadataHistory(ctx, documentID uuid.UUID) ([]MetadataVersion, error)
// Document schema binding
func (s *Service) AssignSchema(ctx, documentID uuid.UUID, schemaID uuid.UUID) error
func (s *Service) AssignSchemaToFolder(ctx, folderID uuid.UUID, schemaID uuid.UUID, createdBy string) (*BulkAssignResult, error)
BulkAssignResult:
type BulkAssignResult struct {
FolderID uuid.UUID
SchemaID uuid.UUID
DocumentsUpdated int
DocumentsSkipped int
SkippedReasons []SkippedDocument
}
type SkippedDocument struct {
DocumentID uuid.UUID
Reason string
}
7.2 Validator Component
type SchemaValidator struct{}
// ValidateSchemaDefinition checks that a schema_def is valid JSON Schema.
// Returns error if: not a valid JSON object, fails meta-validation,
// root type is not "object", or additionalProperties is not explicitly present.
func (v *SchemaValidator) ValidateSchemaDefinition(schemaDef json.RawMessage) error
// ValidateMetadata checks that metadata conforms to a compiled schema
func (v *SchemaValidator) ValidateMetadata(schemaDef json.RawMessage, metadata json.RawMessage) ([]ValidationError, error)
7.3 Mutual Exclusivity Guard
The service layer enforces mutual exclusivity at two points:
-
Schema assignment (
AssignSchema): Before settingcustom_schema_idon a document, check that no rows exist indocumentFieldExtractionVersionsfor that document. If they do, return409 Conflict. -
Legacy field extraction write (modification to existing
FieldExtractionService): Before creating a new field extraction, check thatdocuments.custom_schema_id IS NULLfor the target document. If it is not null, return409 Conflictwith a message explaining that the document uses the custom schema system.
Note
: The DB trigger on
documents.custom_schema_id(Section 4.7, Trigger 1) also prevents schema assignment if legacy extractions exist. This is the defense-in-depth pattern: the service layer returns a clean 409; the trigger catches anything that slips through.
7.4 API Controller: api/queryAPI/customschemas.go
Follows the same pattern as fieldextractions.go:
- Parse and validate request
- Call service layer
- Convert between API and service types
- Return appropriate HTTP status codes
8. Migration Plan
8.1 Migration Files
Four new migrations:
Migration 120: Create schema_status_type enum + client_metadata_schemas table
00000000000120_create_client_metadata_schemas.up.sql
00000000000120_create_client_metadata_schemas.down.sql
Migration 121: Create document_custom_metadata table + view
00000000000121_create_document_custom_metadata.up.sql
00000000000121_create_document_custom_metadata.down.sql
Migration 122: Add custom_schema_id to documents table
00000000000122_add_custom_schema_id_to_documents.up.sql
00000000000122_add_custom_schema_id_to_documents.down.sql
Migration 123: Add database triggers for invariant enforcement
00000000000123_add_schema_invariant_triggers.up.sql
00000000000123_add_schema_invariant_triggers.down.sql
Contents:
trg_prevent_schema_reassignmentfunction + trigger (Section 4.7, Trigger 1)trg_validate_schema_client_matchfunction + trigger (Section 4.7, Trigger 2)trg_enforce_consistent_schema_idfunction + trigger (Section 4.7, Trigger 3)- Down migration drops triggers and functions
8.2 SQLC Queries
New query file: internal/database/queries/customschemas.sql
Schema operations:
CreateClientMetadataSchema- Insert new schemaGetClientMetadataSchema- Get by IDListClientMetadataSchemas- List by client with filters (status filter)GetLatestSchemaByName- Get latest version of a named schemaGetSchemaDocumentCount- Count documents using a schemaGetSchemaMetadataRecordCount- Count metadata records referencing a schema (forcanDelete)SetSchemaStatus- Update status (for supersede/retire)GetMaxSchemaVersion- For auto-incrementing versionLockSchemaVersionsForName-SELECT ... FOR UPDATEon all versions of a (client_id, name) pair to prevent concurrent version creation race
Metadata operations:
CreateDocumentCustomMetadata- Insert new metadata versionGetCurrentDocumentCustomMetadata- Latest version (via view)GetDocumentCustomMetadataByVersion- Specific versionGetDocumentCustomMetadataHistory- All versionsLockDocumentCustomMetadataForVersion- Row-level locking (SELECT FOR UPDATE on max version)
Document modifications:
SetDocumentCustomSchemaId- Update documents.custom_schema_idGetDocumentCustomSchemaId- Read documents.custom_schema_idBulkSetDocumentCustomSchemaIdInFolderTree- Set schema for all docs in folder subtree (WITH RECURSIVE)GetDocumentsWithMetadataInFolderTree- Find docs that already have metadata (for skip reporting)GetDocumentsWithLegacyExtractionsInFolderTree- Find docs that have legacy extractions (for skip reporting)DocumentHasLegacyExtractions- Check if a single document has any legacy field extraction versionsCountDocumentsInFolderTree- Count total documents in a folder subtree (forMaxBulkAssignDocumentslimit check)
Delete cascade operations (additions to document.sql and client.sql):
DeleteDocumentCustomMetadata- Delete all custom metadata versions for a documentNullifyDocumentCustomSchemaId- Setcustom_schema_id = NULLon a document (before hard delete)DeleteClientMetadataSchemas- Delete all schemas for a client (after all documents deleted)
8.3 OpenAPI Spec Changes
Add to serviceAPIs/queryAPI.yaml:
- New admin paths:
/admin/custom-schemas,/admin/custom-schemas/{schemaId},/admin/folders/{folderId}/assign-schema - New admin paths (additional):
/admin/document/{id}/schema - New user paths:
/custom-metadata,/custom-metadata/version,/custom-metadata/history - New schemas:
CustomSchemaRequest,CustomSchemaResponse,CustomSchemaListResponse,CustomMetadataRequest,CustomMetadataResponse,CustomMetadataHistoryResponse,ValidationErrorResponse,BulkSchemaAssignRequest,BulkSchemaAssignResponse - New enum:
SchemaStatuswith valuesactive,superseded,retired - Modified schemas:
DocumentEnriched(addcustomSchemaId,customSchemaName,hasCustomMetadata,customMetadatafields)
8.4 Legacy Field Extraction Guard
Add a check to the existing field extraction service (internal/fieldextraction/service.go):
Before creating a new field extraction, verify that documents.custom_schema_id IS NULL for the target document. If the document has a custom schema assigned, return a 409 Conflict error explaining that the document uses the custom schema system and legacy field extractions are not allowed.
This is a small modification to the existing code path, not a new endpoint.
8.5 Delete Path Updates (Cascade Cleanup)
The new tables and FKs require updates to existing delete paths. Without these changes, hard-deleting a document or client will fail with FK violations.
Document Delete Cascade
The existing DeleteDocumentCascade function (in internal/document/) and the SQLC queries in internal/database/queries/document.sql must be updated to delete custom metadata before deleting the document:
New SQLC queries to add to document.sql:
DeleteDocumentCustomMetadata-DELETE FROM document_custom_metadata WHERE document_id = @document_idNullifyDocumentCustomSchemaId-UPDATE documents SET custom_schema_id = NULL WHERE id = @document_id
Updated delete order in DeleteDocumentCascade:
- Delete
documentFieldExtractionArrayFields(existing) - Delete
documentFieldExtractionVersions(existing) - Delete
documentFieldExtractions(existing) - Delete
document_custom_metadata(new -- must come before document row delete) - Nullify
documents.custom_schema_id(new -- removes FK toclient_metadata_schemasbefore document delete) - Delete
documentCleanEntries/documentCleans/documentEntries(existing) - Delete
documentsrow (existing)
Note
: Step 5 (nullify
custom_schema_id) must happen before step 7 because the FK fromdocuments.custom_schema_idtoclient_metadata_schemaswould block deletion otherwise. The nullify is safe because step 4 already removed all custom metadata, and Trigger 1 only fires on changes when metadata exists.
Client Delete Cascade
The existing client.HardDelete and deleteClientDependencies functions must be updated to clean up schema data after all documents are deleted:
New SQLC queries:
DeleteClientMetadataSchemas-DELETE FROM client_metadata_schemas WHERE client_id = @client_id
Updated delete order in client.HardDelete:
- Delete all documents with full cascade (existing, now includes custom metadata cleanup per above)
- Delete
documentUploads(existing) - Delete all folders (existing)
- Delete
client_metadata_schemas(new -- safe after all documents are gone since no FKs reference these rows) - Delete collector data, batch uploads, sync records (existing)
- Delete client row (existing)
9. Invariants & Business Rules
| # | Rule | Enforcement |
|---|---|---|
| 1 | Schema must be valid JSON Schema with explicit additionalProperties |
Application: meta-validation on create/update |
| 2 | Schema name + version unique per client |
Database: unique constraint |
| 3 | Updated schema gets new ID and version; old version becomes superseded |
Application: INSERT new row, UPDATE old status |
| 4 | Schema deletion blocked if documents reference it | Application: count check before retirement |
| 5 | Document's custom_schema_id is immutable once any extraction exists |
Application: check in AssignSchema + DB trigger: trg_prevent_schema_reassignment |
| 6 | Custom metadata must conform to assigned schema | Application: JSON Schema validation on write |
| 7 | All custom metadata versions for a document use same schema ID | Application: consistency check on write + DB trigger: trg_enforce_consistent_schema_id |
| 8 | Schema must belong to same client as document | Application: cross-reference check + DB trigger: trg_validate_schema_client_match |
| 9 | Only active schemas can be assigned to new documents |
Application: status check |
| 10 | Custom metadata is versioned (no in-place updates) | Database: version column + unique constraint |
| 11 | Schema definition must be <= 64KB | Application: size check + Database: CHECK constraint |
| 12 | Schema management requires user_admin role |
Permit.io: role-based access on /admin resource (existing permission) |
| 13 | No query/filter on custom metadata values | By design: not implemented (see Principle 9) |
| 14 | A document uses EITHER legacy extractions OR custom metadata, never both | Application: mutual exclusivity checks in both services + DB trigger: trg_prevent_schema_reassignment |
| 15 | Legacy field extraction writes rejected if document has custom_schema_id set |
Application: guard in FieldExtractionService |
| 16 | Custom schema assignment rejected if document has legacy extractions | Application: guard in AssignSchema + DB trigger |
| 17 | Metadata payload must be <= 1MB | Application: size check (MaxMetadataPayloadBytes) |
| 18 | Bulk folder assignment capped at 10,000 documents | Application: count check (MaxBulkAssignDocuments), returns 422 if exceeded |
| 19 | Schema assignment requires user_admin role |
Permit.io: endpoint under /admin prefix maps to admin resource |
| 20 | Delete cascade must clean up custom metadata and schema bindings | Application: updated DeleteDocumentCascade + deleteClientDependencies (Section 8.5) |
10. Relationship to Existing Field Extraction System
The existing static field extraction system (/field-extractions) and the new custom schema system (/admin/custom-schemas + /custom-metadata) are mutually exclusive per document:
- A document uses EITHER the legacy static field extraction system OR the custom schema system
- A document CANNOT have both legacy field extractions AND custom metadata
- Assigning a custom schema to a document that already has legacy extractions returns
409 Conflict - Writing a legacy field extraction to a document that has a custom schema assigned returns
409 Conflict - Documents without a custom schema (the default) continue to use the legacy system unchanged
- There is no migration path from legacy to custom for individual documents. If a document needs custom metadata, it should not have legacy extractions written to it first.
Rationale: This prevents ambiguity about which system is "authoritative" for a document's metadata. With mutual exclusivity, there is exactly one source of truth per document. This is simpler to reason about, simpler to query, and avoids the data governance problem of conflicting data in two stores.
No breaking changes to the existing API or database schema for documents that do not opt into custom schemas.
11. Implementation Order
| Phase | Work | Dependencies |
|---|---|---|
| 1 | Database migrations (enum, tables, view, document column, triggers) | None |
| 2 | SQLC queries + task generate |
Phase 1 |
| 3 | Schema validator component (internal/customschema/validator.go) |
JSON Schema library added to go.mod |
| 4 | Service layer (internal/customschema/service.go) incl. bulk folder assignment + mutual exclusivity guards |
Phase 2, 3 |
| 5a | Legacy field extraction guard (add check to existing FieldExtractionService) |
Phase 2 |
| 5b | Delete cascade updates (DeleteDocumentCascade, deleteClientDependencies, new SQLC queries) |
Phase 2 |
| 6 | OpenAPI spec updates (admin + user endpoints) | None (can parallel with 1-3) |
| 7 | Permit.io: Add custom-metadata resource mapping to existing roles |
None (can parallel with 1-6) |
| 8 | API controllers + code generation (admin schema CRUD, metadata CRUD) | Phase 4, 6 |
| 9 | Document endpoint modifications (PATCH schema, GET enrichment) | Phase 4, 8 |
| 10 | Bulk folder schema assignment endpoint | Phase 4, 8 |
| 11 | Integration tests | Phase 10 |
| 12 | Documentation updates (docs/ai.generated/) incl. sample schemas |
Phase 11 |
12. Testing Strategy
- Schema validation tests: Valid and invalid JSON Schema documents, edge cases (empty schema, deeply nested, self-referential, oversized >64KB, missing
additionalProperties) - Metadata validation tests: Conforming and non-conforming payloads, all supported JSON Schema keywords
- Service integration tests: Full CRUD lifecycle using testcontainers (real PostgreSQL)
- API integration tests: HTTP-level tests for all new endpoints (admin + user)
- Invariant tests: Schema immutability, cross-client isolation, deletion guards, size limits
- DB trigger tests: Verify triggers fire correctly when bypassing the service layer (direct SQL inserts/updates via testcontainers)
- Schema status lifecycle tests:
active->supersededon version create,active->retiredon delete, assignment rejected for non-activeschemas - Mutual exclusivity tests: Legacy extraction blocked when schema assigned, schema assignment blocked when legacy extractions exist, bulk folder assignment skips documents with legacy extractions
- Bulk folder assignment tests: Recursive assignment, skip behavior for locked docs and legacy docs, empty folders, deeply nested folder trees
- Authorization tests:
user_admincan manage schemas,client_usercannot manage schemas but can read/write metadata,auditoris read-only - Backward compatibility tests: Existing field extraction endpoints continue to work unchanged for documents without custom schemas
- Delete cascade tests: Document hard-delete succeeds when document has custom metadata, client hard-delete succeeds when client has schemas and metadata, verify no orphaned rows remain
- Metadata size limit tests: Payloads at/above 1MB boundary, verify 400 response with clear message
- Bulk assignment limit tests: Folder trees exceeding
MaxBulkAssignDocuments, verify 422 response - Schema version concurrency tests: Concurrent PUT requests for same schema name produce distinct version numbers
13. Resolved Design Decisions
| # | Question | Decision |
|---|---|---|
| 1 | Schema size limits | 64KB cap via MaxSchemaDefinitionBytes constant (tunable) |
| 2 | Schema backward compatibility | Not required. New version = new ID. Old docs keep old schema. |
| 3 | Bulk operations | Yes. POST /admin/folders/{folderId}/assign-schema assigns recursively through folder tree. |
| 4 | Custom metadata search/filter | Not supported. No GIN indexes, no query API. Metadata is opaque storage. |
| 5 | Schema templates | No system templates. Documentation will include sample schemas covering all supported types. |
| 6 | Existing field migration path | Out of scope. Static fields and custom schemas are mutually exclusive per document. |
| 7 | Endpoint naming/placement | Schema CRUD under /admin/custom-schemas (requires existing user_admin role). Metadata CRUD under /custom-metadata (regular client_user access). |
| 8 | Legacy/custom coexistence | Mutually exclusive. A document uses EITHER legacy OR custom, never both. Simplifies data governance and prevents source-of-truth ambiguity. |
| 9 | Schema status model | Three-state enum (active/superseded/retired) instead of boolean. Distinguishes automatic version succession from explicit admin retirement. |
| 10 | DB-level invariant enforcement | Yes. Two database triggers enforce schema lock and client ownership match as defense-in-depth alongside application-layer checks. |
| 11 | additionalProperties in schemas |
Required to be explicitly present (not necessarily false). Prevents the common mistake of omitting it and silently accepting arbitrary extra fields. |
| 12 | Metadata table design | Single table with version column (simpler than the legacy two-table pattern). Sufficient for our concurrency needs. Can split later if needed. |
| 13 | Schema assignment endpoint path | Under /admin/document/{id}/schema (not /document/{id}/schema) to ensure Permit.io maps resource to admin. Prevents client_user from assigning schemas. |
| 14 | Metadata payload size limit | 1MB cap via MaxMetadataPayloadBytes constant. Prevents unbounded JSONB blobs when schemas allow additionalProperties: true. |
| 15 | Bulk assignment document limit | 10,000 documents via MaxBulkAssignDocuments constant. Prevents unbounded transactions and lock contention. |
| 16 | Schema_id consistency trigger | DB trigger trg_enforce_consistent_schema_id on document_custom_metadata INSERT enforces same schema across all metadata versions for a document (defense-in-depth for Invariant 7). |
Appendix A: Sample JSON Schemas
These examples demonstrate all supported JSON Schema features and data types. They should be included in the API documentation.
A.1 Comprehensive Schema (All Supported Types)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"document_title": {
"type": "string",
"minLength": 1,
"maxLength": 500,
"description": "Title of the document"
},
"document_code": {
"type": "string",
"pattern": "^[A-Z]{3}-[0-9]{4}$",
"description": "Document code in format XXX-0000"
},
"status": {
"type": "string",
"enum": ["draft", "review", "approved", "rejected", "archived"],
"description": "Current document status"
},
"review_date": {
"type": "string",
"format": "date",
"description": "Date of last review (YYYY-MM-DD)"
},
"created_timestamp": {
"type": "string",
"format": "date-time",
"description": "Creation timestamp (ISO 8601)"
},
"page_count": {
"type": "integer",
"minimum": 1,
"maximum": 10000,
"description": "Total number of pages"
},
"confidence_score": {
"type": "number",
"minimum": 0.0,
"maximum": 1.0,
"description": "Extraction confidence (0.0 to 1.0)"
},
"is_verified": {
"type": "boolean",
"description": "Whether the extraction has been human-verified"
},
"tags": {
"type": "array",
"items": { "type": "string", "maxLength": 50 },
"minItems": 0,
"maxItems": 20,
"description": "Classification tags"
},
"numeric_values": {
"type": "array",
"items": { "type": "number" },
"maxItems": 100,
"description": "Extracted numeric values"
},
"contact_info": {
"type": "object",
"properties": {
"name": { "type": "string", "maxLength": 200 },
"email": { "type": "string", "format": "email" },
"phone": { "type": "string", "pattern": "^\\+?[0-9\\-\\s()]+$" }
},
"required": ["name"],
"additionalProperties": false,
"description": "Primary contact information"
}
},
"required": ["document_title", "status"],
"additionalProperties": false
}
A.2 Aircraft Engineering Schema (Domain Example)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"aircraft_model": {
"type": "string",
"maxLength": 100
},
"manufacturer": {
"type": "string",
"enum": ["Boeing", "Airbus", "Embraer", "Bombardier", "Other"]
},
"certification_date": {
"type": "string",
"format": "date"
},
"max_altitude_ft": {
"type": "integer",
"minimum": 0,
"maximum": 100000
},
"max_range_nm": {
"type": "number",
"minimum": 0
},
"engine_count": {
"type": "integer",
"minimum": 1,
"maximum": 12
},
"engine_type": {
"type": "string",
"enum": ["turbofan", "turboprop", "turbojet", "piston", "electric"]
},
"wingspan_meters": {
"type": "number",
"minimum": 0,
"maximum": 100
},
"is_pressurized": {
"type": "boolean"
},
"applicable_regulations": {
"type": "array",
"items": {
"type": "string",
"pattern": "^(FAR|EASA|CAAC)-[0-9A-Z\\.]+$"
},
"maxItems": 50
}
},
"required": ["aircraft_model", "manufacturer"],
"additionalProperties": false
}
A.3 Auto Engineering Schema (Domain Example)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"vehicle_make": {
"type": "string",
"maxLength": 100
},
"vehicle_model": {
"type": "string",
"maxLength": 100
},
"model_year": {
"type": "integer",
"minimum": 1900,
"maximum": 2100
},
"vin": {
"type": "string",
"pattern": "^[A-HJ-NPR-Z0-9]{17}$",
"description": "17-character Vehicle Identification Number"
},
"engine_displacement_liters": {
"type": "number",
"minimum": 0,
"maximum": 20
},
"horsepower": {
"type": "integer",
"minimum": 0
},
"transmission_type": {
"type": "string",
"enum": ["manual", "automatic", "cvt", "dct", "ev"]
},
"is_electric": {
"type": "boolean"
},
"safety_ratings": {
"type": "object",
"properties": {
"nhtsa_overall": { "type": "integer", "minimum": 1, "maximum": 5 },
"iihs_rating": { "type": "string", "enum": ["Poor", "Marginal", "Acceptable", "Good", "Good+"] }
},
"additionalProperties": false
},
"recall_ids": {
"type": "array",
"items": { "type": "string", "maxLength": 20 },
"maxItems": 100
}
},
"required": ["vehicle_make", "vehicle_model", "model_year"],
"additionalProperties": false
}
Supported JSON Schema Data Types Summary
| JSON Schema Type | Go Equivalent | Example Constraint Keywords |
|---|---|---|
string |
string |
minLength, maxLength, pattern, format, enum |
integer |
int64 |
minimum, maximum |
number |
float64 |
minimum, maximum |
boolean |
bool |
(none) |
array |
[]T |
items, minItems, maxItems |
object |
map/struct |
properties, required, additionalProperties |
Supported format values: date, date-time, email, uri, uuid