-
The following try/catch block exists in the get_or_create_ref function:
```
try {
auto &subschema = file.unknown_keywords.at(uri.pointer()); // null is returned if no…
-
While testing out the new relative path for `$ref` change you made for me, we ran into an issue. Given this annotation:
```
+# @schema
+# type: object
+# patternProperties:
+# "^.*":
+# …
-
Example:
```
[
{
"description": "recursive ref",
"schema": {
"items": [
{"$ref": "#/items/0"}
]
},
"tests": [ ]
…
-
E.g. the following schema should allow the generation of any object that does not contain the key "name":
```
{
"type": "object",
"properties": {
"name": false
},
"required": []
}
```
…
-
If we use `zod` to parse an API response:
```typescript
function foo(subSchema: z.ZodTypeAny) {
fetch('example/api')
.then(res => res.json())
.then(json => {
const resSchema …
pjdon updated
2 months ago
-
## 🐛 Bug Report
I got the following error:
TAPIS_JSON_VALIDATION_ERROR JSON validation error: TAPIS_JSON_VALIDATION_FAILURE JSON validation error: #/runtimeOptions: #: no subschema matched out of th…
-
In Open API 3.0, the Open API schema `type` field could only be a single string value.
In Open API 3.1, the Open API schema `type` field can be an array of string values.
This is especially useful w…
-
### What Docs changes are you proposing?
Improve the information architecture of the current documentation to align better with the [documentation developer journey](https://www.figma.com/board/TRj…
-
I have an issue with using oneOf and after_property_validation.
after_property_validation is run after each property. In the case where there is a oneOf and subschemas with the same property name but…
-
I am opening this as an issue rather than a PR to start, in order to gather feedback and additional content.
There are a number of questions that are asked frequently on stackoverflow, slack, githu…