我想了解使用 RAML 对资源进行操作建模的最佳方法是什么。
例如,我在 RAML 中有以下资源定义:
/orders:
type: collection
get:
description: Gets all orders
post:
description: Creates a new order
/{orderId}:
type: element
get:
description: Gets a order
put:
description: Updates a order
delete:
description: Deletes a order
现在对于一个订单,我想模拟一个“批准”动作。是否有使用 RAML 执行此操作的最佳实践?