API documentation for the property.
This is the standard OpenAPI description field that will be displayed in Swagger UI, SDK documentation, and other API documentation tools. Focus on explaining the property from an API consumer's perspective.
When the database column is non-null but the DTO property is nullable or optional, briefly explain why:
x-autobe-specification)OptionalexclusiveExclusive maximum value restriction.
OptionalexclusiveExclusive minimum value restriction.
OptionalmaximumMaximum value restriction.
OptionalminimumMinimum value restriction.
OptionalmultipleMultiple of value restriction.
Discriminator value of the type.
CRITICAL: This MUST be a SINGLE string value, NOT an array. The type field identifies the JSON Schema type and must be exactly one of: "boolean", "integer", "number", "string", "array", "object", or "null".
❌ INCORRECT: type: ["string", "null"] // This is WRONG! ✅ CORRECT: type: "string" // For nullable string, use oneOf instead
If you need to express a nullable type (e.g., string | null), you MUST
use the IOneOf structure:
{
"oneOf": [{ "type": "string" }, { "type": "null" }]
}
NEVER use array notation in the type field. The type field is a discriminator that accepts only a single string value.
Implementation specification for this property.
This is an AutoBE-internal field (not exposed in standard OpenAPI output) that provides detailed implementation guidance for downstream agents (Realize Agent, Test Agent, etc.).
Include HOW this property value should be retrieved or computed:
price * quantity)The specification must be precise enough for Realize Agent to implement the data retrieval or computation logic without ambiguity.
MUST be written in English. Never use other languages.
Integer property.