# Constant MaxProperties

Constant validation swagger schema input collections ajv-errors
Module
import { MaxProperties } from "@tsed/schema"
Source/packages/specs/schema/src/types/decorators/collections/maxProperties.ts

# Overview

const MaxProperties: import("../../utils/withErrorMsg").ErrorChainedDecorator<(maxProperties: number) => (...args: any[]) => any>;

# Description

An object instance is valid against maxProperties if its number of properties is less than, or equal to, the value of this keyword.

WARNING

The value of this keyword MUST be a non-negative integer.

WARNING

This decorator will be removed in v7. For v6 user, use MaxProperties from @tsed/schema instead of @tsed/common.

# Example

# On prop

class Model {
   @MaxProperties(10)
   property: any;
}
1
2
3
4

Will produce:

{
  "type": "object",
  "properties": {
    "property": {
      "type": "any",
      "maxProperties": 10
    }
  }
}
1
2
3
4
5
6
7
8
9

# On class

@MaxProperties(10)
class Model {
}
1
2
3

Will produce:

{
  "type": "object",
  "maxProperties": 10
}
1
2
3
4

# On Parameter


class Model {
  method(@Any() @MaxProperties(10) obj: any){}
}
1
2
3
4