如何在 json-ld 中为资源指定支持的 http 操作



我是 JSON-LD 的新手,我想知道是否有任何方法可以在不使用 Hydra 的 supportedOperationsupportedProperty 的情况下指定 JSON-LD 中资源的支持操作。有没有办法指定上下文,例如:

    {
    "@context" : {
    "@vocab" : "http://www.schema.org/",
    "data" : "object",
    "id" :"Number",
    "name" : "alternateName",
    "full_name" : "name",
    "links" : {
        "@id" : "URL",
        "@type" : "collection"
    },
    "href" : "URL",
    "rel" : "relatedTo",
    "operation" : [
     {
      "href" : "http://example.com/resources/1/anotherresources/2",
      "method" : "POST",
      "expects" :[parameter list],
      "required" : [list of mandatory arguments],
      "fixed value" : [list of argument with fixed value for a resource]
     }
     ]
   }

任何指导都会有很大帮助。

不,您不能在上下文中指定它。但是,您可以做的是将操作绑定到 Hydra ApiDocumentation中的属性(规范中的示例 10),并通过 HTTP 链接标头引用它。

相关内容

  • 没有找到相关文章

最新更新