addedOutput schema / properties / kind
Added value: +{
+ "description": "full — statements carries the claims. outline — the statement set overflowed the inline byte budget, so sections lists the P-IDs available instead; re-call with properties:[...] to retrieve specific ones. The counts below are reported either way.",
+ "enum": [
+ "full",
+ "outline"
+ ],
+ "type": "string"
+}
changedOutput schema / properties / propertyCount / description
Previous value: -"Number of distinct properties returned."New value: +"Number of distinct properties — those returned in full mode, those offered as sections in outline mode."
addedOutput schema / properties / retrieval_notice
Added value: +{
+ "description": "Present when kind = outline: how to re-call for specific properties.",
+ "type": "string"
+}
addedOutput schema / properties / sections
Added value: +{
+ "description": "Present when kind = outline: the P-IDs this entity carries statements for, largest first. Copy names into the properties input to retrieve them.",
+ "items": {
+ "additionalProperties": false,
+ "description": "An available property — its P-ID and the serialized byte size of its statements.",
+ "properties": {
+ "bytes": {
+ "description": "Serialized byte size of the section",
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "name": {
+ "description": "Section identifier — pass in `sections` to retrieve it",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "bytes"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / properties / statementCount / description
Previous value: -"Total number of statement objects across all properties."New value: +"Total number of statement objects across all properties. Counted before any overflow, so it reports the entity's full statement volume in both modes."
changedOutput schema / properties / statements / description
Previous value: -"Map of property ID to array of normalized statements. Each statement has id, rank, property, value (with type-specific fields), and optional qualifiers and references arrays."New value: +"Map of property ID to array of normalized statements. Each statement has id, rank, property, value (with type-specific fields), and optional qualifiers and references arrays. Present in full mode; omitted in outline mode."
changedOutput schema / required
Previous value: -[
- "id",
- "statements",
- "propertyCount",
- "statementCount",
- "labelsResolved"
-]New value: +[
+ "id",
+ "kind",
+ "propertyCount",
+ "statementCount",
+ "labelsResolved"
+]