ckanaction

package_relationship_create

Create a relationship between two datasets (packages).

You must be authorized to edit both the subject and the object datasets.

POST
package_relationship_create

Authorization

apiTokenHeader
Authorization<token>

CKAN API token

In: header

Request Body

application/json

subject?string

the id or name of the dataset that is the subject of the relationship

object?string

the id or name of the dataset that is the object of the relationship

type?string

the type of the relationship, one of 'depends_on', 'dependency_of', 'derives_from', 'has_derivation', 'links_to', 'linked_from', 'child_of', or 'parent_of'`

comment?string

a comment about the relationship

curl -X POST "http://localhost:5000/api/3/action/package_relationship_create" \  -H "Content-Type: application/json" \  -d '{}'