Skip to main content

max-total-properties

Category: Structural — overall schema structure triggers this rule

Error Codes

ProfileCode
openai.so.2026-04-30OAI-S-max-total-properties

Description

Total object properties must not exceed 5000

Rationale

openai.so.2026-04-30 limits the total number of object properties.

Bad Example

{ "type": "object", "properties": { "...many": {} } }

Good Example

{ "type": "object", "properties": { "name": { "type": "string" } } }