-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e13278d
commit 822d8e8
Showing
36 changed files
with
1,027 additions
and
722 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 0 additions & 19 deletions
19
src/main/resources/swagger.api/schemas/alternativeTitle.json
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/main/resources/swagger.api/schemas/circulationNote.json
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
src/main/resources/swagger.api/schemas/common/identifier.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
type: object | ||
description: "Resource identifier" | ||
additionalProperties: false | ||
properties: | ||
value: | ||
type: string | ||
description: "Resource identifier value" | ||
identifierTypeId: | ||
type: string | ||
description: "Resource identifier type (e.g. Control number, LCCN, Other standard identifier, System control number)" |
14 changes: 14 additions & 0 deletions
14
src/main/resources/swagger.api/schemas/common/metadata.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
type: object | ||
properties: | ||
createdDate: | ||
description: "Date and time when the record was created" | ||
type: string | ||
createdByUserId: | ||
description: "ID of the user who created the record (when available)" | ||
type: string | ||
updatedDate: | ||
description: "Date and time when the record was last updated" | ||
type: string | ||
updatedByUserId: | ||
description: "ID of the user who last updated the record (when available)" | ||
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
title: "tags" | ||
description: "List of simple tags that can be added to an object" | ||
type: "object" | ||
properties: | ||
tagList: | ||
description: "List of tags" | ||
type: "array" | ||
items: | ||
type: "string" | ||
additionalProperties: false |
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
src/main/resources/swagger.api/schemas/electronicAccess.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
src/main/resources/swagger.api/schemas/response/searchInstancesResponse.json
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
src/main/resources/swagger.api/schemas/search/alternativeTitle.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
type: object | ||
description: "An alternative title description" | ||
properties: | ||
alternativeTitleTypeId: | ||
type: string | ||
description: "UUID for an alternative title qualifier" | ||
alternativeTitle: | ||
type: string | ||
description: "An alternative title for the resource" | ||
authorityId: | ||
type: string | ||
description: "UUID of authority record that controls an alternative title" |
10 changes: 10 additions & 0 deletions
10
src/main/resources/swagger.api/schemas/search/circulationNote.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
description: "Circulations note for item" | ||
type: object | ||
properties: | ||
note: | ||
type: string | ||
description: "Text to display" | ||
staffOnly: | ||
type: boolean | ||
description: "Flag to restrict display of this note" | ||
default: false |
9 changes: 9 additions & 0 deletions
9
src/main/resources/swagger.api/schemas/search/classification.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
type: object | ||
description: Classification object | ||
properties: | ||
classificationNumber: | ||
description: "Classification (e.g. classification scheme, classification schedule)" | ||
type: string | ||
classificationTypeId: | ||
description: "Classification type ID" | ||
type: string |
21 changes: 21 additions & 0 deletions
21
src/main/resources/swagger.api/schemas/search/contributor.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
type: object | ||
description: "A contributor description" | ||
properties: | ||
name: | ||
type: string | ||
description: "Personal name, corporate name, meeting name" | ||
contributorTypeId: | ||
type: string | ||
description: "ID for the contributor type term defined as a reference table in settings" | ||
contributorTypeText: | ||
type: string | ||
description: "Free text element for adding contributor type terms other than those defined by the MARC code list for relators" | ||
contributorNameTypeId: | ||
type: string | ||
description: "Contributor type terms defined by the MARC code list for relators" | ||
authorityId: | ||
type: string | ||
description: "ID of authority record that controls the contributor" | ||
primary: | ||
type: boolean | ||
description: "Whether this is the primary contributor" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
type: object | ||
description: "Instance Dates" | ||
properties: | ||
dateTypeId: | ||
type: string | ||
description: "Date type ID" | ||
date1: | ||
type: string | ||
description: "Date1 value" | ||
date2: | ||
type: string | ||
description: "Date2 value" |
Oops, something went wrong.