zones_string_constraint

String constraint.

APIs.ioEngineeringPlatform

Properties

Name Type Description
operator object The matches operator can use asterisks and pipes as wildcard and 'or' operators.
value string The value to apply the operator to.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-zones-string-constraint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/zones_string_constraint",
  "title": "zones_string_constraint",
  "description": "String constraint.",
  "properties": {
    "operator": {
      "default": "contains",
      "description": "The matches operator can use asterisks and pipes as wildcard and 'or' operators.",
      "enum": [
        "matches",
        "contains",
        "equals",
        "not_equal",
        "not_contain"
      ]
    },
    "value": {
      "description": "The value to apply the operator to.",
      "type": "string"
    }
  },
  "required": [
    "operator",
    "value"
  ],
  "type": "object"
}