-
Notifications
You must be signed in to change notification settings - Fork 6
feat: expose license_tags to feed and license endpoints #1619
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
fb15f38
7ff8828
02f54b0
04687a8
f0e3e87
bb24924
4c971af
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -624,6 +624,14 @@ export interface components { | |
| * @example Detected locale/jurisdiction port 'nl'. SPDX does not list ported CC licenses; using canonical ID. | ||
| */ | ||
| license_notes?: string; | ||
| /** | ||
| * @description List of taxonomy tags associated with the feed's license. | ||
| * @example [ | ||
| * "family:ODC", | ||
| * "license:open-data-commons" | ||
| * ] | ||
| */ | ||
| license_tags?: string[]; | ||
| }; | ||
| Locations: Array<components['schemas']['Location']>; | ||
| Location: { | ||
|
|
@@ -848,6 +856,14 @@ export interface components { | |
| * @example "2023-07-10T22:06:00.000Z" | ||
| */ | ||
| updated_at?: string; | ||
| /** | ||
| * @description List of taxonomy tags associated with the license. | ||
| * @example [ | ||
| * "family:ODC", | ||
| * "license:open-data-commons" | ||
| * ] | ||
| */ | ||
| license_tags?: string[]; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [out of scope for this PR] are we dropping the web app folder from this repo now that we have the beautiful SSR repo?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will be done with the JS here soon! We are currently monitoring the SSR deployment. cc: @Alessandro100 |
||
| }; | ||
| LicenseWithRules: components['schemas']['LicenseBase'] & { | ||
| license_rules?: Array<components['schemas']['LicenseRule']>; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed beta endpoint tags as they are not
betaanymore.