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
{{ message }}
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
[BS] File changed: .tmp/blueprint.apib
>> Line 0: invalid value format for 'number' type. please check mson specification for valid format (warning code 4)
>> Context
With the following markdown:
+ Response 200 (application/vnd.api+json)
Received on successful update or insert.
+ Attributes
+ posts (array)
+ name: Apiary
+ founded: 2011 (number) - The year in which the company was founded
The text was updated successfully, but these errors were encountered:
The error here is a little mis-leading as the parser has struggled to understand the blueprint.
The specific data structure you have here is a key-value property directly under an array. This would could be compared to something like {"posts": ["name": "Apiary", "founded": 2011]} in JSON, which obviously doesn't make any sense.
I think you instead mean the following:
+ Response 200(application/vnd.api+json)
Received on successful update or insert.
+ Attributes
+ posts (array)
+ (object)
+ name: Apiary
+ founded: 2011 (number) - The year in which the company was founded
I'm getting the error:
With the following markdown:
The text was updated successfully, but these errors were encountered: