diff --git a/public/data/getting-started-examples/instances/enumerated-ok.json b/public/data/getting-started-examples/instances/enumerated-ok.json index 6255bcc09..4ad5e5aed 100644 --- a/public/data/getting-started-examples/instances/enumerated-ok.json +++ b/public/data/getting-started-examples/instances/enumerated-ok.json @@ -1,3 +1,3 @@ { - "code": "ABC-123" + "data": [1, 2, 3] } \ No newline at end of file diff --git a/public/data/getting-started-examples/instances/regex-ok.json b/public/data/getting-started-examples/instances/regex-ok.json index 6255bcc09..21fc33f87 100644 --- a/public/data/getting-started-examples/instances/regex-ok.json +++ b/public/data/getting-started-examples/instances/regex-ok.json @@ -1,3 +1,3 @@ { "code": "ABC-123" -} \ No newline at end of file +} diff --git a/public/data/getting-started-examples/schemas/default-extended.json b/public/data/getting-started-examples/schemas/default-extended.json index 8ff9cc558..769c181b6 100644 --- a/public/data/getting-started-examples/schemas/default-extended.json +++ b/public/data/getting-started-examples/schemas/default-extended.json @@ -48,4 +48,4 @@ } }, "required": ["productId", "productName", "price"] -} \ No newline at end of file +} diff --git a/public/data/getting-started-examples/schemas/enumerated.json b/public/data/getting-started-examples/schemas/enumerated.json index c7e9e1588..4d335465b 100644 --- a/public/data/getting-started-examples/schemas/enumerated.json +++ b/public/data/getting-started-examples/schemas/enumerated.json @@ -8,4 +8,4 @@ "enum": [42, true, "hello", null, [1, 2, 3]] } } -} \ No newline at end of file +}