You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Internal fields present in SCF entities (post types, taxonomies, field groups, options pages). These fields are managed by the system and appear in GET/LIST/CREATE/UPDATE/IMPORT/DUPLICATE outputs, but are stripped during EXPORT.",
6
+
"definitions": {
7
+
"internalFields": {
8
+
"type": "object",
9
+
"description": "Internal system-managed fields that appear in entity responses",
10
+
"properties": {
11
+
"ID": {
12
+
"type": "integer",
13
+
"minimum": 1,
14
+
"description": "WordPress post ID. Present in GET/LIST/CREATE/UPDATE/IMPORT/DUPLICATE outputs. Optional in IMPORT input - if provided, updates existing entity; if omitted, creates new entity."
15
+
},
16
+
"_valid": {
17
+
"type": "boolean",
18
+
"description": "Validation cache flag . Indicates whether the entity passed validation."
19
+
},
20
+
"local": {
21
+
"type": "string",
22
+
"enum": ["json"],
23
+
"description": "Source indicator. Present only if entity is locally-defined (e.g., from local JSON files). Stripped during export."
0 commit comments