Apache OFBiz · Schema

ServiceLink

Hypermedia link to a service endpoint.

ERPCRME-CommerceBusiness ApplicationsApacheJavaOpen SourceSupply Chain

Properties

Name Type Description
href string URL to invoke the service.
rel string Relationship type.
type string HTTP method for accessing the service.
View JSON Schema on GitHub

JSON Schema

apache-ofbiz-service-link-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ofbiz/refs/heads/main/json-schema/apache-ofbiz-service-link-schema.json",
  "title": "ServiceLink",
  "description": "Hypermedia link to a service endpoint.",
  "type": "object",
  "properties": {
    "href": {
      "type": "string",
      "format": "uri",
      "description": "URL to invoke the service.",
      "example": "https://localhost:8443/rest/services/findProductById"
    },
    "rel": {
      "type": "string",
      "description": "Relationship type.",
      "example": "self"
    },
    "type": {
      "type": "string",
      "description": "HTTP method for accessing the service.",
      "example": "get"
    }
  }
}