diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-30 16:50:32 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-30 16:50:32 -0700 |
commit | 3ed7db573438d3620d295813a81237acb91155cb (patch) | |
tree | 714abba5a1a84449cf9beb152b5ee56996627f37 /rust/fatcat-api/api.yaml | |
parent | a96ca6e8df949f32e7647a285748712a9d842611 (diff) | |
download | fatcat-3ed7db573438d3620d295813a81237acb91155cb.tar.gz fatcat-3ed7db573438d3620d295813a81237acb91155cb.zip |
refactor changelog entry spec structure
Diffstat (limited to 'rust/fatcat-api/api.yaml')
-rw-r--r-- | rust/fatcat-api/api.yaml | 53 |
1 files changed, 34 insertions, 19 deletions
diff --git a/rust/fatcat-api/api.yaml b/rust/fatcat-api/api.yaml index eba6b63c..1796f32f 100644 --- a/rust/fatcat-api/api.yaml +++ b/rust/fatcat-api/api.yaml @@ -181,6 +181,21 @@ definitions: <<: *ENTITYPROPS work_type: type: string + entity_history: + type: array + items: + type: object + required: + - edit + - editgroup + - changelog + properties: + edit: + $ref: "#/definitions/entity_edit" + editgroup: + $ref: "#/definitions/editgroup" + changelog: + $ref: "#/definitions/changelog_entry" entity_edit: type: object required: @@ -257,24 +272,22 @@ definitions: type: array items: $ref: "#/definitions/entity_edit" - changelogentries: - type: array - items: - type: object - required: - - index - - editgroup_id - - timestamp - properties: - index: - type: integer - format: int64 - editgroup_id: - type: integer - format: int64 - timestamp: - type: string - format: date-time + changelog_entry: + type: object + required: + - index + - editgroup_id + - timestamp + properties: + index: + type: integer + format: int64 + editgroup_id: + type: integer + format: int64 + timestamp: + type: string + format: date-time release_ref: type: object properties: @@ -710,7 +723,9 @@ paths: 200: description: Found Merged Changes schema: - $ref: "#/definitions/changelogentries" + type: array + items: + $ref: "#/definitions/changelog_entry" 404: description: Not Found schema: |