1
I持って、次のファイルRAMLの例では、JSONを再利用する方法
user.json
"user": {
"id": 1,
"name": "nameuser",
"online": true,
"profile": {
"photo": "",
"validated": true,
"popular": true,
"suspect": false,
"moderator": false,
"age": "22 ani",
"gender_id": "M"
}
}
profile.raml
displayName: Profile
get:
description: Get profile data
queryParameters:
userId:
description: The user id for which we are requesting the profile data
type: integer
required: true
responses:
200:
body:
application/json:
example: |
{
"user": !include user.json,
"details": {
"friend": true
}
}
ユーザーJSONはより多くの例に存在していると私はしたいですそれを再使用する。 私はraml2htmlを使用していますので、私はこれをどのように行うのか、それは
にそれをコンパイル?