From 97f29e10b904f90777bef6129a4ef43ec4103598 Mon Sep 17 00:00:00 2001 From: priethor <27339341+priethor@users.noreply.github.com> Date: Wed, 12 Nov 2025 12:51:59 +0100 Subject: [PATCH] Add missing internal `not_registered` property --- schemas/internal-fields.schema.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/schemas/internal-fields.schema.json b/schemas/internal-fields.schema.json index 125b4fc1..6d1f1d5c 100644 --- a/schemas/internal-fields.schema.json +++ b/schemas/internal-fields.schema.json @@ -15,12 +15,16 @@ }, "_valid": { "type": "boolean", - "description": "Validation cache flag . Indicates whether the entity passed validation." + "description": "Validation cache flag. Indicates whether the entity passed validation." }, "local": { "type": "string", "enum": ["json"], "description": "Source indicator. Present only if entity is locally-defined (e.g., from local JSON files). Stripped during export." + }, + "not_registered": { + "type": "boolean", + "description": "Flag indicating that this post entity could not be registered because another one with the same key already exists. Present only when registration was skipped." } }, "additionalProperties": false