changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "match_count": {
+ "type": "number"
+ },
+ "matched": {
+ "description": "Whether the pattern matched at all.",
+ "type": "boolean"
+ },
+ "matches": {
+ "description": "Each match with its start index and captured groups.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "groups": {
+ "items": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": "array"
+ },
+ "index": {
+ "type": "number"
+ },
+ "match": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "index",
+ "match",
+ "groups"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "truncated": {
+ "description": "True if results were capped at 100.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "matched",
+ "match_count",
+ "truncated",
+ "matches"
+ ],
+ "type": "object"
+}