@base <http://localhost:9000/api/schema/>.

@prefix hydra: <http://www.w3.org/ns/hydra/core#>.
@prefix code: <https://code.described.at/>.

<Blog> a hydra:Class;
  hydra:supportedOperation
    <blog#get>.

<blog#get> a hydra:SupportedOperation;
  hydra:method "GET";
  hydra:returns <Blog>;
  code:implementedBy [ a code:EcmaScript;
    code:link <file:./blog.js#get>
  ].
