GET/trusted-policies-registry/v3/subjects/:subject/policies
Returns a list of policies assigned to an subject.
Request
Path Parameters
- subject
Description: Valid Pilot subject
Example: 0x69e48d89bf5e09588E858D757323b4abBBB3f814
Responses
- 200
- 400
- 404
- 500
Success
- application/json
- Schema
- Success
Schema
- Array [
- ]
URI to policies
items object[]
List of policies
Policy name
Link to the resource
Total number of items in a collection
Number of items to be returned per page
links object
Links model used for pagination.
Hyperlink to the first page.
Hyperlink to the previous page.
Hyperlink to the next page.
Hyperlink to the last page.
{
"self": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/subjects/0x69e48d89bf5e09588E858D757323b4abBBB3f814/policies?page[after]=3&page[size]=2",
"items": [
{
"policyName": "TSR:insertSchema",
"href": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/subjects/0x69e48d89bf5e09588E858D757323b4abBBB3f814/policies/TSR:insertSchema"
}
],
"total": 1,
"pageSize": 10,
"links": {
"first": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/subjects/0x69e48d89bf5e09588E858D757323b4abBBB3f814/policies?page[after]=1&page[size]=2",
"prev": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/subjects/0x69e48d89bf5e09588E858D757323b4abBBB3f814/policies?page[after]=2&page[size]=2",
"next": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/subjects/0x69e48d89bf5e09588E858D757323b4abBBB3f814/policies?page[after]=4&page[size]=2",
"last": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/subjects/0x69e48d89bf5e09588E858D757323b4abBBB3f814/policies?page[after]=62&page[size]=2"
}
}
Bad Request
- application/problem+json
- Schema
- Bad Request
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"title": "Bad Request",
"status": 400,
"detail": "Bad request."
}
Not found
- application/problem+json
- Schema
- Subject Not Found
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"title": "Not found",
"status": 404,
"detail": "Not found"
}
Internal Error
- application/problem+json
- Schema
- Internal Server Error
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"title": "Internal Server Error",
"status": 500,
"detail": "The server encountered an internal error and was unable to process your request."
}