Initial commit

This commit is contained in:
Julien Nahum
2022-09-20 21:59:52 +02:00
commit f8e6cd4dd6
479 changed files with 77078 additions and 0 deletions

View File

@@ -0,0 +1,402 @@
{
"email": {
"comparators": {
"equals": {
"expected_type": "string"
},
"does_not_equal": {
"expected_type": "string"
},
"contains": {
"expected_type": "string"
},
"does_not_contain": {
"expected_type": "string"
},
"starts_with": {
"expected_type": "string"
},
"ends_with": {
"expected_type": "string"
},
"is_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"is_not_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
}
}
},
"url": {
"comparators": {
"equals": {
"expected_type": "string"
},
"does_not_equal": {
"expected_type": "string"
},
"contains": {
"expected_type": "string"
},
"does_not_contain": {
"expected_type": "string"
},
"starts_with": {
"expected_type": "string"
},
"ends_with": {
"expected_type": "string"
},
"is_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"is_not_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
}
}
},
"phone_number": {
"comparators": {
"equals": {
"expected_type": "string"
},
"does_not_equal": {
"expected_type": "string"
},
"contains": {
"expected_type": "string"
},
"does_not_contain": {
"expected_type": "string"
},
"starts_with": {
"expected_type": "string"
},
"ends_with": {
"expected_type": "string"
},
"is_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"is_not_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
}
}
},
"text": {
"comparators": {
"equals": {
"expected_type": "string"
},
"does_not_equal": {
"expected_type": "string"
},
"contains": {
"expected_type": "string"
},
"does_not_contain": {
"expected_type": "string"
},
"starts_with": {
"expected_type": "string"
},
"ends_with": {
"expected_type": "string"
},
"is_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"is_not_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
}
}
},
"number": {
"comparators": {
"equals": {
"expected_type": "number"
},
"does_not_equal": {
"expected_type": "number"
},
"greater_than": {
"expected_type": "number"
},
"less_than": {
"expected_type": "number"
},
"greater_than_or_equal_to": {
"expected_type": "number"
},
"less_than_or_equal_to": {
"expected_type": "number"
},
"is_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"is_not_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
}
}
},
"checkbox": {
"comparators": {
"equals": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"does_not_equal": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
}
}
},
"select": {
"comparators": {
"equals": {
"expected_type": "string"
},
"does_not_equal": {
"expected_type": "string"
},
"is_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"is_not_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
}
}
},
"multi_select": {
"comparators": {
"contains": {
"expected_type": "object",
"format": {
"type": "uuid"
}
},
"does_not_contain": {
"expected_type": "object",
"format": {
"type": "uuid"
}
},
"is_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"is_not_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
}
}
},
"date": {
"comparators": {
"equals": {
"expected_type": "string",
"format": {
"type": "date"
}
},
"before": {
"expected_type": "string",
"format": {
"type": "date"
}
},
"after": {
"expected_type": "string",
"format": {
"type": "date"
}
},
"on_or_before": {
"expected_type": "string",
"format": {
"type": "date"
}
},
"on_or_after": {
"expected_type": "string",
"format": {
"type": "date"
}
},
"is_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"is_not_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"past_week": {
"expected_type": "object",
"format": {
"type": "empty",
"values": "{}"
}
},
"past_month": {
"expected_type": "object",
"format": {
"type": "empty",
"values": "{}"
}
},
"past_year": {
"expected_type": "object",
"format": {
"type": "empty",
"values": "{}"
}
},
"next_week": {
"expected_type": "object",
"format": {
"type": "empty",
"values": "{}"
}
},
"next_month": {
"expected_type": "object",
"format": {
"type": "empty",
"values": "{}"
}
},
"next_year": {
"expected_type": "object",
"format": {
"type": "empty",
"values": "{}"
}
}
}
},
"files": {
"comparators": {
"is_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
},
"is_not_empty": {
"expected_type": "boolean",
"format": {
"type": "enum",
"values": [
true
]
}
}
}
}
}

File diff suppressed because it is too large Load Diff