# SPDX-License-Identifier: Apache-2.0
import pytest
@pytest.fixture
def sample_regex():
return (r"((25[0-5]|(2[0-4]|1\d|[1-9]|)\d)\.){3}"
r"(25[0-5]|(2[0-4]|1\d|[1-9]|)\d)")
def sample_json_schema():
return {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"age": {
"type": "integer"
"skills": {
"type": "array",
"items": {
"type": "string",
"maxLength": 10
"minItems": 3
"work_history": {
"company": {
"duration": {
"type": "number"
"position": {
}
"required": ["company", "position"]
"required": ["name", "age", "skills", "work_history"]