IPA Validation Rules
June 23, 2026 · View on GitHub
All Spectral rules used in the IPA validation are defined in rulesets grouped by IPA number (IPA-XXX.yaml). These rulesets are imported into the main IPA ruleset ipa-spectral.yaml which is used for running the validation.
Rulesets
Below is a list of all available rules, their descriptions and severity levels.
IPA-005
Rules are based on https://mongodb.github.io/ipa/5.
xgen-IPA-005-exception-extension-format
IPA exception extensions must follow the correct format.
Implementation details
Rule checks for the following conditions:
- Exception rule names must start with 'xgen-IPA-' prefix followed by exactly 3 digits
- Exception rule names can be either short format (xgen-IPA-XXX) or full format (xgen-IPA-XXX-rule-name)
- Rule names in full format can use letters (upper/lowercase), numbers, and hyphens
- Each exception must include a non-empty reason as a string that starts with uppercase and ends with a full stop
- This rule itself does not allow exceptions
IPA-102
Rules are based on https://mongodb.github.io/ipa/102.
xgen-IPA-102-collection-identifier-camelCase
Collection identifiers must be in camelCase.
Implementation details
Rule checks for the following conditions:
- All path segments that are not path parameters
- Only the resource identifier part before any colon in custom method paths (e.g.,
resourcein/resource:customMethod) - Path parameters should also follow camelCase naming
- Certain values can be exempted via the ignoredValues configuration that can be supplied as
ignoredValuesargument to the rule - Paths with
x-xgen-IPA-exceptionfor this rule are excluded from validation - Double slashes (//) are not allowed in paths
- If any parent path has an exception for this rule, the exception will be inherited.
xgen-IPA-102-path-alternate-resource-name-path-param
Paths should alternate between resource names and path params.
Implementation details
Rule checks for the following conditions:
- Paths must follow a pattern where resource names and path parameters strictly alternate
- Even-indexed path segments should be resource names (not path parameters)
- Odd-indexed path segments should be path parameters
- Paths with
x-xgen-IPA-exceptionfor this rule are excluded from validation - If any parent path has an exception for this rule, the exception will be inherited.
xgen-IPA-102-collection-identifier-pattern
Collection identifiers must begin with a lowercase letter and contain only ASCII letters and numbers.
Implementation details
Rule checks for the following conditions:
- All path segments that are not path parameters must match pattern
/^[a-z][a-zA-Z0-9]*$/ - Path parameters (inside curly braces) are excluded from validation
- Custom methods (segments containing colons) are excluded from validation
- Paths with
x-xgen-IPA-exceptionfor this rule are excluded from validation - Each non-parameter path segment must start with a lowercase letter followed by any combination of ASCII letters and numbers
- If any parent path has an exception for this rule, the exception will be inherited.
IPA-104
Rules are based on https://mongodb.github.io/ipa/104.
xgen-IPA-104-resource-has-GET
APIs must provide a Get method for resources.
Implementation details
Rule checks for the following conditions:
- Only applies to resource collection identifiers
- For singleton resources, verifies the resource has a GET method
- For regular resources, verifies there is a single resource path with a GET method
xgen-IPA-104-get-method-returns-single-resource
The purpose of the Get method is to return data from a single resource.
Implementation details
Rule checks for the following conditions:
- Applies only to 2xx responses of GET methods on single resources or singleton resources
- Verifies the response is not an array or paginated result
- Different error messages are provided for standard vs singleton resources
xgen-IPA-104-get-method-response-code-is-200
The Get method must return a 200 OK response.
Implementation details
Rule checks for the following conditions:
- Applies only to GET methods on single resources or singleton resources
- Verifies the 200 OK response code is present
- Fails if the method lacks a 200 OK response or defines a different 2xx status code
xgen-IPA-104-get-method-returns-response-suffixed-object
The Get method of a resource should return a "Response" suffixed object.
Implementation details
Rule checks for the following conditions:
- Applies only to 2xx responses of GET methods on single resources or singleton resources
- Verifies the schema references a predefined schema (not inline)
- Confirms the referenced schema name ends with "Response" suffix
xgen-IPA-104-get-method-response-has-no-input-fields
The Get method response object must not include writeOnly properties (fields that should be used only on creation or update, ie output fields).
Implementation details
Rule checks for the following conditions:
- Applies only to 2xx responses of GET methods on single resources or singleton resources
- Searches through the schema to find any properties marked with writeOnly attribute
- Fails if any writeOnly properties are found in the response schema
xgen-IPA-104-get-method-no-request-body
The Get method request must not include a body.
Implementation details
Rule checks for the following conditions:
- Applies only to GET methods on single resources or singleton resources
- Verifies that the operation object does not contain a requestBody property
xgen-IPA-104-valid-operation-id
The Operation ID must start with the verb “get” and should be followed by a noun or compound noun.
The noun(s) in the Operation ID should be the collection identifiers from the resource identifier in singular form.
If the resource is a singleton resource, the last noun may be the plural form of the collection identifier.
Implementation details
Rule checks for the following conditions:
- Applies only to GET methods on single resources or singleton resources
- Confirms that the existing OperationId is compliant with generated IPA Compliant OperationId
Configuration
This rule includes three configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")maxLength: The maximum number of words allowed in the operation ID override (default: 4)
xgen-IPA-104-operation-id-length
The Operation ID should not be longer than 4 words. If the generated operation ID exceeds 4 words,
add an 'x-xgen-operation-id-override' extension with a shorter operation ID.
Implementation details
Rule checks for the following conditions:
- Applies only to GET methods on single resources or singleton resources
- Verifies that the operation ID is not longer than 4 words
- If the operation ID is longer than 4 words, requires an 'x-xgen-operation-id-override' extension
- Can be exempted using 'x-xgen-IPA-exception' for APIs where long operation IDs are intentional
Configuration
This rule includes three configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")maxLength: The maximum number of words allowed in the operation ID (default: 4)
IPA-105
Rules are based on https://mongodb.github.io/ipa/105.
xgen-IPA-105-list-method-response-code-is-200
The List method must return a 200 OK response.
Implementation details
Rule checks for the following conditions:
- Applies only to GET methods on resource collection paths
- Ignores singleton resources
- Verifies the 200 OK response code is present
- Fails if the method lacks a 200 OK response or defines a different 2xx status code
xgen-IPA-105-list-method-no-request-body
The List method request must not include a body.
Implementation details
Rule checks for the following conditions:
- Applies only to GET methods on resource collection paths
- Ignores singleton resources
- Verifies that the operation object does not contain a requestBody property
xgen-IPA-105-resource-has-list
APIs must provide a List method for resources.
Implementation details
Rule checks for the following conditions:
- Applies only to resource collection paths
- Ignores singleton resources
- Verifies the resource path has a GET method
- Fails if the resource path does not have a GET method
xgen-IPA-105-list-method-response-is-get-method-response
The response body of the List method should consist of the same resource object returned by the Get method.
Implementation details Rule checks for the following conditions:
- Applies only to resource collection paths with JSON content types
- Ignores singleton resources
- Ignores responses without a schema or non-paginated responses
- A response is considered paginated if it has a schema with a 'results' array property
- Verifies that the schema of items in the 'results' array matches the schema used in the Get method response
- Fails if the Get method doesn't have a schema reference or if the schemas don't match
- Validation ignores resources without a Get method
- Paths with
x-xgen-IPA-exceptionfor this rule are excluded from validation
xgen-IPA-105-valid-operation-id
The Operation ID must start with the verb “list” and should be followed by a noun or compound noun.
The noun(s) in the Operation ID should be the collection identifiers from the resource identifier in singular form, where the last noun is in plural form.
Implementation details
Rule checks for the following conditions:
- Applies only to GET methods on resource collection paths
- Ignores singleton resources
- Confirms that the existing OperationId is compliant with generated IPA Compliant OperationId
Configuration
This rule includes three configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")maxLength: The maximum number of words allowed in the operation ID override (default: 4)
xgen-IPA-105-operation-id-length
The Operation ID should not be longer than 4 words. If the generated operation ID exceeds 4 words,
add an 'x-xgen-operation-id-override' extension with a shorter operation ID.
Implementation details
Rule checks for the following conditions:
- Applies only to GET methods on resource collection paths
- Ignores singleton resources
- Verifies that the operation ID is not longer than 4 words
- If the operation ID is longer than 4 words, requires an 'x-xgen-operation-id-override' extension
- Can be exempted using 'x-xgen-IPA-exception' for APIs where long operation IDs are intentional
Configuration
This rule includes three configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")maxLength: The maximum number of words allowed in the operation ID (default: 4)
IPA-106
Rules are based on https://mongodb.github.io/ipa/106.
xgen-IPA-106-create-method-request-body-is-request-suffixed-object
The Create method request should be a Request suffixed object.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods on resource collection paths (non-singleton resources)
- Applies only to JSON content types
- Verifies the schema references a predefined schema (not inline)
- Confirms the referenced schema name ends with "Request" suffix
xgen-IPA-106-create-method-should-not-have-query-parameters
Create operations should not use query parameters.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods on resource collection paths (non-singleton resources)
- Verifies the operation does not contain query parameters
- Ignores specified parameters like 'pretty' and 'envelope' via configuration
xgen-IPA-106-create-method-request-body-is-get-method-response
Request body content of the Create method and response content of the Get method should refer to the same resource.
Implementation details
Validation checks the POST method for resource collection paths.
- Validation ignores resources without a Get method.
readOnly:trueproperties of Get method response will be ignored.writeOnly:trueproperties of Create method request will be ignored.- Property comparison is based on
typeandnamematching. oneOfanddiscriminatordefinitions must match exactly.
xgen-IPA-106-create-method-request-has-no-readonly-fields
Create method Request object must not include fields with readOnly:true.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods on resource collection paths (non-singleton resources)
- Applies only to JSON content types
- Searches through the request schema to find any properties marked with readOnly attribute
- Fails if any readOnly properties are found in the request schema
xgen-IPA-106-create-method-response-code-is-201
Create methods must return a 201 Created response code.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods on resource collection paths (non-singleton resources)
- Verifies the 201 Created response code is present
- Fails if the method lacks a 201 Created response or defines a different 2xx status code
xgen-IPA-106-create-method-response-is-get-method-response
The response body of the Create method should consist of the same resource object returned by the Get method.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods on resource collection paths
- Applies only to JSON response content types
- Verifies that both Create and Get methods have schema references
- Confirms that the Create method 201 response schema reference matches the Get method response schema reference
- Ignores resources without a Get method
- Paths with
x-xgen-IPA-exceptionfor this rule are excluded from validation
xgen-IPA-106-readonly-resource-should-not-have-create-method
Read-only resources must not define the Create method.
Implementation details
Rule checks for the following conditions:
- Applies to POST methods on resource collection paths
- Checks if the resource is a read-only resource (all properties in GET response have readOnly:true)
- If a resource does not have a standard GET method, it is not considered read-only (cannot determine the resource schema)
- Fails if a Create method is defined on a read-only resource
- Operation objects with
x-xgen-IPA-exceptionfor this rule are excluded from validation
xgen-IPA-106-valid-operation-id
The Operation ID must start with the verb “create” and should be followed by a noun or compound noun.
The noun(s) in the Operation ID should be the collection identifiers from the resource identifier in singular form.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods that are not custom methods
- Confirms that the existing OperationId is compliant with generated IPA Compliant OperationId
Configuration
This rule includes two configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")
xgen-IPA-106-operation-id-length
The Operation ID should not be longer than 4 words. If the generated operation ID exceeds 4 words,
add an 'x-xgen-operation-id-override' extension with a shorter operation ID.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods that are not custom methods
- Verifies that the operation ID is not longer than 4 words
- If the operation ID is longer than 4 words, requires an 'x-xgen-operation-id-override' extension
- Can be exempted using 'x-xgen-IPA-exception' for APIs where long operation IDs are intentional
Configuration
This rule includes three configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")maxLength: The maximum number of words allowed in the operation ID (default: 4)
IPA-107
Rules are based on https://mongodb.github.io/ipa/107.
xgen-IPA-107-update-must-not-have-query-params
Update operations must not accept query parameters.
Implementation details
Validation checks the PATCH/PUT methods for single resource paths and singleton resources.
- Query parameters
envelopeandprettyare exempt from this rule - Operation objects with
x-xgen-IPA-exceptionfor this rule are excluded from validation
xgen-IPA-107-update-method-response-code-is-200
The Update method response status code should be 200 OK.
Implementation details
Validation checks the PATCH/PUT methods for single resource paths and singleton resources.
- Operation objects with
x-xgen-IPA-exceptionfor this rule are excluded from validation
xgen-IPA-107-update-method-response-is-get-method-response
The response body of the Update method should consist of the same resource object returned by the Get method.
Implementation details Rule checks for the following conditions:
- Applies only to single resource paths and singleton resources with JSON content types
- Ignores singleton resources and responses without a schema
- Validation ignores resources without a Get method
- Fails if the Get method doesn't have a schema reference or if the schemas don't match
- Paths with
x-xgen-IPA-exceptionfor this rule are excluded from validation
xgen-IPA-107-update-method-request-has-no-readonly-fields
Update method Request object must not include fields with readOnly:true.
Implementation details
Rule checks for the following conditions:
- Applies only to Update methods on single resource paths or singleton resources
- Applies only to JSON content types
- Searches through the request schema to find any properties marked with readOnly attribute
- Fails if any readOnly properties are found in the request schema
xgen-IPA-107-update-method-request-body-is-get-method-response
The request body must contain the resource being updated, i.e. the resource or parts of the resource returned by the Get method.
Implementation details
Validation checks the PATCH/PUT methods for single resource paths and singleton resources.
- Validation ignores resources without a Get method.
readOnly:trueproperties of Get method response will be ignored.writeOnly:trueproperties of Update method request will be ignored.- Property comparison is based on
typeandnamematching. oneOfanddiscriminatordefinitions must match exactly.
xgen-IPA-107-update-method-request-body-is-update-request-suffixed-object
The Update method request schema should reference an
UpdateRequest suffixed object.
Implementation details
Rule checks for the following conditions:
- Applies to PUT/PATCH methods on single resource paths and singleton resources
- Applies only to JSON content types
- Validation only applies to schema references to a predefined schema (not inline)
- Confirms the referenced schema name ends with "Request" suffix
xgen-IPA-107-readonly-resource-should-not-have-update-method
Read-only resources must not define the Update method.
Implementation details
Rule checks for the following conditions:
- Applies to PUT/PATCH methods on all resource paths
- Checks if the resource is a read-only resource (all properties in GET response have readOnly:true)
- If a resource does not have a standard GET method, it is not considered read-only (cannot determine the resource schema)
- Fails if an Update method is defined on a read-only resource
- Operation objects with
x-xgen-IPA-exceptionfor this rule are excluded from validation
xgen-IPA-107-valid-operation-id
The Operation ID must start with the verb “update” and should be followed by a noun or compound noun.
The noun(s) in the Operation ID should be the collection identifiers from the resource identifier in singular form.
If the resource is a singleton resource, the last noun may be the plural form of the collection identifier.
Implementation details
Rule checks for the following conditions:
- Applies only to PUT/PATCH methods that are not custom methods
- Confirms that the existing OperationId is compliant with generated IPA Compliant OperationId
Configuration
This rule includes two configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")
xgen-IPA-107-operation-id-length
The Operation ID should not be longer than 4 words. If the generated operation ID exceeds 4 words,
add an 'x-xgen-operation-id-override' extension with a shorter operation ID.
Implementation details
Rule checks for the following conditions:
- Applies only to PUT/PATCH methods that are not custom methods
- Verifies that the operation ID is not longer than 4 words
- If the operation ID is longer than 4 words, requires an 'x-xgen-operation-id-override' extension
- Can be exempted using 'x-xgen-IPA-exception' for APIs where long operation IDs are intentional
Configuration
This rule includes three configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")maxLength: The maximum number of words allowed in the operation ID (default: 4)
IPA-108
Rules are based on https://mongodb.github.io/ipa/108.
xgen-IPA-108-delete-response-should-be-empty
Delete method response should not have schema reference to object.
Implementation details
Rule checks for the following conditions:
- Applies to 204 responses in DELETE methods for single resource endpoints (with path parameters)
- Verifies that the response does not contain a schema property
- Fails if any content type in the response has a defined schema as reference
- Skips validation for collection endpoints (without path parameters)
xgen-IPA-108-delete-method-return-204-response
DELETE method must return 204 No Content.
Implementation details
Rule checks for the following conditions:
- Applies to all DELETE methods for single resource endpoints (with path parameters)
- Verifies the 204 No Content response code is present
- Fails if the method lacks a 204 No Content response or defines a different 2xx status code
- Ensures no other 2xx response codes are defined
- Fails if the 204 status code is missing or if other 2xx responses exist
- Skips validation for collection endpoints (without path parameters)
xgen-IPA-108-delete-request-no-body
DELETE method must not have request body.
Implementation details
Rule checks for the following conditions:
- Applies to all DELETE methods for single resource endpoints (with path parameters)
- Verifies that the operation object does not contain a requestBody property
- Fails if any requestBody is defined for the DELETE method
- Skips validation for collection endpoints (without path parameters)
xgen-IPA-108-readonly-resource-should-not-have-delete-method
Read-only resources must not define the Delete method.
Implementation details
Rule checks for the following conditions:
- Applies to DELETE methods on single resource paths and singleton resources
- Checks if the resource is a read-only resource (all properties in GET response have readOnly:true)
- If a resource does not have a standard GET method, it is not considered read-only (cannot determine the resource schema)
- Fails if a Delete method is defined on a read-only resource
- Operation objects with
x-xgen-IPA-exceptionfor this rule are excluded from validation
xgen-IPA-108-valid-operation-id
The Operation ID must start with the verb “delete” and should be followed by a noun or compound noun.
The noun(s) in the Operation ID should be the collection identifiers from the resource identifier in singular form.
Implementation details
Rule checks for the following conditions:
- Applies only to DELETE methods that are not custom methods
- Confirms that the existing OperationId is compliant with generated IPA Compliant OperationId
Configuration
This rule includes two configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")
xgen-IPA-108-operation-id-length
The Operation ID should not be longer than 4 words. If the generated operation ID exceeds 4 words,
add an 'x-xgen-operation-id-override' extension with a shorter operation ID.
Implementation details
Rule checks for the following conditions:
- Applies only to DELETE methods that are not custom methods
- Verifies that the operation ID is not longer than 4 words
- If the operation ID is longer than 4 words, requires an 'x-xgen-operation-id-override' extension
- Can be exempted using 'x-xgen-IPA-exception' for APIs where long operation IDs are intentional
Configuration
This rule includes three configuration options:
methodName: The verb to be used in the OperationIdsignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")maxLength: The maximum number of words allowed in the operation ID (default: 4)
IPA-109
Rules are based on https://mongodb.github.io/ipa/109.
xgen-IPA-109-custom-method-must-be-GET-or-POST
The HTTP method for custom methods must be GET or POST.
Implementation details
Rule checks for the following conditions:
- Applies only to paths containing custom method identifiers (with colon format)
- Verifies the HTTP methods used are either GET or POST
- Fails if any other HTTP methods are used (PUT, DELETE, PATCH, etc.)
- Fails if multiple valid methods are defined for the same custom method endpoint
xgen-IPA-109-custom-method-must-use-camel-case
The custom method must use camelCase format.
Implementation details
Rule checks for the following conditions:
- Applies only to paths containing custom method identifiers (with colon format)
- Extracts the method name portion following the colon
- Verifies the method name is not empty or blank
- Validates that the method name uses proper camelCase formatting
- Fails if the method name contains invalid casing (such as snake_case, PascalCase, etc.)
xgen-IPA-109-custom-method-identifier-format
Custom methods must be defined using a colon followed by the method name.
Implementation details
Rule checks for the following conditions:
- Identifies paths containing a colon (potential custom methods)
- Validates that the path follows proper custom method format
- Does not validate after the colon (xgen-IPA-109-custom-method-must-use-camel-case rule validates the method name)
- Fails if a slash appears before a colon
- Fails if multiple colons appear in the path
- Fails if other than an alphabetical character or a closing curly brace appears before a colon
xgen-IPA-109-valid-operation-id
The Operation ID must start with the custom method verb (the custom method path section delimited by the colon (:) character) and should be followed by a noun or compound noun.
If the custom Operation ID has a verb + noun, the Operation ID should end with the noun.
The noun(s) in the Operation ID should be the collection identifiers from the resource identifier.
The noun(s) in the Operation ID should be the collection identifiers from the resource identifier in singular form, where the last noun:
- Is in plural form if the method applies to a collection of resources
- Is in singular form if the method applies to a single resource
Implementation details
Rule checks for the following conditions:
- Applies only to paths containing custom method identifiers (with colon format)
- Confirms that the existing OperationId is compliant with generated IPA Compliant OperationId
Configuration
This rule includes one configuration options:
ignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")
xgen-IPA-109-operation-id-length
The Operation ID should not be longer than 4 words. If the generated operation ID exceeds 4 words,
add an 'x-xgen-operation-id-override' extension with a shorter operation ID.
Implementation details
Rule checks for the following conditions:
- Applies only to paths containing custom method identifiers (with colon format)
- Verifies that the operation ID is not longer than 4 words
- If the operation ID is longer than 4 words, requires an 'x-xgen-operation-id-override' extension
- Can be exempted using 'x-xgen-IPA-exception' for APIs where long operation IDs are intentional
Configuration
This rule includes two configuration options:
ignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")maxLength: The maximum number of words allowed in the operation ID (default: 4)
IPA-110
Rules are based on https://mongodb.github.io/ipa/110.
xgen-IPA-110-collections-use-paginated-prefix
APIs that return collections of resources must use a schema with the "Paginated" prefix.
Implementation details
Rule checks for the following conditions:
- Only applies to List methods (GET operations that return collections of resources)
- Checks if List method has a response schema defined
- Checks that the 200 response schema references a schema with a "Paginated" prefix
xgen-IPA-110-collections-response-define-results-array
The response for collections must define an array of results containing the paginated resource.
Implementation details
Rule checks for the following conditions:
- Only applies to List methods (GET operations that return collections of resources)
- Verifies the 200 response schema has the required results fields
xgen-IPA-110-collections-request-has-itemsPerPage-query-param
The request should support an integer itemsPerPage query parameter allowing users to specify the maximum number of results to return per page.
itemsPerPage must not be required
itemsPerPage default value should be 100.
Implementation details
Rule checks for the following conditions:
- Only applies to List methods (GET on resource collection paths)
- Verifies the operation includes itemsPerPage query parameter
- Verifies the itemsPerPage query parameter is not required
- Verifies the itemsPerPage query parameter has a default value of 100
xgen-IPA-110-collections-request-has-pageNum-query-param
The request should support an integer pageNum query parameter allowing users to specify the maximum number of results to return per page.
pageNum must not be required
pageNum default value should be 1.
Implementation details
Rule checks for the following conditions:
- Only applies to List methods (GET on resource collection paths)
- Verifies the operation includes pageNum query parameter
- Verifies the pageNum query parameter is not required
- Verifies the pageNum query parameter has a default value of 1
xgen-IPA-110-collections-request-includeCount-not-required
If the request supports an includeCount query parameter, it must not be required.
Implementation details
Rule checks for the following conditions:
- Only applies to List methods (GET on resource collection paths)
- Checks if includeCount query parameter exists
- If it exists, verifies the includeCount parameter is not required
xgen-IPA-110-collections-response-define-links-array
The response for collections should define a links array field, providing links to next and previous pages.
Implementation details
Rule checks for the following conditions:
- Only applies to List methods (GET operations that return collections of resources)
- Verifies the response schema includes a links field of type array
IPA-112
Rules are based on https://mongodb.github.io/ipa/112.
xgen-IPA-112-avoid-project-field-names
Schema field names should avoid using "project", "projects", or "projectId".
Implementation details
Rule checks for the following conditions:
- Searches through all schemas in the API definition
- Identifies property names that match "project" (case-insensitive)
- Ignores fields where prohibited words appear with specified words (e.g., "gcpProjectId")
- Reports any instances where these field names are used
- Suggests using "group", "groups", or "groupId" as alternatives
xgen-IPA-112-field-names-are-camel-case
Schema field names should be in camelCase format.
Implementation details
Rule checks for the following conditions:
- Searches through all schemas in the API definition
- Identifies property names that are not in camelCase format
- Reports any instances where these field names are not in camelCase format
xgen-IPA-112-boolean-field-names-avoid-is-prefix
Boolean field names should avoid the "is" prefix.
Implementation details
Rule checks for the following conditions:
- Applies only to properties with type 'boolean'
- Identifies property names that start with "is" followed by an uppercase letter
- Suggests using the direct adjective form instead (e.g., "disabled" instead of "isDisabled")
IPA-113
Rules are based on https://mongodb.github.io/ipa/113.
xgen-IPA-113-singleton-must-not-have-id
Singleton resources must not have a user-provided or system-generated ID.
Implementation details
Rule checks for the following conditions:
- Applies only to singleton resources that are identified as resource collection identifiers
- Checks that the resource has a GET method defined
- Examines all 2xx response schemas from the GET method
- Verifies that no schema contains 'id' or '_id' properties in their object definitions
- Fails if any response schema contains these identifier properties
xgen-IPA-113-singleton-must-not-have-delete-method
Singleton resources must not define the Delete standard method.
Implementation details
Rule checks for the following conditions:
- Applies only to singleton resources
- Checks that the resource does not have a DELETE method defined
xgen-IPA-113-singleton-should-have-update-method
Singleton resources should define the Update method. Validation for the presence of Get method is covered by IPA-104 (see xgen-IPA-104-resource-has-GET).
Implementation details
Rule checks for the following conditions:
- Applies only to singleton resources
- Excludes read-only singleton resources (where all properties in the GET response schema are marked as readOnly; for List responses, all properties in the items schema must be readOnly)
- Checks that the resource has the PUT and/or PATCH methods defined
xgen-IPA-113-reset-method-must-use-POST
The :reset custom method must use the POST HTTP method.
Implementation details
Rule checks for the following conditions:
- Applies only to paths ending with :reset
- Verifies that only POST method is defined
- Fails if GET or any other HTTP method is used
- Fails if multiple HTTP methods are defined for the same :reset endpoint
xgen-IPA-113-reset-method-must-not-have-request-body
The :reset custom method must not have a request body.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods on paths ending with :reset
- Verifies that the operation object does not contain a requestBody property
- Fails if any request body is defined
xgen-IPA-113-reset-method-must-return-200-OK
The :reset custom method must return a 200 OK response with the reset resource in the response body.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods on paths ending with :reset
- Verifies that a 200 OK response code is present
- Fails if the method lacks a 200 OK response or defines a different 2xx status code
- Verifies that the 200 response has a response body with schema
xgen-IPA-113-reset-method-response-is-get-method-response
The :reset custom method response must match the GET method response schema.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods on paths ending with :reset
- Applies only to JSON response content types
- Verifies that both :reset and GET methods have schema references
- Confirms that the :reset method 200 response schema reference matches the GET method response schema reference
- Ensures the reset resource returned is the same type as the singleton resource
xgen-IPA-113-reset-method-only-on-singleton-resources
The :reset custom method must only be defined on singleton resources.
Implementation details
Rule checks for the following conditions:
- Applies only to paths ending with :reset
- Verifies that the parent path (without :reset) is a singleton resource
- Uses existing isSingletonResource() helper function
- Fails if :reset is defined on a non-singleton resource
xgen-IPA-113-reset-method-not-on-readonly-singleton
Read-only singleton resources must not define a :reset custom method.
Implementation details
Rule checks for the following conditions:
- Applies only to paths ending with :reset
- Verifies that the parent singleton resource is not read-only
- Uses existing isReadOnlyResource() helper function
- Fails if the singleton resource has all properties marked as readOnly: true
xgen-IPA-113-reset-method-valid-operation-id
The :reset custom method must have a valid operation ID.
Implementation details
Rule checks for the following conditions:
- Applies only to POST methods on paths ending with :reset
- Confirms that the operation ID follows the pattern: reset{ResourceName}
- Uses existing operation ID validation infrastructure
Configuration
This rule includes a configuration option:
ignoreSingularizationList: Words that are allowed to maintain their assumed plurality (e.g., "Fts")
IPA-114
Rules are based on https://mongodb.github.io/ipa/114.
xgen-IPA-114-error-responses-refer-to-api-error
APIs must return ApiError when errors occur
Implementation details
This rule checks that all 4xx and 5xx error responses reference the ApiError schema.
xgen-IPA-114-api-error-has-bad-request-detail
ApiError schema should have badRequestDetail field with proper structure.
Implementation details
Rule checks that:
- ApiError schema has badRequestDetail field
- badRequestDetail must include an array of fields
- Each field must include description and field properties
- This rule does not allow exceptions
xgen-IPA-114-authenticated-endpoints-have-auth-errors
Authenticated endpoints must define 401 and 403 responses.
Implementation details
This rule checks that all authenticated endpoints (those without explicit 'security: []' and not containing '/unauth' in the path) include 401 and 403 responses.
xgen-IPA-114-parameterized-paths-have-404-not-found
Paths with parameters must define 404 responses.
Implementation details
This rule checks that all endpoints with path parameters (identified by '{param}' in the path) include a 404 response to handle the case when the requested resource is not found.
IPA-117
Rules are based on https://mongodb.github.io/ipa/117.
xgen-IPA-117-description
API producers must provide descriptions for Properties, Operations and Parameters.
Implementation details
Rule checks for description property in the following components:
- Info object
- Tags
- Operation objects
- Inline schema properties for operation object requests and responses
- Parameter objects (in operations and components)
- Schema properties The rule also fails if the description is an empty string.
xgen-IPA-117-description-starts-with-uppercase
Descriptions must start with Uppercase.
Implementation details
Rule checks the format of the description property in the following components:
- Info object
- Tags
- Operation objects
- Inline schema properties for operation object requests and responses
- Parameter objects (in operations and components)
- Schema properties
- Schemas
xgen-IPA-117-description-ends-with-period
Descriptions must end with a full stop(.).
Implementation details
Rule checks the format of the description property in the following components:
- Info object
- Tags
- Operation objects
- Inline schema properties for operation object requests and responses
- Parameter objects (in operations and components)
- Schema properties
- Schemas
The rule ignores descriptions that end with
|, i.e. inline markdown tables
xgen-IPA-117-description-must-not-use-html
Descriptions must not use raw HTML.
Implementation details
Rule checks the format of the descriptions for components:
- Info object
- Tags
- Operation objects
- Inline schema properties for operation object requests and responses
- Parameter objects (in operations and components)
- Schema properties
- Schemas The rule validates that the description content does not include opening and/or closing HTML tags.
xgen-IPA-117-description-should-not-use-inline-tables
Descriptions should not include inline tables as this may not work well with all tools, in particular generated client code.
Implementation details
Rule checks the format of the descriptions for components:
- Info object
- Tags
- Operation objects
- Inline schema properties for operation object requests and responses
- Parameter objects (in operations and components)
- Schema properties
- Schemas The rule validates that the description content does not include inline markdown tables.
xgen-IPA-117-description-should-not-use-inline-links
Descriptions should not include inline links.
Implementation details
Rule checks the format of the descriptions for components:
- Tags
- Operation objects
- Inline schema properties for operation object requests and responses
- Parameter objects (in operations and components)
- Schema properties
- Schemas
The rule validates that the description content does not include inline markdown links. The rule ignores HTML
<a>links - this is covered byxgen-IPA-117-description-must-not-use-html.
xgen-IPA-117-plaintext-response-must-have-example
For APIs that respond with plain text, for example CSV, API producers must provide an example. Some tools are not able to generate examples for such responses
Implementation details
- The rule only applies to 2xx responses
- The rule ignores JSON and YAML responses (passed as
allowedTypes) - The rule ignores responses with
format: 'binary'(i.e. file types) - The rule checks for the presence of the example property as a sibling to the
schemaproperty, or inside theschemaobject
xgen-IPA-117-objects-must-be-well-defined
Components of type "object" must be well-defined, i.e. have of one of the properties:
schemaexamplesexampleoneOf,anyOforallOfpropertiesadditionalProperties
Implementation details
The rule applies to the following components:
- Inline operation responses/request bodies (JSON only)
- Inline operation response/request body properties (JSON only)
- Inline operation response/request body array items (JSON only)
- Schemas defined in
components/schemas - Schema properties defined in
components/schemas itemsproperties defined incomponents/schemasThe rule is applied to the unresolved OAS, and ignores components with$refproperties. Specific paths can be ignored using theignoredPathsoption.
xgen-IPA-117-request-response-bodies-must-be-well-defined
Request and response bodies must be well-defined, i.e. include a schema to ensure that consumers understand the expected format of the request/response.
Implementation details
The rule applies to the following components:
- Operation request bodies
- Operation responses, except for:
- 202 Accepted responses
- DELETE method 2xx responses
- Custom method 2xx POST responses
These components must be described, i.e. has the schema property:
xgen-IPA-117-parameter-has-examples-or-schema
API producers must provide a well-defined schema or example(s) for parameters.
Implementation details
The rule checks for the presence of the schema, examples or example property in:
- Operation parameters
- Parameters defined in
components/parameters
xgen-IPA-117-operation-summary-format
Operation summaries must use Title Case, must not end with a period and must not use CommonMark.
Implementation details
The rule checks that the summary property of all operations are in Title Case.
Configuration
This rule includes two configuration options:
ignoreList: Words that are allowed to maintain their specific casing (e.g., "API", "AWS", "DNS")grammaticalWords: Common words that can remain lowercase in titles (e.g., "and", "or", "the")
xgen-IPA-117-get-operation-summary-starts-with
In operation summaries, use 'Return' instead of 'Get' or 'List'. For example "Return One Identity Provider".
Implementation details
- The rule checks that the
summaryproperty of get and list operations use the word 'Return' as the first word. - The rule only applies to get and list methods and ignores custom methods
Configuration
This rule includes a configuration option:
allowedStartVerbs: Allow list of verb that the operation summary can start with, defaults to['Return']
xgen-IPA-117-update-operation-summary-starts-with
In operation summaries, use 'Update' instead of 'Modify' or 'Change'. For example "Update One Identity Provider".
Implementation details
- The rule checks that the
summaryproperty of update operations use the word 'Update' as the first word. - The rule only applies to update methods and ignores custom methods
Configuration
This rule includes a configuration option:
allowedStartVerbs: Allow list of verb that the operation summary can start with, defaults to['Update']
xgen-IPA-117-create-operation-summary-starts-with
In operation summaries, use 'Create' when the operation is creating a resource, and use 'Add' when the resource itself isn't being created. For example "Create One Identity Provider" or "Add One MongoDB Cloud User to One Project".
Implementation details
- The rule checks that the
summaryproperty of create operations use the word 'Create' or 'Add' as the first word. - The rule only applies to create methods and ignores custom methods
Configuration
This rule includes a configuration option:
allowedStartVerbs: Allow list of verb that the operation summary can start with, defaults to['Create', 'Add']
xgen-IPA-117-delete-operation-summary-starts-with
In operation summaries, use 'Delete' when the operation is destroying a resource, and use 'Remove' when the resource itself isn't being destroyed. For example "Delete One Identity Provider" or "Remove One MongoDB Cloud User from One Project".
Implementation details
- The rule checks that the
summaryproperty of delete operations use the word 'Delete' or 'Remove' as the first word. - The rule only applies to delete methods and ignores custom methods
Configuration
This rule includes a configuration option:
allowedStartVerbs: Allow list of verb that the operation summary can start with, defaults to['Delete', 'Remove']
xgen-IPA-117-operation-summary-single-item-wording
API Producers must use "One" when referring to a single item instead of "a" or "specified".
Implementation details
- The rule checks that the
summaryproperty of operations does not use the words "a", "specified" or "provided" - This rule applies to all operations, including custom methods
Configuration
This rule includes a configuration option:
preferredWords: List of words that the operation summary should use for single items, defaults to['one']. Only used for error messagesforbiddenWords: List of words (lowercase) that the operation summary should not use, defaults to['a', 'specified']
IPA-118
Rules are based on https://mongodb.github.io/ipa/118.
xgen-IPA-118-no-additional-properties-false
Schemas must not use
additionalProperties: false
Implementation details
This rule checks that schemas don't restrict additional properties by setting additionalProperties: false.
Schemas without explicit additionalProperties settings (which default to true) or with additionalProperties set to true are compliant.
This rule checks all nested schemas, but only parent schemas can be marked for exception.
IPA-119
Rules are based on https://mongodb.github.io/ipa/119.
xgen-IPA-119-no-default-for-cloud-providers
When using a provider field or parameter, API producers should not define a default value.
This rule checks fields and parameters named "cloudProvider" and ensures they do not have a default value.
It also checks enum fields that might contain cloud provider values.
All cloudProviderEnumValues should be listed in the enum array.
IPA-121
Rules are based on https://mongodb.github.io/ipa/121.
xgen-IPA-121-date-time-fields-mention-iso-8601
Fields with format="date-time" should mention ISO 8601 and UTC in their description.
It collects adoption metrics at schema property level and parameter level
IPA-123
Rules are based on https://mongodb.github.io/ipa/123.
xgen-IPA-123-enum-values-must-be-upper-snake-case
Enum values must be UPPER_SNAKE_CASE.
Implementation details
Rule checks for the following conditions:
- Applies to all enum value arrays defined in the OpenAPI schema
- Resolves the schema object that contains the enum values
- Validates each enum value individually against the UPPER_SNAKE_CASE pattern
- Skips validation if the schema has an exception defined for this rule
xgen-IPA-123-allowable-enum-values-should-not-exceed-20
Allowable enum values should not exceed 20 entries.
Implementation details
Rule checks for the following conditions:
- Validates that each enum set has 20 or fewer values
- Skips validation if the schema has an exception defined for this rule
- This validation threshold can be adjusted by changing the functionOptions.maxEnumValues parameter
IPA-124
Rules are based on https://mongodb.github.io/ipa/124.
xgen-IPA-124-array-max-items
Array fields must have a
maxItems property defined to enforce an upper bound on the number of items (recommended max: 100). If the array field has the chance of being too large, the API should use a sub-resource instead.
Implementation details
Rule checks for the following conditions:
- All schema objects with type 'array' must have a
maxItemsproperty - The
maxItemsvalue must be lower than or equal to 100
Function options
- maxAllowedValue: Required integer parameter specifying the maximum allowed value for the `maxItems` property (100)
- ignore: Required array parameter listing property names to be exempted from validation
IPA-125
Rules are based on https://mongodb.github.io/ipa/125.
xgen-IPA-125-oneOf-must-have-discriminator
Each oneOf property must include a discriminator property to define the exact type.
Implementation details
Rule checks for the following conditions:
- Applies only to schemas with
oneOfcontaining references - Ensures a
discriminatorproperty is present with a validpropertyName - Validates that
discriminator.mappingcontains exactly the same number of entries asoneOfreferences - Validates that each
discriminator.mappingvalue matches a reference in theoneOfarray - Ignores
oneOfdefinitions with inline schemas
Matching Logic
- The
discriminator.mappingmust have the same number of entries as there are references in theoneOfarray - Each value in the
discriminator.mappingmust match one of the$refvalues in theoneOfarray - Each
$refin theoneOfarray must have a corresponding entry in thediscriminator.mapping - Example:
This is valid because there are exactly 2 mappings for 2 oneOf references, and all values match.oneOf: - $ref: '#/components/schemas/Dog' - $ref: '#/components/schemas/Cat' discriminator: propertyName: type mapping: dog: '#/components/schemas/Dog' cat: '#/components/schemas/Cat'
xgen-IPA-125-oneOf-no-base-types
API producers should not use oneOf with different base types like integer, string, boolean, or number or references at the same time.
Implementation details
Rule checks for the following conditions:
- Applies to schemas with
oneOfarrays - Ensures no mixing of base types with references
- Ensures no multiple different base types in the same oneOf
- Base types considered are: integer, string, boolean, number
- Using the same base type multiple times is allowed (e.g., multiple string enums)
Rationale
Using oneOf with multiple primitive types can lead to ambiguity and validation problems. Clients may not be able to properly determine which type to use in which context. Instead, use more specific object types with clear discriminators.
xgen-IPA-125-oneOf-schema-property-same-type
If multiple
oneOf models define a property with the same name, that property must have the same base type or schema in each model
Implementation details
Rule checks for the following conditions:
- Applies only to object type schemas with
oneOf - Ensures that if a property is defined in multiple
oneOfschemas, it must have the same type in each schema (base type or object schema)
xgen-IPA-125-discriminator-must-accompany-oneOf-anyOf-allOf
Each discriminator property must be accompanied by a
oneOf, anyOf or allOf property
Implementation details
- Rule checks that a
discriminatorproperty has aoneOf,anyOforallOfsibling
IPA-126
Rules are based on https://mongodb.github.io/ipa/126.
xgen-IPA-126-tag-names-should-use-title-case
Tag names in the OpenAPI specification should use Title Case.
Implementation details
Rule checks for the following conditions:
- All tag names defined in the OpenAPI tags object should use Title Case
- Title Case means each word starts with an uppercase letter, and the rest are lowercase
- Certain abbreviations (like "API", "AWS", etc.) in the ignoreList are allowed to maintain their casing
- Grammatical words (like "and", "or", "the", etc.) are allowed to be all lowercase
Configuration
This rule includes two configuration options:
ignoreList: Words that are allowed to maintain their specific casing (e.g., "API", "AWS", "DNS")grammaticalWords: Common words that can remain lowercase in titles (e.g., "and", "or", "the")