Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions api/TimeAddressableMediaStore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2534,6 +2534,9 @@ webhooks:
properties:
flow:
$ref: "schemas/flow.json"
responses:
"200":
description: Webhook received successfully
flows/updated:
post:
security:
Expand Down Expand Up @@ -2563,6 +2566,9 @@ webhooks:
properties:
flow:
$ref: "schemas/flow.json"
responses:
"200":
description: Webhook received successfully
flows/deleted:
post:
security:
Expand Down Expand Up @@ -2592,6 +2598,9 @@ webhooks:
properties:
flow_id:
$ref: "schemas/uuid.json"
responses:
"200":
description: Webhook received successfully
flows/segments_added:
post:
security:
Expand Down Expand Up @@ -2627,6 +2636,9 @@ webhooks:
type: array
items:
$ref: 'schemas/flow-segment.json'
responses:
"200":
description: Webhook received successfully
flows/segments_deleted:
post:
security:
Expand Down Expand Up @@ -2661,6 +2673,9 @@ webhooks:
timerange:
description: The timerange of Segments that have been deleted. The timerange MUST intersect with a Segment which has been deleted at both start and end (e.g. it cannot start or end in empty space).
$ref: 'schemas/timerange.json'
responses:
"200":
description: Webhook received successfully
sources/created:
post:
security:
Expand Down Expand Up @@ -2690,6 +2705,9 @@ webhooks:
properties:
source:
$ref: "schemas/source.json"
responses:
"200":
description: Webhook received successfully
sources/updated:
post:
security:
Expand Down Expand Up @@ -2719,6 +2737,9 @@ webhooks:
properties:
source:
$ref: "schemas/source.json"
responses:
"200":
description: Webhook received successfully
sources/deleted:
post:
security:
Expand Down Expand Up @@ -2748,6 +2769,9 @@ webhooks:
properties:
source_id:
$ref: "schemas/uuid.json"
responses:
"200":
description: Webhook received successfully
components:
responses:
trait_resource_listing_head_200:
Expand Down
2 changes: 1 addition & 1 deletion api/schemas/webhook-get.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"properties": {
"error": {
"description": "Provides more information for the error status, as described by the [Error](#/schemas/error) type",
"description": "Provides more information for the error status, as described by the [Error](#/schemas/error) type. Amongst other conditions, implementations MAY use this field to indicate failure to deliver webhooks resulting in return codes other than the 200 Success described in the the webhook event schemas.",
"$ref": "error.json"
},
"status": {
Expand Down
Loading