{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://offeringprotocol.org/schemas/http-action-target.schema.json",
  "title": "ODP compact HTTP Action target",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "href",
    "method"
  ],
  "properties": {
    "href": {
      "$ref": "resource-reference.schema.json"
    },
    "method": {
      "enum": [
        "GET",
        "POST"
      ]
    },
    "request": {
      "$ref": "action-request.schema.json"
    },
    "response_content_types": {
      "type": "array",
      "minItems": 1,
      "maxItems": 8,
      "uniqueItems": true,
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 255
      }
    }
  }
}
