Fenergo Nebula Policy Query 3.0

Fenergo Nebula Policy Query — OpenAPI 3.0.4 contract published by Fenergo for the policyquery service of the Fen-X SaaS platform, carrying 2 path(s) and 2 operation(s). Harvested verbatim from Fenergo's own published specification endpoint.

Operations 2

POST /api/v3/requirements-in-scope Get requirements in scope #
POST /api/v3/requirements-in-scope/search Search requirements #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/policyquery-v3-0"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

fenergo-policyquery-v3-0-openapi.json Raw ↑
{
  "openapi": "3.0.4",
  "info": {
    "title": "Fenergo Nebula Policy Query",
    "description": "Policy Query API is part of FenX eco-system to query for Requirement Sets, Requirements, Data Groups and Data Group Fields Instances. All the operations require valid access token obtained from Identity service.",
    "version": "3.0"
  },
  "servers": [
    {
      "url": "/policyquery"
    }
  ],
  "paths": {
    "/api/v3/requirements-in-scope": {
      "post": {
        "tags": [
          "RequirementsInScope"
        ],
        "summary": "Get requirements in scope",
        "description": "\nReturns deduplicated requirements that are in scope for a given search criteria.<br /><br /><b>Required permissions:</b><br />Following permissions are required: PolicySearch",
        "operationId": "GetRequirementsInScopeV3",
        "parameters": [
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "requestBody": {
          "description": "Evaluated Requirements in scope request with a set of criteria to search",
          "content": {
            "application/json": {
              "schema": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/RequirementsInScopeRequestV2DtoServiceRequest"
                  }
                ],
                "description": "Service request data"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success. List of evaluated requirements is returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RequirementDtoListServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad request. The request has missing/invalid values",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Not Found",
                      "type": "Error",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "500": {
            "description": "Internal server exception. Please, contact your provider.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": null,
                  "messages": [
                    {
                      "message": "Internal server exception. Please, contact your provider.",
                      "type": "Error",
                      "errorCode": "INTERNAL_SERVER_ERROR"
                    }
                  ]
                }
              }
            }
          },
          "410": {
            "description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StringServiceResponse"
                },
                "example": {
                  "data": null,
                  "messages": [
                    {
                      "message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
                      "type": "Error",
                      "errorCode": "OBSOLETE_ENDPOINT"
                    }
                  ]
                }
              }
            }
          }
        }
      }
    },
    "/api/v3/requirements-in-scope/search": {
      "post": {
        "tags": [
          "RequirementsInScope"
        ],
        "summary": "Search requirements",
        "description": "\nReturns requirements that are in scope for a given search criteria.<br /><br /><b>Required permissions:</b><br />Following permissions are required: PolicySearch",
        "operationId": "SearchRequirements",
        "parameters": [
          {
            "name": "X-TENANT-ID",
            "in": "header",
            "description": "The UiD of the tenant representing organization",
            "required": true,
            "schema": {
              "type": "string"
            },
            "example": "b11f8be3-f29b-4959-8964-956d4af7c468"
          }
        ],
        "requestBody": {
          "description": "Requirements in scope request with a set of criteria to search",
          "content": {
            "application/json": {
              "schema": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/SearchRequirementsDtoServiceRequest"
                  }
                ],
                "description": "Service request data"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Success. List of requirements is returned",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RequirementDtoListServiceResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad request. The request has missing/invalid values",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceResponse"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Not Found",
                      "type": "Error",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "401": {
            "description": "User is not authorized to perform this request",
            "content": {
              "application/json": {
                "example": {
                  "message": "Unauthorized"
                }
              }
            }
          },
          "403": {
            "description": "Access to resource is forbidden.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": { },
                  "messages": [
                    {
                      "message": "Access denied. Following permissions are required: Permission1, Permission2",
                      "type": "Forbidden",
                      "errorCode": "Error Code"
                    }
                  ]
                }
              }
            }
          },
          "500": {
            "description": "Internal server exception. Please, contact your provider.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ObjectServiceResponse"
                },
                "example": {
                  "data": null,
                  "messages": [
                    {
                      "message": "Internal server exception. Please, contact your provider.",
                      "type": "Error",
                      "errorCode": "INTERNAL_SERVER_ERROR"
                    }
                  ]
                }
              }
            }
          },
          "410": {
            "description": "Endpoint marked as deprecated was terminated. This response will be present only if the endpoint was marked as deprecated and has reached the sunset date. During the deprecation period, the API will include additional 'sunset' and 'deprecation' headers.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StringServiceResponse"
                },
                "example": {
                  "data": null,
                  "messages": [
                    {
                      "message": "This endpoint is obsolete and was terminated on yyyy-MM-dd",
                      "type": "Error",
                      "errorCode": "OBSOLETE_ENDPOINT"
                    }
                  ]
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "AccessLayerDto": {
        "type": "object",
        "properties": {
          "geographic": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "businessRelated": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "BasicRuleDto": {
        "type": "object",
        "properties": {
          "active": {
            "type": "boolean",
            "description": "Validation rule active flag",
            "example": true
          },
          "message": {
            "type": "string",
            "description": "Validation rule error message",
            "nullable": true,
            "example": "Validation error occurred"
          }
        },
        "additionalProperties": false,
        "description": "Request DTO representing basic validation rule metadata"
      },
      "BasicRuleDto2": {
        "type": "object",
        "properties": {
          "errorMessage": {
            "type": "string",
            "description": "Validation rule error message",
            "nullable": true,
            "example": "Validation error occurred"
          }
        },
        "additionalProperties": false,
        "description": "Request DTO representing basic validation rule metadata"
      },
      "BasicRuleDtoConditionalValidationRuleDto": {
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean",
            "description": "Validation rule active flag",
            "example": true
          },
          "staticRule": {
            "allOf": [
              {
                "$ref": "#/components/schemas/BasicRuleDto2"
              }
            ],
            "description": "Static validation rule always applied when active",
            "nullable": true
          },
          "dynamicRules": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BasicRuleDtoConditionalValueDto"
            },
            "description": "Conditional validation rules",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "BasicRuleDtoConditionalValueDto": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The ID of the condition",
            "format": "uuid",
            "example": "118313c6-91e6-4b05-a537-5a1ab906418f"
          },
          "name": {
            "type": "string",
            "description": "The name of the condition",
            "nullable": true,
            "example": "Company-type only"
          },
          "description": {
            "type": "string",
            "description": "The description of the condition",
            "nullable": true,
            "example": "Applicable only when EntityType=Company"
          },
          "logicalOperation": {
            "type": "string",
            "description": "Logical operation on the Fenergo.Nebula.Platform.LogicEngine.Model.Dto.ConditionDto.Operands collection",
            "nullable": true,
            "example": "AND"
          },
          "operands": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ConditionDefinitionDto"
            },
            "description": "Collection of operands for given condition. These might contain additional, nested conditions of type Fenergo.Nebula.Platform.LogicEngine.Model.Dto.ConditionDefinitionDto",
            "nullable": true
          },
          "value": {
            "allOf": [
              {
                "$ref": "#/components/schemas/BasicRuleDto2"
              }
            ],
            "description": "Request DTO representing basic validation rule metadata",
            "nullable": true
          },
          "priority": {
            "type": "integer",
            "description": "Priority of the value in case when multiple conditional values are evaluated",
            "format": "int32",
            "example": 1
          }
        },
        "additionalProperties": false
      },
      "BasicRuleDtoValidationRuleDto": {
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean",
            "description": "Validation rule active flag",
            "example": true
          },
          "staticRule": {
            "allOf": [
              {
                "$ref": "#/components/schemas/BasicRuleDto2"
              }
            ],
            "description": "Static validation rule always applied when active",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CollectionMaximumCountRuleDto": {
        "type": "object",
        "properties": {
          "active": {
            "type": "boolean",
            "description": "Validation rule active flag",
            "example": true
          },
          "message": {
            "type": "string",
            "description": "Validation rule error message",
            "nullable": true,
            "example": "Validation error occurred"
          },
          "requiredTypesMaxCount": {
            "type": "object",
            "additionalProperties": {
              "type": "integer",
              "format": "int32"
            },
            "description": "Dictionary of required Primary Data Group Field values with maximum count",
            "nullable": true,
            "example": {
              "Registered": 1
            }
          },
          "overallMaximumCount": {
            "type": "integer",
            "description": "Overall maximum count",
            "format": "int32",
            "nullable": true,
            "example": 1
          }
        },
        "additionalProperties": false,
        "description": "Request DTO representing collection maximum count validation rule metadata"
      },
      "CollectionMaximumCountRuleDto2": {
        "type": "object",
        "properties": {
          "errorMessage": {
            "type": "string",
            "description": "Validation rule error message",
            "nullable": true,
            "example": "Validation error occurred"
          },
          "requiredTypesMaxCount": {
            "type": "object",
            "additionalProperties": {
              "type": "integer",
              "format": "int32"
            },
            "description": "Dictionary of required Primary Data Group Field values with maximum count",
            "nullable": true,
            "example": {
              "Registered": 1
            }
          },
          "overallMaximumCount": {
            "type": "integer",
            "description": "Overall maximum count",
            "format": "int32",
            "nullable": true,
            "example": 1
          }
        },
        "additionalProperties": false,
        "description": "Request DTO representing collection maximum count validation rule metadata"
      },
      "CollectionMaximumCountRuleDtoValidationRuleDto": {
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean",
            "description": "Validation rule active flag",
            "example": true
          },
          "staticRule": {
            "allOf": [
              {
                "$ref": "#/components/schemas/CollectionMaximumCountRuleDto2"
              }
            ],
            "description": "Static validation rule always applied when active",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "CollectionMinimumCountRuleDto": {
        "type": "object",
        "properties": {
          "active": {
            "type": "boolean",
            "description": "Validation rule active flag",
            "example": true
          },
          "message": {
            "type": "string",
            "description": "Validation rule error message",
            "nullable": true,
            "example": "Validation error occurred"
          },
          "requiredTypesMinCount": {
            "type": "object",
            "additionalProperties": {
              "type": "integer",
              "format": "int32"
            },
            "description": "Dictionary of required Primary Data Group Field values with minimum count",
            "nullable": true,
            "example": {
              "Registered": 1
            }
          },
          "overallMinimumCount": {
            "type": "integer",
            "description": "Overall minimum count",
            "format": "int32",
            "example": 1
          }
        },
        "additionalProperties": false,
        "description": "Request DTO representing collection minimum count validation rule metadata"
      },
      "CollectionMinimumCountRuleDto2": {
        "type": "object",
        "properties": {
          "errorMessage": {
            "type": "string",
            "description": "Validation rule error message",
            "nullable": true,
            "example": "Validation error occurred"
          },
          "requiredTypesMinCount": {
            "type": "object",
            "additionalProperties": {
              "type": "integer",
              "format": "int32"
            },
            "description": "Dictionary of required Primary Data Group Field values with minimum count",
            "nullable": true,
            "example": {
              "Registered": 1
            }
          },
          "overallMinimumCount": {
            "type": "integer",
            "description": "Overall minimum count",
            "format": "int32",
            "example": 1
          }
        },
        "additionalProperties": false,
        "description": "Request DTO representing collection minimum count validation rule metadata"
      },
      "CollectionMinimumCountRuleDtoValidationRuleDto": {
        "type": "object",
        "properties": {
          "isActive": {
            "type": "boolean",
            "description": "Validation rule active flag",
            "example": true
          },
          "staticRule": {
            "allOf": [
              {
                "$ref": "#/components/schemas/CollectionMinimumCountRuleDto2"
              }
            ],
            "description": "Static validation rule always applied when active",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ConditionDefinitionDto": {
        "type": "object",
        "properties": {
          "fieldName": {
            "type": "string",
            "description": "Name of the field to evaluate",
            "nullable": true,
            "example": "EntityType"
          },
          "value": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "List of values",
            "nullable": true
          },
          "valueId": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "List of value ids",
            "nullable": true
          },
          "valueType": {
            "type": "string",
            "description": "Type of the value",
            "nullable": true,
            "example": "text"
          },
          "dataSource": {
            "type": "string",
            "description": "Data source from which field is retrieved. If empty then Entity Data properties will be used.",
            "nullable": true,
            "example": "entityDataMetadata"
          },
          "operation": {
            "type": "string",
            "description": "Logical operation to be performed to match the values",
            "nullable": true,
            "example": "equal"
          },
          "logicalOperation": {
            "type": "string",
            "description": "Logical operation to be performed on the operands collection",
            "nullable": true,
            "example": "AND"
          },
          "operands": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ConditionDefinitionDto"
            },
            "description": "Collection of operands for given condition. These might contain additional, nested conditions of type Fenergo.Nebula.Platform.LogicEngine.Model.Dto.ConditionDefinitionDto",
            "nullable": true
          },
          "valueField": {
            "allOf": [
              {
                "$ref": "#/components/schemas/ValueField"
              }
            ],
            "description": "Field value used for conditional limit validation",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "description": "Represents condition"
      },
      "ConditionDto": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The ID of the condition",
            "format": "uuid",
            "example": "118313c6-91e6-4b05-a537-5a1ab906418f"
          },
          "name": {
            "type": "string",
            "description": "The name of the condition",
            "nullable": true,
            "example": "Company-type only"
          },
          "description": {
            "type": "string",
            "description": "The description of the condition",
            "nullable": true,
            "example": "Applicable only when EntityType=Company"
          },
          "logicalOperation": {
            "type": "string",
            "description": "Logical operation on the Fenergo.Nebula.Platform.LogicEngine.Model.Dto.ConditionDto.Operands collection",
            "nullable": true,
            "example": "AND"
          },
          "operands": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ConditionDefinitionDto"
            },
            "description": "Collection of operands for given condition. These might contain additional, nested conditions of type Fenergo.Nebula.Platform.LogicEngine.Model.Dto.ConditionDefinitionDto",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "description": "Represents condition root"
      },
      "ConditionalValueDto": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The ID of the condition",
            "format": "uuid",
            "example": "118313c6-91e6-4b05-a537-5a1ab906418f"
          },
          "name": {
            "type": "string",
            "description": "The name of the condition",
            "nullable": true,
            "example": "Company-type only"
          },
          "description": {
            "type": "string",
            "description": "The description of the condition",
            "nullable": true,
            "example": "Applicable only when EntityType=Company"
          },
          "logicalOperation": {
            "type": "string",
            "description": "Logical operation on the Fenergo.Nebula.Platform.LogicEngine.Model.Dto.ConditionDto.Operands collection",
            "nullable": true,
            "example": "AND"
          },
          "operands": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ConditionDefinitionDto"
            },
            "description": "Collection of operands for given condition. These might contain additional, nested conditions of type Fenergo.Nebula.Platform.LogicEngine.Model.Dto.ConditionDefinitionDto",
            "nullable": true
          },
          "value": {
            "type": "string",
            "description": "Value that should be returned when conditions are met",
            "nullable": true,
            "example": "Relationship Manager"
          },
          "priority": {
            "type": "integer",
            "description": "Priority of the value in case when multiple conditional values are evaluated",
            "format": "int32",
            "example": 1
          },
          "valueId": {
            "type": "string",
            "description": "Value Id that should be returned when conditions are met",
            "nullable": true,
            "example": "RM"
          }
        },
        "additionalProperties": false
      },
      "DataFieldDto": {
        "type": "object",
        "properties": {
          "propertyName": {
            "type": "string",
            "description": "Property name",
            "nullable": true,
            "example": "firstName"
          },
          "propertyType": {
            "type": "string",
            "description": "Property type",
            "nullable": true,
            "example": "text"
          },
          "propertyTypeId": {
            "type": "string",
            "description": "Property type id",
            "format": "uuid",
            "nullable": true,
            "example": "ab92ecbc-bd77-494b-acad-3d2fb0b8136c"
          },
          "linkChildFieldPropertyName": {
            "type": "string",
            "description": "Linked child field property name",
            "nullable": true,
            "example": "productCategory"
          },
          "linkedParentFieldPropertyName": {
            "type": "string",
            "description": "Linked Parent field property name",
            "nullable": true,
            "example": "productCategory"
          },
          "externalSearchApiProviderId": {
            "type": "string",
            "description": "External search api provider id",
            "format": "uuid",
            "nullable": true,
            "example": "ab92ecbc-bd77-494b-acad-3d2fb0b8136c"
          },
          "propertyTypeVersion": {
            "type": "integer",
            "description": "Property version",
            "format": "int32",
            "nullable": true,
            "deprecated": true
          },
          "formulaSchema": {
            "allOf": [
              {
                "$ref": "#/components/schemas/NumberFormulaSchemaDto"
              }
            ],
            "description": "Number formula schema",
            "nullable": true
          },
          "dateTimePeriodFormulaSchema": {
            "allOf": [
              {
                "$ref": "#/components/schemas/DateTimePeriodFormulaSchemaDto"
              }
            ],
            "description": "Date formula schema",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "description": "Response DTO representing data field data"
      },
      "DataValidationRulesDto": {
        "type": "object",
        "properties": {
          "mandatory": {
            "allOf": [
              {
                "$ref": "#/components/schemas/BasicRuleDtoConditionalValidationRuleDto"
              }
            ],
            "description": "Mandatory Rule - does not allow empty value",
            "nullable": true
          },
          "specialCharacters": {
            "allOf": [
              {
                "$ref": "#/components/schemas/SpecialCharactersRuleDtoValidationRuleDto"
              }
            ],
            "description": "Special characters validation rule - does not allow special characters,\nbut allows define array of characters which can be ignored by the validation",
            "nullable": true
          },
          "noNumbers": {
            "allOf": [
              {
                "$ref": "#/components/schemas/BasicRuleDtoValidationRuleDto"
              }
            ],
            "description": "Validation rule that does not allow numbers",
            "nullable": true
          },
          "onlyInteger": {
            "allOf": [
              {
                "$ref": "#/components/schemas/BasicRuleDtoValidationRuleDto"
              }
            ],
            "description": "Validation rule that allows only integers",
            "nullable": true
          },
          "noNegative": {
            "allOf": [
              {
                "$ref": "#/components/schemas/BasicRuleDtoValidationRuleDto"
              }
            ],
            "description": "Validation rule that does not allow negative numbers",
            "nullable": true
          },
          "onlyDecimal": {
            "allOf": [
              {
                "$ref": "#/components/schemas/BasicRuleDtoValidationRuleDto"
              }
            ],
            "description": "Validation rule that allows numbers up to two decimal places",
            "nullable": true
          },
          "regex": {
            "allOf": [
              {
                "$ref": "#/components/schemas/RegexRuleDtoConditionalValidationRuleDto"
              }
            ],
            "description": "Validation rule that validates the value against provided regex",
            "nullable": true
          },
          "characterLimit": {
            "allOf": [
              {
                "$ref": "#/components/schemas/ValueLimitRuleDtoValidationRuleDto"
              }
            ],
            "description": "Validation rule that allows to set minimum and maximum count of characters",
            "nullable": true
          },
          "numberLimit": {
            "allOf": [
              {
                "$ref": "#/components/schemas/ValueLimitRuleDtoValidationRuleDto"
              }
            ],
            "description": "Validation rule that allows to set number range",
            "nullable": true
          },
          "noFutureDates": {
            "allOf": [
              {
                "$ref": "#/components/schemas/BasicRuleDtoValidationRuleDto"
              }
            ],
            "description": "Validation rule that does not allow future dates",
            "nullable": true
          },
          "noPastDate

# --- truncated at 32 KB (96 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/fenergo/refs/heads/main/openapi/fenergo-policyquery-v3-0-openapi.json