---
title: IS_VALID_JSON_SCHEMA
url: https://www.tines.com/docs/formulas/functions/is-valid-json-schema/
kind: formula-function
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/docs/llms.txt) › [Formulas](https://www.tines.com/llm/docs/formulas.md) › [Functions](https://www.tines.com/llm/docs/formulas/functions.md)*

# IS_VALID_JSON_SCHEMA

*[View on tines.com](https://www.tines.com/docs/formulas/functions/is-valid-json-schema/)*

Returns true if the object provided matches the provided JSON schema, using the [JSON Schema syntax](https://json-schema.org/).

**Categories:** Objects

## Syntax

```
IS_VALID_JSON_SCHEMA(object, any)
```

## Examples

### Example 1

Input:

```json
{
  "schema": {
    "type": "object",
    "properties": {
      "abc": {
        "type": "integer",
        "minimum": 11
      }
    }
  },
  "my_action": {
    "value1": {
      "abc": 11
    }
  }
}
```

Formula:

```
IS_VALID_JSON_SCHEMA(schema, my_action.value1)
```

Output:

```json
{
  "value1": true
}
```
