Description
The Job Board API feed was updated to expose job ad video URLs to external users via a new optional videoUrls field in feed responses.
Addition in the OpenAPI specification:
"jobAd" : {
"$ref" : "FeedJobAdDetails"
+ },
+ "videoUrls" : {
+ "type" : "array",
+ "description" : "Video URLs associated with the job ad. Returned as stored - query parameters, if present, are preserved.",
+ "items" : {
+ "type" : "string"
+ }
}URLs are validated and returned as stored - clients are responsible for how they embed or further process these URLs.
Impact
This change is backwards compatible.
Existing integrations remain valid. Clients consuming the Job Board API feed may start receiving a videoUrls array for job ads that have associated videos.
When no videos are available, the field is omitted from the response.