Amazon Cognito · Schema

NumberAttributeConstraintsType

The minimum and maximum values of an attribute that is of the number data type.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
MinValue object
MaxValue object
View JSON Schema on GitHub

JSON Schema

user-pools-number-attribute-constraints-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-number-attribute-constraints-type-schema.json",
  "title": "NumberAttributeConstraintsType",
  "description": "The minimum and maximum values of an attribute that is of the number data type.",
  "type": "object",
  "properties": {
    "MinValue": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The minimum value of an attribute that is of the number data type."
        }
      ]
    },
    "MaxValue": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The maximum value of an attribute that is of the number data type."
        }
      ]
    }
  }
}