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
# api.raml# minimized for brevitytypes:
Post: !include types/post.ramlPublicPost: !include types/public-post.raml
# types/post.raml#%RAML 1.0 DataTypedisplayName: Post itemtype: objectproperties:
name:
description: Post item name.type: stringrequired: truecontent:
description: Content of the post item.type: stringrequired: true
example:
Generated PublicPostNormalizer results in
which lacks the required properties
name
andcontent
defined intypes/post.raml
.The text was updated successfully, but these errors were encountered: