-
Notifications
You must be signed in to change notification settings - Fork 5
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
f44851f
commit 991513b
Showing
9 changed files
with
466 additions
and
436 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 |
---|---|---|
|
@@ -8143,12 +8143,6 @@ components: | |
- operational | ||
- null | ||
nullable: true | ||
fsc: | ||
type: boolean | ||
description: >- | ||
This is in beta. Contact [email protected] or your account contact to | ||
learn more. | ||
default: false | ||
letter_generated_base: | ||
allOf: | ||
- $ref: '#/components/schemas/generated' | ||
|
@@ -8183,7 +8177,11 @@ components: | |
use_type: | ||
$ref: '#/components/schemas/ltr_use_type' | ||
fsc: | ||
$ref: '#/components/schemas/fsc' | ||
type: boolean | ||
description: >- | ||
This is in beta. Contact [email protected] or your account contact | ||
to learn more. Not available for `A4` letter size. | ||
default: false | ||
status: | ||
title: The status of the letter. | ||
enum: | ||
|
@@ -8798,7 +8796,11 @@ components: | |
use_type: | ||
$ref: '#/components/schemas/ltr_use_type' | ||
fsc: | ||
$ref: '#/components/schemas/fsc' | ||
type: boolean | ||
description: >- | ||
This is in beta. Contact [email protected] or your account contact | ||
to learn more. Not available for `A4` letter size. | ||
default: false | ||
psc_id: | ||
type: string | ||
description: Unique identifier prefixed with `psc_`. | ||
|
@@ -8888,7 +8890,11 @@ components: | |
use_type: | ||
$ref: '#/components/schemas/psc_use_type' | ||
fsc: | ||
$ref: '#/components/schemas/fsc' | ||
type: boolean | ||
description: >- | ||
This is in beta. Contact [email protected] or your account contact | ||
to learn more. Not available for `4x6` or `A5` postcard sizes. | ||
default: false | ||
status: | ||
title: The status of the postcard. | ||
enum: | ||
|
@@ -8999,7 +9005,11 @@ components: | |
use_type: | ||
$ref: '#/components/schemas/psc_use_type' | ||
fsc: | ||
$ref: '#/components/schemas/fsc' | ||
type: boolean | ||
description: >- | ||
This is in beta. Contact [email protected] or your account contact | ||
to learn more. Not available for `4x6` or `A5` postcard sizes. | ||
default: false | ||
scans: | ||
type: object | ||
properties: | ||
|
@@ -9225,7 +9235,11 @@ components: | |
url: | ||
$ref: '#/components/schemas/signed_link' | ||
fsc: | ||
$ref: '#/components/schemas/fsc' | ||
type: boolean | ||
description: >- | ||
This is in beta. Contact [email protected] or your account contact | ||
to learn more. Not available for `11x9_bifold` self-mailer size. | ||
default: false | ||
status: | ||
title: The status of the self mailer. | ||
enum: | ||
|
@@ -9310,7 +9324,11 @@ components: | |
use_type: | ||
$ref: '#/components/schemas/sfm_use_type' | ||
fsc: | ||
$ref: '#/components/schemas/fsc' | ||
type: boolean | ||
description: >- | ||
This is in beta. Contact [email protected] or your account contact | ||
to learn more. Not available for `11x9_bifold` self-mailer size. | ||
default: false | ||
template_html: | ||
type: string | ||
description: > | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -68,4 +68,6 @@ allOf: | |
$ref: "../attributes/ltr_use_type.yml" | ||
|
||
fsc: | ||
$ref: "../../../shared/models/fsc.yml" | ||
type: boolean | ||
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `A4` letter size. | ||
default: false |
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 |
---|---|---|
|
@@ -36,7 +36,9 @@ allOf: | |
$ref: "../attributes/ltr_use_type.yml" | ||
|
||
fsc: # Forest Stewardship Council | ||
$ref: "../../../shared/models/fsc.yml" | ||
type: boolean | ||
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `A4` letter size. | ||
default: false | ||
|
||
status: | ||
title: The status of the letter. | ||
|
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 |
---|---|---|
|
@@ -59,7 +59,9 @@ allOf: | |
$ref: "../attributes/psc_use_type.yml" | ||
|
||
fsc: # Forest Stewardship Council | ||
$ref: "../../../shared/models/fsc.yml" | ||
type: boolean | ||
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `4x6` or `A5` postcard sizes. | ||
default: false | ||
|
||
status: | ||
title: The status of the postcard. | ||
|
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 |
---|---|---|
|
@@ -28,4 +28,6 @@ allOf: | |
$ref: "../attributes/psc_use_type.yml" | ||
|
||
fsc: # Forest Stewardship Council | ||
$ref: "../../../shared/models/fsc.yml" | ||
type: boolean | ||
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `4x6` or `A5` postcard sizes. | ||
default: false |
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 |
---|---|---|
|
@@ -63,7 +63,9 @@ allOf: | |
$ref: "../../../shared/attributes/signed_link.yml" | ||
|
||
fsc: | ||
$ref: "../../../shared/models/fsc.yml" | ||
type: boolean | ||
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `11x9_bifold` self-mailer size. | ||
default: false | ||
|
||
status: | ||
title: The status of the self mailer. | ||
|
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 |
---|---|---|
|
@@ -67,4 +67,6 @@ allOf: | |
$ref: "../attributes/sfm_use_type.yml" | ||
|
||
fsc: | ||
$ref: "../../../shared/models/fsc.yml" | ||
type: boolean | ||
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `11x9_bifold` self-mailer size. | ||
default: false |