-
-
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
eb24cf9
commit fb66302
Showing
9 changed files
with
76 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,8 @@ | ||
title: AssertionSecret | ||
description: Data sent back upon successful app assertion. This will include X.509 certificates. | ||
title: Assertion Secret | ||
description: Data sent back upon successful app assertion. | ||
type: object | ||
properties: | ||
certificates: | ||
description: X.509 certificates to be used for client authentication. | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
content: | ||
$ref: '../../common/models/base64.v1.yaml' | ||
description: base64 encoded X.509 certificate in DER format. | ||
ttlInDays: | ||
type: integer | ||
type: | ||
type: string | ||
enum: | ||
- CONSTRAINED | ||
- WILDCARD | ||
data: | ||
oneOf: | ||
- $ref: './coastalresponse.v1.yaml' | ||
- $ref: './palmtreeresponse.v1.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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
title: Coastal Response | ||
description: Data retrieved from Coastal's API. | ||
type: object | ||
properties: | ||
certificates: | ||
description: X.509 certificates to be used for client authentication. | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
content: | ||
type: string | ||
pattern: '^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$' | ||
description: base64 encoded X.509 certificate in DER format. | ||
ttlInDays: | ||
type: integer | ||
type: | ||
type: string | ||
enum: | ||
- CONSTRAINED | ||
- WILDCARD |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
title: Key Id | ||
description: Base64 encoded key identifier received from apple. The Key Id is some shortened data, usually a hash, used to identify the longer actual key. | ||
$ref: '../../common/models/base64.v1.yaml' | ||
type: string | ||
pattern: '^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
title: Palm Tree Request Data | ||
description: Data to send to Palm Tree's API. | ||
type: object | ||
properties: | ||
- name: csr |
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,28 @@ | ||
title: Palm Tree Response | ||
description: Data retrieved from Palm Tree's API. | ||
type: object | ||
properties: | ||
type: | ||
type: string | ||
Enrolment: | ||
type: object | ||
properties: | ||
body: | ||
type: string | ||
description: PEM encoded certificate. | ||
id: | ||
type: string | ||
issuerName: | ||
type: string | ||
serialNumber: | ||
type: string | ||
subjectName: | ||
type: string | ||
id: | ||
type: string | ||
serialNumber: | ||
type: string | ||
status: | ||
type: string | ||
validityPeriod: | ||
type: string |