You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was hoping someone might be able to tell me if this is a short coming of the library or if this is a shortcoming of my implementation / json references.
My schemas are as follows:
Party.json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "Party",
"title": "Party",
"description": "Represents a single party to a payment.",
"type": "object",
"properties": {
"name": {
"$ref": "Account"
},
"amount": {
"description": "How much this party will send or receive in the payment.",
"$ref": "Amount"
}
},
"additionalProperties": false,
"required": ["name", "amount"]
}
When I attempt to call the following I seem to be receiving an error that is not as comprehensive as I would have hoped:
Yields:
Ideally I was hoping that it would tell me something along the lines of:
I was hoping someone might be able to tell me if this is a short coming of the library or if this is a shortcoming of my implementation / json references.
My schemas are as follows:
Party.json
Amount.json
PositiveFloatString.json
The text was updated successfully, but these errors were encountered: