diff --git a/fern/apis/fdr/definition/api/v1/read/type.yml b/fern/apis/fdr/definition/api/v1/read/type.yml index 7cac35b1f8..1876c3f680 100644 --- a/fern/apis/fdr/definition/api/v1/read/type.yml +++ b/fern/apis/fdr/definition/api/v1/read/type.yml @@ -45,6 +45,7 @@ types: properties: extends: list properties: list + extraProperties: optional ObjectProperty: extends: diff --git a/fern/apis/fdr/definition/api/v1/register/type.yml b/fern/apis/fdr/definition/api/v1/register/type.yml index e178fc86f0..d4894fceaf 100644 --- a/fern/apis/fdr/definition/api/v1/register/type.yml +++ b/fern/apis/fdr/definition/api/v1/register/type.yml @@ -45,6 +45,7 @@ types: properties: extends: list properties: list + extraProperties: optional ObjectProperty: extends: diff --git a/packages/fdr-sdk/src/api-definition/migrators/v1ToV2.ts b/packages/fdr-sdk/src/api-definition/migrators/v1ToV2.ts index 0476fd7853..540ed757d1 100644 --- a/packages/fdr-sdk/src/api-definition/migrators/v1ToV2.ts +++ b/packages/fdr-sdk/src/api-definition/migrators/v1ToV2.ts @@ -280,7 +280,8 @@ export class ApiDefinitionV1ToLatest { type: "object", extends: value.extends, properties: this.migrateObjectProperties(value.properties), - extraProperties: undefined, + extraProperties: + value.extraProperties != null ? this.migrateTypeReference(value.extraProperties) : undefined, }), alias: (value) => ({ type: "alias", diff --git a/packages/fdr-sdk/src/client/generated/api/resources/api/resources/v1/resources/read/resources/type/types/ObjectType.ts b/packages/fdr-sdk/src/client/generated/api/resources/api/resources/v1/resources/read/resources/type/types/ObjectType.ts index a63089f1ef..65bd894d63 100644 --- a/packages/fdr-sdk/src/client/generated/api/resources/api/resources/v1/resources/read/resources/type/types/ObjectType.ts +++ b/packages/fdr-sdk/src/client/generated/api/resources/api/resources/v1/resources/read/resources/type/types/ObjectType.ts @@ -7,4 +7,5 @@ import * as FernRegistry from "../../../../../../../../../index"; export interface ObjectType { extends: FernRegistry.TypeId[]; properties: FernRegistry.api.v1.read.ObjectProperty[]; + extraProperties: FernRegistry.api.v1.read.TypeReference | undefined; } diff --git a/packages/fdr-sdk/src/client/generated/api/resources/api/resources/v1/resources/register/resources/type/types/ObjectType.ts b/packages/fdr-sdk/src/client/generated/api/resources/api/resources/v1/resources/register/resources/type/types/ObjectType.ts index 3572009463..7eebf134c3 100644 --- a/packages/fdr-sdk/src/client/generated/api/resources/api/resources/v1/resources/register/resources/type/types/ObjectType.ts +++ b/packages/fdr-sdk/src/client/generated/api/resources/api/resources/v1/resources/register/resources/type/types/ObjectType.ts @@ -7,4 +7,5 @@ import * as FernRegistry from "../../../../../../../../../index"; export interface ObjectType { extends: FernRegistry.TypeId[]; properties: FernRegistry.api.v1.register.ObjectProperty[]; + extraProperties: FernRegistry.api.v1.register.TypeReference | undefined; } diff --git a/packages/fdr-sdk/src/converters/db/convertAPIDefinitionToDb.ts b/packages/fdr-sdk/src/converters/db/convertAPIDefinitionToDb.ts index 50fb46271a..3c4addeea0 100644 --- a/packages/fdr-sdk/src/converters/db/convertAPIDefinitionToDb.ts +++ b/packages/fdr-sdk/src/converters/db/convertAPIDefinitionToDb.ts @@ -569,6 +569,7 @@ function transformShape({ writeShape }: { writeShape: APIV1Write.TypeShape }): F type: "object", extends: writeShape.extends, properties: writeShape.properties.map((property) => transformProperty({ writeShape: property })), + extraProperties: writeShape.extraProperties, }; case "alias": return { @@ -644,6 +645,7 @@ function transformDiscriminatedVariant({ properties: writeShape.additionalProperties.properties.map((property) => transformProperty({ writeShape: property }), ), + extraProperties: writeShape.additionalProperties.extraProperties, }, }; } diff --git a/packages/template-resolver/src/__test__/unit-tests/assets/imdbApiDefinition.ts b/packages/template-resolver/src/__test__/unit-tests/assets/imdbApiDefinition.ts index 0010e47169..39784cc99a 100644 --- a/packages/template-resolver/src/__test__/unit-tests/assets/imdbApiDefinition.ts +++ b/packages/template-resolver/src/__test__/unit-tests/assets/imdbApiDefinition.ts @@ -25,6 +25,7 @@ export const IMDB_API_DEFINITION: APIV1Read.ApiDefinition = { name: "Movie", shape: { type: "object", + extraProperties: undefined, extends: [], properties: [ { @@ -75,6 +76,7 @@ export const IMDB_API_DEFINITION: APIV1Read.ApiDefinition = { name: "DetailedMovieReview", shape: { type: "object", + extraProperties: undefined, extends: [], properties: [ { @@ -130,6 +132,7 @@ export const IMDB_API_DEFINITION: APIV1Read.ApiDefinition = { name: "AgressiveMovieReview", shape: { type: "object", + extraProperties: undefined, extends: [], properties: [ { @@ -244,6 +247,7 @@ export const IMDB_API_DEFINITION: APIV1Read.ApiDefinition = { name: "CreateMovieRequest", shape: { type: "object", + extraProperties: undefined, extends: [], properties: [ { diff --git a/servers/fdr/src/__test__/unit-tests/transform/__snapshots__/testTransformApiDefinitionToDb.test.ts.snap b/servers/fdr/src/__test__/unit-tests/transform/__snapshots__/testTransformApiDefinitionToDb.test.ts.snap index a9b87e48a9..bd27e5ed9d 100644 --- a/servers/fdr/src/__test__/unit-tests/transform/__snapshots__/testTransformApiDefinitionToDb.test.ts.snap +++ b/servers/fdr/src/__test__/unit-tests/transform/__snapshots__/testTransformApiDefinitionToDb.test.ts.snap @@ -733,6 +733,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 429, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -1668,6 +1669,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -1699,6 +1701,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -2287,6 +2290,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -2318,6 +2322,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -2534,6 +2539,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -2565,6 +2571,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -2946,6 +2953,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 500, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -2977,6 +2985,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -3008,6 +3017,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -3039,6 +3049,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -3580,6 +3591,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -3793,6 +3805,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -3824,6 +3837,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 500, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -3855,6 +3869,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -3886,6 +3901,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -3917,6 +3933,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -4333,6 +4350,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -4501,6 +4519,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 500, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -4532,6 +4551,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -4563,6 +4583,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -4859,6 +4880,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 500, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -5217,6 +5239,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -5248,6 +5271,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -5652,6 +5676,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -5859,6 +5884,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -5890,6 +5916,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -5921,6 +5948,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -5952,6 +5980,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -6335,6 +6364,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -6366,6 +6396,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -8263,6 +8294,7 @@ Must obey the ICD-10 format if an ICD-10 code_type is provided, specifically: "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -9097,6 +9129,7 @@ or encounter external id. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -9357,6 +9390,7 @@ or encounter external id. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -9388,6 +9422,7 @@ or encounter external id. "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -9654,6 +9689,7 @@ or encounter external id. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -9685,6 +9721,7 @@ or encounter external id. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -9901,6 +9938,7 @@ or encounter external id. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -11332,6 +11370,7 @@ or encounter external id. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -11363,6 +11402,7 @@ or encounter external id. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -11394,6 +11434,7 @@ or encounter external id. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -11425,6 +11466,7 @@ or encounter external id. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -11459,6 +11501,7 @@ or encounter external id. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -12612,6 +12655,7 @@ in bounds of the diagnoses list field "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -12643,6 +12687,7 @@ in bounds of the diagnoses list field "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -12674,6 +12719,7 @@ in bounds of the diagnoses list field "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -12705,6 +12751,7 @@ in bounds of the diagnoses list field "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -14791,6 +14838,7 @@ submitted to the payor. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -15609,6 +15657,7 @@ submitted to the payor. "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -15640,6 +15689,7 @@ submitted to the payor. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -16255,6 +16305,7 @@ submitted to the payor. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -16289,6 +16340,7 @@ submitted to the payor. "statusCode": 503, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -16320,6 +16372,7 @@ submitted to the payor. "statusCode": 503, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -16351,6 +16404,7 @@ submitted to the payor. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -16382,6 +16436,7 @@ submitted to the payor. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -16720,6 +16775,7 @@ Must be within 30 days of start_date. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -17113,6 +17169,7 @@ doesn't data wrangle the modeling into the presentation shape. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -17566,6 +17623,7 @@ doesn't data wrangle the modeling into the presentation shape. "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -18463,6 +18521,7 @@ doesn't data wrangle the modeling into the presentation shape. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -18699,6 +18758,7 @@ doesn't data wrangle the modeling into the presentation shape. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -18932,6 +18992,7 @@ doesn't data wrangle the modeling into the presentation shape. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -19452,6 +19513,7 @@ doesn't data wrangle the modeling into the presentation shape. "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -19631,6 +19693,7 @@ doesn't data wrangle the modeling into the presentation shape. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -19834,6 +19897,7 @@ identified by the id, then 403 response will be returned "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -19865,6 +19929,7 @@ identified by the id, then 403 response will be returned "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -20303,6 +20368,7 @@ upon creation of the invoice. "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -20616,6 +20682,7 @@ upon creation of the invoice. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -20795,6 +20862,7 @@ upon creation of the invoice. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -21003,6 +21071,7 @@ upon creation of the invoice. "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -21200,6 +21269,7 @@ upon creation of the invoice. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -21395,6 +21465,7 @@ upon creation of the invoice. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -23192,6 +23263,7 @@ upon creation of the invoice. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -23428,6 +23500,7 @@ upon creation of the invoice. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -23672,6 +23745,7 @@ upon creation of the invoice. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -23864,6 +23938,7 @@ upon creation of the invoice. "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -23895,6 +23970,7 @@ upon creation of the invoice. "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -24112,6 +24188,7 @@ upon creation of the invoice. "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -24143,6 +24220,7 @@ upon creation of the invoice. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -24465,6 +24543,7 @@ identified by the id, then 403 response will be returned "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -24496,6 +24575,7 @@ identified by the id, then 403 response will be returned "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -24852,6 +24932,7 @@ identified by the id, then 403 response will be returned "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -25043,6 +25124,7 @@ If the authenticated user does not have the permission to update the PatientPaym "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -25074,6 +25156,7 @@ If the authenticated user does not have the permission to update the PatientPaym "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -25309,6 +25392,7 @@ by the id, then 403 will be returned "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -25340,6 +25424,7 @@ by the id, then 403 will be returned "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -25567,6 +25652,7 @@ by the id, then 403 will be returned "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -25831,6 +25917,7 @@ by the id, then 403 will be returned "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -25862,6 +25949,7 @@ by the id, then 403 will be returned "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -26275,6 +26363,7 @@ by the id, then 403 will be returned "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -26306,6 +26395,7 @@ by the id, then 403 will be returned "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -26337,6 +26427,7 @@ by the id, then 403 will be returned "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -26671,6 +26762,7 @@ by the id, then 403 will be returned "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -26702,6 +26794,7 @@ by the id, then 403 will be returned "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -26733,6 +26826,7 @@ by the id, then 403 will be returned "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -26973,6 +27067,7 @@ the current organization_id of the authenticated user. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -27263,6 +27358,7 @@ authenticated user, then response code of 403 will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -27294,6 +27390,7 @@ authenticated user, then response code of 403 will be returned. "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -27518,6 +27615,7 @@ The order of specificity from the most specific to least specific is \`service_l "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -27549,6 +27647,7 @@ The order of specificity from the most specific to least specific is \`service_l "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -27866,6 +27965,7 @@ The order of specificity from the most specific to least specific is \`service_l "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -27897,6 +27997,7 @@ The order of specificity from the most specific to least specific is \`service_l "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -27928,6 +28029,7 @@ The order of specificity from the most specific to least specific is \`service_l "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -28294,6 +28396,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -28325,6 +28428,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -28356,6 +28460,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -28775,6 +28880,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -28806,6 +28912,7 @@ current organization_id, then a response code of \`403\` will be returned. "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -29417,6 +29524,7 @@ identified by the id, then 403 response will be returned "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -29448,6 +29556,7 @@ identified by the id, then 403 response will be returned "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -29765,6 +29874,7 @@ If there already exists a PaymentAccountConfig for the organization with the sam "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -29796,6 +29906,7 @@ If there already exists a PaymentAccountConfig for the organization with the sam "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -29827,6 +29938,7 @@ If there already exists a PaymentAccountConfig for the organization with the sam "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -30121,6 +30233,7 @@ If there already exists a PaymentAccountConfig for the organization with the sam "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -30152,6 +30265,7 @@ If there already exists a PaymentAccountConfig for the organization with the sam "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -30183,6 +30297,7 @@ If there already exists a PaymentAccountConfig for the organization with the sam "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -30214,6 +30329,7 @@ If there already exists a PaymentAccountConfig for the organization with the sam "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -30530,6 +30646,7 @@ by the id, then 403 will be returned "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -30561,6 +30678,7 @@ by the id, then 403 will be returned "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -30750,6 +30868,7 @@ and the third party payment processor's customer can be identified by the patien "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -31371,6 +31490,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -31402,6 +31522,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -31892,6 +32013,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -31923,6 +32045,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -31954,6 +32077,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 409, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -32286,6 +32410,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -32496,6 +32621,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -32665,6 +32791,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -33046,6 +33173,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -33077,6 +33205,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 403, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -33339,6 +33468,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -34060,6 +34190,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -34256,6 +34387,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 422, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -34549,6 +34681,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -34775,6 +34908,7 @@ customer page will be returned (this generally is a page listing the existing cu "statusCode": 404, "type": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35085,6 +35219,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_adjustments:AdjustmentCreate", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35105,6 +35240,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "AdjustmentCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35201,6 +35337,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "AdjustmentUpdate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35242,6 +35379,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35265,6 +35403,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "AuthGetTokenRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35298,6 +35437,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "AuthGetTokenResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35342,6 +35482,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "TooManyRequestsErrorType", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35366,6 +35507,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_billing-notes:BillingNoteBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35434,6 +35576,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BillingNoteBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35477,6 +35620,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkVoidClaimAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35489,6 +35633,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkResubmitFreshClaimAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35501,6 +35646,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkResubmitCorrectedClaimAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35513,6 +35659,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkCloseTasksAndProcessClaimAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35525,6 +35672,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:MoveToWorkQueueClaimAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35541,6 +35689,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkClaimActionExecutionError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35579,6 +35728,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:NotImplementedError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35591,6 +35741,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:NoPayerGeneratedControlNumberError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35603,6 +35754,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:TaskRequiredForWorkQueueError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35615,6 +35767,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:GenericWorkQueueError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35627,6 +35780,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:UserNotAuthorizedForResubmitError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35639,6 +35793,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:UserNotAuthorizedToCloseAllOpenTasksError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35651,6 +35806,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:ExecutionError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35669,6 +35825,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkClaimActionExecutionResultBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35692,6 +35849,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkClaimActionExecutionResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35722,6 +35880,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkClaimActionExecutionSuccess", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35734,6 +35893,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkClaimActionExecutionFailure", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35750,6 +35910,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkClaimActionExecutionResultBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35781,6 +35942,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkClaimActionExecutionResultBase", ], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -35791,6 +35953,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkClaimActionMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35844,6 +36007,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkClaimActionValidationError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35882,6 +36046,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:NotImplementedError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35894,6 +36059,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:NoPayerGeneratedControlNumberError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35906,6 +36072,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:TaskRequiredForWorkQueueError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35918,6 +36085,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:GenericWorkQueueError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35930,6 +36098,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:UserNotAuthorizedForResubmitError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35942,6 +36111,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:UserNotAuthorizedToCloseAllOpenTasksError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -35960,6 +36130,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkClaimActionValidationResultBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -35983,6 +36154,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkClaimActionValidationResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36013,6 +36185,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkClaimActionValidationSuccess", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -36025,6 +36198,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkClaimActionValidationFailure", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -36041,6 +36215,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkClaimActionValidationResultBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36072,6 +36247,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:BulkClaimActionValidationResultBase", ], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36082,6 +36258,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkCloseTasksAndProcessClaimAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36092,6 +36269,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkResubmitCorrectedClaimAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36114,6 +36292,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkResubmitFreshClaimAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36124,6 +36303,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "BulkVoidClaimAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36141,6 +36321,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_bulk-claim-actions/v1:ClaimIdSet", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -36157,6 +36338,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "ClaimIdSet", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36180,6 +36362,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "CreateTaskConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36246,6 +36429,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "ExecutionError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36256,6 +36440,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "GenericWorkQueueError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36266,6 +36451,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "MoveToWorkQueueClaimAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36298,6 +36484,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "NoPayerGeneratedControlNumberError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36308,6 +36495,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "NotImplementedError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36318,6 +36506,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "TaskRequiredForWorkQueueError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36328,6 +36517,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "UserNotAuthorizedForResubmitError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36338,6 +36528,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "UserNotAuthorizedToCloseAllOpenTasksError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -36376,6 +36567,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "DeleteAllChargemastersResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36399,6 +36591,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "DeleteChargemasterEntriesByIdsRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36453,6 +36646,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "ClaimSubmission", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36509,6 +36703,7 @@ customer page will be returned (this generally is a page listing the existing cu { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -36519,6 +36714,7 @@ customer page will be returned (this generally is a page listing the existing cu { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -36531,6 +36727,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_claim/v2:PotentialMatches", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -36552,6 +36749,7 @@ customer page will be returned (this generally is a page listing the existing cu { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36574,6 +36772,7 @@ customer page will be returned (this generally is a page listing the existing cu "extends": [ "type_claim/v2:LegacyMatchResults", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -36604,6 +36803,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "ClaimStatusMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36688,6 +36888,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "LegacyMatchResults", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36713,6 +36914,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "MatchResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36782,6 +36984,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "PotentialMatches", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36805,6 +37008,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "ServiceLineAdjudicationDetail", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36834,6 +37038,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "ServiceLineAdjudicationDetailsResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -36870,6 +37075,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Claim", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37046,6 +37252,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "AddressBox", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37125,6 +37332,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "AddressBox3Line", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37178,6 +37386,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box10PatientConditionRelatedTo", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37259,6 +37468,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box11Insured", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37364,6 +37574,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box14DateOfCurrentCondition", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37401,6 +37612,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box15OtherDate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37438,6 +37650,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box16DatesPatientUnableToWork", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37473,6 +37686,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box17ReferringProvider", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37554,6 +37768,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box18HospitalizationDates", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37589,6 +37804,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box20OutsideLab", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37628,6 +37844,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box21Diagnoses", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37821,6 +38038,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box22Resubmission", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37860,6 +38078,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box24ServiceLines", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37943,6 +38162,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box25FederalTaxIdNumber", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -37980,6 +38200,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box28TotalCharge", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -38019,6 +38240,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box32ServiceFacilityInfo", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -38070,6 +38292,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box33BillingProviderInfo", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -38133,6 +38356,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box3Patient", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -38168,6 +38392,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "Box9OtherInsured", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -38249,6 +38474,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "CMS1500Content", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -38688,6 +38914,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "DateBox", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -38762,6 +38989,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "InsuranceInfo", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -38875,6 +39103,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "ModifiersBox", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -38973,6 +39202,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "PhoneNumberBox", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -39012,6 +39242,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "ServiceLineBox", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -39248,6 +39479,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "SignatureDateBox", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -39434,6 +39666,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "ContentDownloadUrlWithExpiration", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -39479,6 +39712,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "DateRangeOptionalEnd", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -39511,6 +39745,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "DateRangeRequiredEnd", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -39617,6 +39852,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "EntityConflictErrorMessage", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -39639,6 +39875,7 @@ customer page will be returned (this generally is a page listing the existing cu "name": "EntityNotFoundErrorMessage", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -40501,6 +40738,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "PhoneNumber", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -42517,6 +42755,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "RegionNational", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -42527,6 +42766,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "RegionStates", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -42557,6 +42797,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_commons:RegionStates", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -42569,6 +42810,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_commons:RegionNational", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -42592,6 +42834,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_commons:DateRangeOptionalEnd", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -42602,6 +42845,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -42618,6 +42862,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "RequestValidationError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -42654,6 +42899,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "ResourcePage", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43157,6 +43403,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "StreetAddressBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43226,6 +43473,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_commons:StreetAddressBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43250,6 +43498,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_commons:StreetAddressBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43289,6 +43538,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "UnauthorizedErrorMessage", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43314,6 +43564,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "UnprocessableEntityErrorMessage", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43374,6 +43625,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:HoldClaimAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43386,6 +43638,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:HoldReadyToSubmitClaimAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43396,6 +43649,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43418,6 +43672,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:CreateTaskV2Action", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43430,6 +43685,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:ThenValidateOrElseAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43442,6 +43698,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:RouteToWorkQueueAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43458,6 +43715,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "AliasedPrimitiveType", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43503,6 +43761,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "AndCondition", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43533,6 +43792,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:HoldClaimAvailableAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43545,6 +43805,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:HoldReadyToSubmitClaimAvailableAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43557,6 +43818,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:CreateTaskAvailableAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43569,6 +43831,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:CreateTaskV2AvailableAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43581,6 +43844,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:ThenValidateOrElseAvailableAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43593,6 +43857,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:RouteToWorkQueueAvailableAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43609,6 +43874,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "AvailableActionWithMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43661,6 +43927,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:FieldReference", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43671,6 +43938,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43693,6 +43961,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:VariableReference", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43795,6 +44064,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "ComparatorWithMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43833,6 +44103,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:AndCondition", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43845,6 +44116,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:OrCondition", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43857,6 +44129,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:EvaluateComparatorCondition", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43873,6 +44146,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "ContainerType", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43907,6 +44181,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43930,6 +44205,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -43987,6 +44263,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:CustomerDataRequestTaskAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -43999,6 +44276,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:OtherTaskAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44015,6 +44293,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "CreateTaskAvailableAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -44025,6 +44304,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "CreateTaskExecutedAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44045,6 +44325,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "CreateTaskV2Action", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44120,6 +44401,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "CreateTaskV2AvailableAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44143,6 +44425,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "CreateTaskV2ExecutedAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44172,6 +44455,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "CustomerDataRequestTaskAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44214,6 +44498,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "EvaluateComparatorCondition", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44259,6 +44544,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:HoldClaimExecutedAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44271,6 +44557,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:HoldReadyToSubmitClaimExecutedAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44283,6 +44570,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:CreateTaskExecutedAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44295,6 +44583,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:CreateTaskV2ExecutedAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44307,6 +44596,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:ThenValidateOrElseExecutedAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44319,6 +44609,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:RouteToWorkQueueExecutedAction", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44335,6 +44626,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "Field", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44403,6 +44695,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "name": "FieldReference", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44428,6 +44721,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44450,6 +44744,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:ObjectType", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44462,6 +44757,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code "extends": [ "type_configurable-rules-types:ContainerType", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44472,6 +44768,7 @@ https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44496,6 +44793,7 @@ Not for external use, e.g. the framework will never allow unknown literals to be { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44518,6 +44816,7 @@ Not for external use, e.g. the framework will never allow unknown literals to be "extends": [ "type_configurable-rules-types:ObjectValue", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44528,6 +44827,7 @@ Not for external use, e.g. the framework will never allow unknown literals to be { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44554,6 +44854,7 @@ Not for external use, e.g. the framework will never allow unknown literals to be "name": "HoldClaimAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -44564,6 +44865,7 @@ Not for external use, e.g. the framework will never allow unknown literals to be "name": "HoldClaimAvailableAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -44574,6 +44876,7 @@ Not for external use, e.g. the framework will never allow unknown literals to be "name": "HoldClaimExecutedAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44594,6 +44897,7 @@ Not for external use, e.g. the framework will never allow unknown literals to be "name": "HoldReadyToSubmitClaimAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -44604,6 +44908,7 @@ Not for external use, e.g. the framework will never allow unknown literals to be "name": "HoldReadyToSubmitClaimAvailableAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -44614,6 +44919,7 @@ Not for external use, e.g. the framework will never allow unknown literals to be "name": "HoldReadyToSubmitClaimExecutedAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44642,6 +44948,7 @@ The exception to this is the count element, which returns an integer primitive t { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44654,6 +44961,7 @@ Short-circuit if any item evaluates to false. { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44666,6 +44974,7 @@ Short-circuit if any item evaluates to true. { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44678,6 +44987,7 @@ Evaluates to false if there are no items in the list. { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44690,6 +45000,7 @@ Evaluates to false if there are no items in the list. { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44714,6 +45025,7 @@ Raises a runtime error if the index is out of the bounds of the list. { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44781,6 +45093,7 @@ Raises a runtime error if the index is out of the bounds of the list. "name": "ObjectFieldValue", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44810,6 +45123,7 @@ Raises a runtime error if the index is out of the bounds of the list. "name": "ObjectType", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44833,6 +45147,7 @@ Raises a runtime error if the index is out of the bounds of the list. "name": "ObjectValue", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44863,6 +45178,7 @@ E.g., using any of these on an optional> will evaluate the remainde { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44873,6 +45189,7 @@ E.g., using any of these on an optional> will evaluate the remainde { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -44889,6 +45206,7 @@ E.g., using any of these on an optional> will evaluate the remainde "name": "OrCondition", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -44912,6 +45230,7 @@ E.g., using any of these on an optional> will evaluate the remainde "name": "OtherTaskAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45024,6 +45343,7 @@ E.g., using any of these on an optional> will evaluate the remainde "name": "Path", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45052,6 +45372,7 @@ E.g., using any of these on an optional> will evaluate the remainde { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45074,6 +45395,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45094,6 +45416,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45125,6 +45448,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45147,6 +45471,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules-types:AliasedPrimitiveType", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -45168,6 +45493,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45190,6 +45516,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45212,6 +45539,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45234,6 +45562,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45256,6 +45585,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45278,6 +45608,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45298,6 +45629,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45318,6 +45650,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -45334,6 +45667,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "RouteToWorkQueueAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45354,6 +45688,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "RouteToWorkQueueAvailableAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -45364,6 +45699,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "RouteToWorkQueueExecutedAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45384,6 +45720,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "Statement", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45413,6 +45750,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ThenValidateOrElseAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45442,6 +45780,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ThenValidateOrElseAvailableAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -45452,6 +45791,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ThenValidateOrElseExecutedAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45475,6 +45815,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ValidComparison", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45527,6 +45868,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "VariableReference", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45547,6 +45889,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "TypeDoesNotMatchValueError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45576,6 +45919,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "Variable", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45651,6 +45995,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "VariableInUseError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45683,6 +46028,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "VariableNotFoundError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45703,6 +46049,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "VariableSummary", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45769,6 +46116,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "VariableTypeChangeNotAllowedError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45810,6 +46158,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "VariableWithNameAlreadyExistsError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45834,6 +46183,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45857,6 +46207,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ActionNotAvailableError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45889,6 +46240,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ConfigForScopeComputationError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45909,6 +46261,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ConfigForScopeResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -45941,6 +46294,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ConfigurableRule", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46015,6 +46369,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "CovariantListLiteralError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46050,6 +46405,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "DuplicateObjectFieldNamesError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46073,6 +46429,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "EmptyListLiteralError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -46083,6 +46440,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "IllegalIndexForNthItemError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46114,6 +46472,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "IncorrectTypeForPathElementError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46159,6 +46518,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:ActionNotAvailableError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46171,6 +46531,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:CovariantListLiteralError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46183,6 +46544,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:DuplicateObjectFieldNamesError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46195,6 +46557,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:EmptyListLiteralError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46207,6 +46570,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:IncorrectTypeForPathElementError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46219,6 +46583,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:MismatchedTypesForComparatorError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46231,6 +46596,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:MissingObjectFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46243,6 +46609,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules-variables:VariableNotFoundError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46255,6 +46622,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:IllegalIndexForNthItemError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46267,6 +46635,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:WorkQueueNotFoundError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46279,6 +46648,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:WorkQueueNotInScopeError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46295,6 +46665,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "LegalComparisonsResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46318,6 +46689,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "MismatchedTypesForComparatorError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46374,6 +46746,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "MissingObjectFieldError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46415,6 +46788,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "RuleNotFoundError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46440,6 +46814,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46460,6 +46835,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46470,6 +46846,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46491,6 +46868,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46513,6 +46891,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:RuleWithNameAlreadyExistsError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46529,6 +46908,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "RuleValidationFailure", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46557,6 +46937,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46569,6 +46950,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:ScopeDoesNotSupportConfigurableRulesError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46581,6 +46963,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:UnknownScopeError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46593,6 +46976,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:RuleValidationFailure", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46609,6 +46993,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "RuleWithNameAlreadyExistsError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46638,6 +47023,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_configurable-rules:StepLocator", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -46654,6 +47040,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ScopeDoesNotSupportConfigurableRulesError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46674,6 +47061,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ScopeNotEnabledForOrgError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46703,6 +47091,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "StepLocator", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46741,6 +47130,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "UnknownScopeError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46761,6 +47151,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ValidateRuleResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46781,6 +47172,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "WorkQueueNotFoundError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46801,6 +47193,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "WorkQueueNotInScopeError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46821,6 +47214,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "AuthorizedSignatory", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46918,6 +47312,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "extends": [ "type_contracts:ContractBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -46977,6 +47372,7 @@ E.g. providing FieldName("bar") here on object foo with string field foo.bar wil "name": "ContractBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47116,6 +47512,7 @@ be submitted under effective contracts) "name": "CredentialedEncounterStatusResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47146,6 +47543,7 @@ be submitted under effective contracts) "extends": [ "type_credentialing:RequiredCredentialingDates", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -47158,6 +47556,7 @@ be submitted under effective contracts) "extends": [ "type_credentialing:NonRequiredCredentialingDates", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -47212,6 +47611,7 @@ be submitted under effective contracts) "extends": [ "type_credentialing:CredentialedEncounterStatusResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -47222,6 +47622,7 @@ be submitted under effective contracts) { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -47238,6 +47639,7 @@ be submitted under effective contracts) "name": "NonRequiredCredentialingDates", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47275,6 +47677,7 @@ be submitted under effective contracts) "extends": [ "type_credentialing:ProviderCredentialingSpanBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47365,6 +47768,7 @@ be submitted under effective contracts) "name": "ProviderCredentialingSpanBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47400,6 +47804,7 @@ be submitted under effective contracts) "name": "RequiredCredentialingDates", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47429,6 +47834,7 @@ be submitted under effective contracts) "name": "Dashboard", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47498,6 +47904,7 @@ be submitted under effective contracts) "name": "DashboardGroup", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47772,6 +48179,7 @@ be submitted under effective contracts) "name": "GetAllDashboardGroupsResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47797,6 +48205,7 @@ be submitted under effective contracts) "extends": [ "type_diagnoses:StandaloneDiagnosisCreate", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47839,6 +48248,7 @@ be submitted under effective contracts) "name": "DiagnosisCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -47970,6 +48380,7 @@ Must obey the ICD-10 format if an ICD-10 code_type is provided, specifically: "extends": [ "type_diagnoses:DiagnosisCreate", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -48000,6 +48411,7 @@ Box 33 on the CMS-1500 claim form. "extends": [ "type_encounter-providers/v2:EncounterProviderBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -48059,6 +48471,7 @@ Box 33 on the CMS-1500 claim form. "extends": [ "type_encounter-providers/v2:EncounterProviderBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -48127,6 +48540,7 @@ Box 33 on the CMS-1500 claim form. "name": "EncounterProviderBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -48199,6 +48613,7 @@ Box 33 on the CMS-1500 claim form. "extends": [ "type_encounter-providers/v2:EncounterProviderBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -48251,6 +48666,7 @@ number issued to health care providers in the United States "extends": [ "type_encounter-providers/v2:EncounterProviderBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -48306,6 +48722,7 @@ number issued to health care providers in the United States "extends": [ "type_encounter-providers/v2:EncounterProviderBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -48433,6 +48850,7 @@ number issued to health care providers in the United States "name": "EncounterSummary", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -48940,6 +49358,7 @@ number issued to health care providers in the United States "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -48965,6 +49384,7 @@ number issued to health care providers in the United States "extends": [ "type_encounter_timeline:TimelineEventData", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49078,6 +49498,7 @@ Events are ordered in ascending order (oldest first). "name": "EncounterTimelineResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49105,6 +49526,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:GenericTimelineEventData", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49129,6 +49551,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:TimelineEventData", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49161,6 +49584,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:GenericTimelineEventData", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49173,6 +49597,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:GenericTimelineEventData", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49185,6 +49610,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:GenericTimelineEventData", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49197,6 +49623,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:ClaimSubmissionTimelineEvent", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49209,6 +49636,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:GenericTimelineEventData", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49221,6 +49649,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:GenericTimelineEventData", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49233,6 +49662,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:GenericTimelineEventData", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49245,6 +49675,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:GenericTimelineEventData", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49257,6 +49688,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounter_timeline:GenericNamedTimelineEventData", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49273,6 +49705,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "TimelineEventData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49306,6 +49739,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "EncounterFinancialInformation", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49357,6 +49791,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounters-internal/v1:PrimaryEncounterFinancialInformation", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49369,6 +49804,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounters-internal/v1:MultiplePayerResponsibilityEncounterFinancialInformation", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49385,6 +49821,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "EncounterFinancialInformationResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49472,6 +49909,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "MultiplePayerResponsibilityEncounterFinancialInformation", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49501,6 +49939,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "PrimaryEncounterFinancialInformation", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49532,6 +49971,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "RemitReversalResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49573,6 +50013,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounters/v4:OutOfNetworkContractingStatusResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49585,6 +50026,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounters/v4:InNetworkContractingStatusResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49595,6 +50037,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -49611,6 +50054,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "BaseAttachment", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49694,6 +50138,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "CashPayPayerErrorMessage", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49716,6 +50161,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "ClinicalNote", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49772,6 +50218,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "ClinicalNoteCategory", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49821,6 +50268,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "name": "ClinicalNoteCategoryCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -49907,6 +50355,7 @@ Useful for adding a new event that can be displayed in the UI without adding a t "extends": [ "type_encounters/v4:EncounterBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50182,6 +50631,7 @@ used in the billing process. "extends": [ "type_encounters/v4:BaseAttachment", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50218,6 +50668,7 @@ used in the billing process. "name": "EncounterBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50432,6 +50883,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "EncounterExternalIdUniquenessErrorType", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50455,6 +50907,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "EncounterGuarantorMissingContactInfoErrorType", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50513,6 +50966,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50574,6 +51028,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_encounters/v4:SuccessfulGenerateClinicalNotesPdfResponse", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -50590,6 +51045,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "InNetworkContractingStatusResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50613,6 +51069,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "IntakeFollowUp", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50672,6 +51129,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "IntakeQuestion", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50732,6 +51190,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "IntakeResponseAndFollowUps", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50772,6 +51231,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "Intervention", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50876,6 +51336,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "Lab", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50945,6 +51406,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "MarkAsNotBillableResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -50968,6 +51430,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "Medication", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -51089,6 +51552,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "NetworkStatusComputationResults", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -51208,6 +51672,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "OutOfNetworkContractingStatusResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -51228,6 +51693,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "PatientHistoryCategory", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -51345,6 +51811,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "SuccessfulGenerateClinicalNotesPdfResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -51397,6 +51864,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "Vitals", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -51473,6 +51941,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_enrollments:IndividualAssignee", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -51485,6 +51954,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_enrollments:OrganizationAssignee", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -51515,6 +51985,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "ChangeEnrollmentBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -51867,6 +52338,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "Enrollment", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -51990,6 +52462,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_enrollments:EnrollmentAttachmentBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52010,6 +52483,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "EnrollmentAttachmentBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52054,6 +52528,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_enrollments:EnrollmentAttachmentBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52091,6 +52566,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "EnrollmentAttachmentResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52113,6 +52589,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "EnrollmentFilters", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52272,6 +52749,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52323,6 +52801,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_enrollments:ChangeEnrollmentBase", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -52426,6 +52905,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "IndividualAssignee", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52448,6 +52928,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "LatestImportDatetimeResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52470,6 +52951,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "OrganizationAssignee", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52509,6 +52991,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52529,6 +53012,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -52547,6 +53031,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_era:ERABase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52567,6 +53052,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "ERABase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52633,6 +53119,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "TiaExpectedNetworkStatusResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52746,6 +53233,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "ExpectedNetworkStatusResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52789,6 +53277,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "GetExportsResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -52865,6 +53354,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "FeeScheduleConfigFilters", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53007,6 +53497,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53027,6 +53518,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -53066,6 +53558,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_fee-schedules/v1:FeeScheduleEntryConfigBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53086,6 +53579,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "FeeScheduleEntryConfigBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53173,6 +53667,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53241,6 +53736,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "BoundFeeSchedule", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53362,6 +53858,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "FeeScheduleEntry", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53432,6 +53929,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "FeeScheduleGeography", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53485,6 +53983,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -53495,6 +53994,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53524,6 +54024,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "GetBoundFeeScheduleResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53556,6 +54057,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "GetFeeScheduleConfigurationMechanismResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53578,6 +54080,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53601,6 +54104,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "GetGroupedFeeSchedulesForPayerResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53621,6 +54125,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "GroupedFeeSchedules", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53660,6 +54165,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -53670,6 +54176,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53810,6 +54317,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -53820,6 +54328,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53880,6 +54389,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -53890,6 +54400,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53919,6 +54430,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "ReferenceFeeScheduleMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53952,6 +54464,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "EncounterHasExistingGuarantorErrorType", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -53976,6 +54489,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_guarantor/v1:GuarantorBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54042,6 +54556,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "GuarantorBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54114,6 +54629,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_guarantor/v1:GuarantorBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54196,6 +54712,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_identifiers:IdentifierBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54216,6 +54733,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "IdentifierBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54280,6 +54798,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_identifiers:IdentifierBase", ], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -54304,6 +54823,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "IdentifierUpdate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54367,6 +54887,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_identifiers:MedicareProviderIdentifier", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -54379,6 +54900,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_identifiers:MedicaidProviderIdentifier", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -54395,6 +54917,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "MedicaidProviderIdentifier", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54426,6 +54949,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "MedicareProviderIdentifier", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54464,6 +54988,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_identifiers:IdentifierCreate", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -54476,6 +55001,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_identifiers:IdentifierUpdate", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -54486,6 +55012,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54550,6 +55077,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_individual:IndividualBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54621,6 +55149,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "name": "IndividualBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54679,6 +55208,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_individual:PatientBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54747,6 +55277,7 @@ if the Encounter has not occurred yet or if there is no intention of ever billin "extends": [ "type_individual:IndividualBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54791,6 +55322,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_individual:PatientBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54859,6 +55391,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_individual:SubscriberBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54890,6 +55423,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_individual:IndividualBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54936,6 +55470,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_individual:SubscriberBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -54963,6 +55498,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -54979,6 +55515,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "CarcFieldError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55017,6 +55554,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55038,6 +55576,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55058,6 +55597,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55078,6 +55618,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55109,6 +55650,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55119,6 +55661,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55131,6 +55674,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55147,6 +55691,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ClaimAdjustmentReasonCode", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55194,6 +55739,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55217,6 +55763,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55238,6 +55785,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55258,6 +55806,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55278,6 +55827,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55298,6 +55848,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55318,6 +55869,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55338,6 +55890,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55360,6 +55913,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:CarcFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55372,6 +55926,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:RarcFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55382,6 +55937,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55402,6 +55958,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55418,6 +55975,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "CreateInsuranceAdjustmentFieldsErrorsType", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55448,6 +56006,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "CreateInsuranceAdjustmentRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55548,6 +56107,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "CreateInsuranceAdjustmentResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55575,6 +56135,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55596,6 +56157,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55608,6 +56170,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55638,6 +56201,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "InsuranceAdjustmentAttachmentResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55679,6 +56243,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55702,6 +56267,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55723,6 +56289,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55735,6 +56302,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55751,6 +56319,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OtherFieldError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55773,6 +56342,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "RarcFieldError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55809,6 +56379,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55840,6 +56411,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55852,6 +56424,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:OtherFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -55868,6 +56441,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "RemittanceAdviceRemarkCode", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -55888,6 +56462,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ServiceLineAdjustmentRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56012,6 +56587,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:CarcFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -56024,6 +56600,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-adjustments/v1:RarcFieldError", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -56034,6 +56611,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56054,6 +56632,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56074,6 +56653,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -56090,6 +56670,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ValidateInsuranceAdjustmentFieldsErrorsType", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56120,6 +56701,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ValidateInsuranceAdjustmentRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56147,6 +56729,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ValidateInsuranceAdjustmentResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56174,6 +56757,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ValidateServiceLineAdjustmentResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56209,6 +56793,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-card:InsuranceCardBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56318,6 +56903,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "InsuranceCardBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56383,6 +56969,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_insurance-card:InsuranceCardBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56509,6 +57096,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "InsuranceCardImages", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56548,6 +57136,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "Director", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56570,6 +57159,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "Movie", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56612,6 +57202,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "MovieCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56661,6 +57252,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_invoices:Invoice", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -56673,6 +57265,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_invoices:InvoicePreview", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -56689,6 +57282,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "Invoice", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56843,6 +57437,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "InvoiceFilter", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -56980,6 +57575,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "InvoiceItem", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57011,6 +57607,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "InvoicePreview", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57222,6 +57819,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57245,6 +57843,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "CanvasEmrConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57320,6 +57919,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "CanvasEmrConfigCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57417,6 +58017,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "CanvasEmrConfigUpdate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57526,6 +58127,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ElationEmrConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57571,6 +58173,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ElationEmrConfigCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57652,6 +58255,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ElationEmrConfigUpdate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57752,6 +58356,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_managed-emr-configs/v1:IntegrationLevelElationServiceFacilityRoutingMetadata", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -57764,6 +58369,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_managed-emr-configs/v1:RuleLevelElationServiceFacilityRoutingMetadata", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -57776,6 +58382,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_managed-emr-configs/v1:FilterActionLevelElationServiceFacilityRoutingMetadata", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -57792,6 +58399,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "FilterActionLevelElationServiceFacilityRoutingMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -57802,6 +58410,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "IntegrationLevelElationServiceFacilityRoutingMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57824,6 +58433,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ManagedEmrConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -57907,6 +58517,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_managed-emr-configs/v1:CanvasEmrConfig", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -57919,6 +58530,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_managed-emr-configs/v1:ElationEmrConfig", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -57935,6 +58547,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ManagedEmrConfigCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58009,6 +58622,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_managed-emr-configs/v1:CanvasEmrConfigCreate", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -58021,6 +58635,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_managed-emr-configs/v1:ElationEmrConfigCreate", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -58053,6 +58668,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58076,6 +58692,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ManagedEmrConfigUpdate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58162,6 +58779,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_managed-emr-configs/v1:CanvasEmrConfigUpdate", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -58174,6 +58792,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_managed-emr-configs/v1:ElationEmrConfigUpdate", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -58190,6 +58809,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "RuleLevelElationServiceFacilityRoutingMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -58200,6 +58820,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "AddOrganizationPayerRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58232,6 +58853,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "GetMultiOrganizationPayersResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58252,6 +58874,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OrganizationPayer", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58281,6 +58904,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OrganizationPayerSummary", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58305,6 +58929,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58328,6 +58953,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "SearchOrganizationPayerResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58355,6 +58981,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_organization-payers:OrganizationPayer", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -58365,6 +58992,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -58596,6 +59224,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_organization-providers/v2:OrganizationProviderBase", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58649,6 +59278,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OrganizationProviderAddress", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58678,6 +59308,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OrganizationProviderBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58871,6 +59502,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -58946,6 +59578,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OrganizationProviderCreateV2", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59137,6 +59770,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59160,6 +59794,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OrganizationProviderUpdateV2", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59363,6 +59998,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OrganizationProviderV2", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59563,6 +60199,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_organization-tags:OrganizationTagCreate", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59583,6 +60220,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OrganizationTagCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59641,6 +60279,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59699,6 +60338,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "CreatePageSessionRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59890,6 +60530,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59913,6 +60554,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PatientPaymentConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -59995,6 +60637,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PatientPaymentConfigCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -60059,6 +60702,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PatientPaymentConfigFilter", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -60143,6 +60787,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PatientPaymentConfigPatch", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -60258,6 +60903,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PatientPayment", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -60587,6 +61233,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -60610,6 +61257,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PatientPayment", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -60939,6 +61587,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -60962,6 +61611,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "BaseErrorMessage", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -60989,6 +61639,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_patients:BaseErrorMessage", ], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -60999,6 +61650,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "MissingPrimarySubscriberErrorMessage", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61024,6 +61676,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PatientRollup", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61161,6 +61814,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61184,6 +61838,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PatientRollupSummary", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61456,6 +62111,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "Payer", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61528,6 +62184,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61579,6 +62236,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "CedarPaymentAccountConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61656,6 +62314,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ChargebeePaymentAccountConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61747,6 +62406,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ChargebeePaymentAccountConfigCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61829,6 +62489,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ChargebeePaymentAccountConfigPatch", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -61944,6 +62605,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:ChargebeePaymentAccountConfig", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -61956,6 +62618,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:SquarePaymentAccountConfig", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -61968,6 +62631,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:StripePaymentAccountConfig", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -61980,6 +62644,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:CedarPaymentAccountConfig", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -62003,6 +62668,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:ChargebeePaymentAccountConfigCreate", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -62015,6 +62681,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:SquarePaymentAccountConfigCreate", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -62027,6 +62694,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:StripePaymentAccountConfigCreate", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -62057,6 +62725,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PaymentAccountConfigNameAlreadyExistsErrorContent", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -62086,6 +62755,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:ChargebeePaymentAccountConfigPatch", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -62098,6 +62768,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:SquarePaymentAccountConfigPatch", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -62110,6 +62781,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_payment-account-configs:StripePaymentAccountConfigPatch", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -62157,6 +62829,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "SquarePaymentAccountConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -62248,6 +62921,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "SquarePaymentAccountConfigCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -62330,6 +63004,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "SquarePaymentAccountConfigPatch", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -62427,6 +63102,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "StripePaymentAccountConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -62592,6 +63268,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "StripePaymentAccountConfigCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -62748,6 +63425,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "StripePaymentAccountConfigPatch", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -62940,6 +63618,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "VerifyCanInvoiceRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -62986,6 +63665,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "VerifyCanInvoiceResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -63009,6 +63689,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "VerifyCanInvoiceResponseItem", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -63089,6 +63770,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "VerifyCustomerExistsResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -63801,6 +64483,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ConfigurableRuleSummary", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -63863,6 +64546,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OrdinaryRule", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -63905,6 +64589,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "Phase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -63959,6 +64644,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "Pipeline", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64013,6 +64699,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PipelineConfiguration", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64043,6 +64730,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_pipeline-configuration:OrdinaryRule", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64055,6 +64743,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_pipeline-configuration:ConfigurableRuleSummary", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64071,6 +64760,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "Step", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64141,6 +64831,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64161,6 +64852,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64187,6 +64879,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ContentContainer", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64232,6 +64925,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ContentSection", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64279,6 +64973,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "GetMultiRemitsPagedResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64320,6 +65015,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "PostRemitResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64340,6 +65036,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "Remit", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64516,6 +65213,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64591,6 +65289,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64601,6 +65300,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64611,6 +65311,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64627,6 +65328,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "RaResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64658,6 +65360,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "RulesEngineCheckFailure", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64685,6 +65388,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64697,6 +65401,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_rules_engine_types:RulesEngineCheckFailure", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64759,6 +65464,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "RulesEngineProcessFailure", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64788,6 +65494,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_rules_engine_types:RulesEngineProcessFailure", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64800,6 +65507,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_rules_engine_types:RulesEngineProcessSuccessAsync", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64812,6 +65520,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_rules_engine_types:RulesEngineProcessSuccessSync", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -64828,6 +65537,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "RulesEngineProcessSuccess", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64850,6 +65560,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_rules_engine_types:RulesEngineProcessSuccess", ], + "extraProperties": undefined, "properties": [], "type": "object", }, @@ -64862,6 +65573,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "extends": [ "type_rules_engine_types:RulesEngineProcessSuccess", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64882,6 +65594,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "OtherPayerAdjudicationDetails", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64936,6 +65649,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "SecondarySubmissionCheckResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64956,6 +65670,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "SecondarySubmissionCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64976,6 +65691,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "SecondarySubmissionResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -64996,6 +65712,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "ServiceAdjustment", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65041,6 +65758,7 @@ For example, your internal patient ID or a Dr. Chrono patient ID. Box 1a on the "name": "EncounterServiceFacility", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65088,6 +65806,7 @@ must match what was provided to the payer during the credentialing process. "name": "EncounterServiceFacilityBase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65133,6 +65852,7 @@ must match what was provided to the payer during the credentialing process. "name": "CarcPopoverDetails", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65187,6 +65907,7 @@ must match what was provided to the payer during the credentialing process. "name": "ChargeRow", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65218,6 +65939,7 @@ must match what was provided to the payer during the credentialing process. "name": "Check", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65251,6 +65973,7 @@ must match what was provided to the payer during the credentialing process. "name": "EraPayer", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65302,6 +66025,7 @@ must match what was provided to the payer during the credentialing process. "name": "GetLedgerTablesResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65343,6 +66067,7 @@ must match what was provided to the payer during the credentialing process. "name": "LedgerTableRow", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65404,6 +66129,7 @@ must match what was provided to the payer during the credentialing process. "extends": [ "type_service-line-ledgers/v1:ChargeRow", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -65416,6 +66142,7 @@ must match what was provided to the payer during the credentialing process. "extends": [ "type_service-line-ledgers/v1:RemitRow", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -65428,6 +66155,7 @@ must match what was provided to the payer during the credentialing process. "extends": [ "type_service-line-ledgers/v1:PatientPaymentRow", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -65440,6 +66168,7 @@ must match what was provided to the payer during the credentialing process. "extends": [ "type_service-line-ledgers/v1:WriteOffRow", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -65456,6 +66185,7 @@ must match what was provided to the payer during the credentialing process. "name": "PatientPaymentRow", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65530,6 +66260,7 @@ must match what was provided to the payer during the credentialing process. "name": "RarcPopoverDetails", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65564,6 +66295,7 @@ must match what was provided to the payer during the credentialing process. "name": "RemitRow", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65643,6 +66375,7 @@ must match what was provided to the payer during the credentialing process. "name": "RemitRowFinancialInformation", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65751,6 +66484,7 @@ must match what was provided to the payer during the credentialing process. "name": "RemitRowPayerInformation", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65780,6 +66514,7 @@ must match what was provided to the payer during the credentialing process. "name": "ServiceLineLedgerTable", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -65812,6 +66547,7 @@ must match what was provided to the payer during the credentialing process. "name": "WriteOffRow", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -66047,6 +66783,7 @@ must match what was provided to the payer during the credentialing process. "name": "DrugIdentification", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -66209,6 +66946,7 @@ must match what was provided to the payer during the credentialing process. "name": "ServiceLine", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -66494,6 +67232,7 @@ will be empty. "name": "ServiceLineAdjustment", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -66572,6 +67311,7 @@ will be empty. "name": "ServiceLineCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -66685,6 +67425,7 @@ equal to 0. "name": "ServiceLineCreateStandalone", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -66952,6 +67693,7 @@ A service line may be denied for different reasons over time, but only one reaso "name": "ServiceLineDenialReason", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -66975,6 +67717,7 @@ A service line may be denied for different reasons over time, but only one reaso "name": "ServiceLineERAData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67012,6 +67755,7 @@ A service line may be denied for different reasons over time, but only one reaso "name": "ServiceLineFinancialInformation", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67056,6 +67800,7 @@ A service line may be denied for different reasons over time, but only one reaso "name": "ServiceLineFinancialInformationByPayerResponsibilityResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67091,6 +67836,7 @@ A service line may be denied for different reasons over time, but only one reaso "name": "ServiceLineFinancialInformationResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67175,6 +67921,7 @@ A service line may be denied for different reasons over time, but only one reaso "name": "ServiceLineUpdate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67442,6 +68189,7 @@ Example: 1.1 is valid, 1.11 is not. "extends": [ "type_tags:TagCreate", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67525,6 +68273,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "TagCreate", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67856,6 +68605,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "TaskAction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67892,6 +68642,7 @@ Example: 1.1 is valid, 1.11 is not. { "additionalProperties": { "extends": [], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -67908,6 +68659,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "TaskActions", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67931,6 +68683,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "ChildPatch", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -67970,6 +68723,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "ParentPatch", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68000,6 +68754,7 @@ Example: 1.1 is valid, 1.11 is not. "extends": [ "type_test-fern:ChildPatch", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -68016,6 +68771,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "FailedValidationResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68101,6 +68857,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "IngestResults", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68140,6 +68897,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "UploadResults", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68169,6 +68927,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "ValidationResults", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68214,6 +68973,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "AuthZeroMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68236,6 +68996,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "GoogleAppsMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68258,6 +69019,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "HumanUserMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68298,6 +69060,7 @@ Example: 1.1 is valid, 1.11 is not. "extends": [ "type_users/v2:AuthZeroMetadata", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -68310,6 +69073,7 @@ Example: 1.1 is valid, 1.11 is not. "extends": [ "type_users/v2:GoogleAppsMetadata", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -68322,6 +69086,7 @@ Example: 1.1 is valid, 1.11 is not. "extends": [ "type_users/v2:OtherIdpMetadata", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -68338,6 +69103,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "InternalEnrollmentAssignees", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68370,6 +69136,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "MachineUserMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68392,6 +69159,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "OtherIdpMetadata", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68414,6 +69182,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "User", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68463,6 +69232,7 @@ Example: 1.1 is valid, 1.11 is not. "extends": [ "type_users/v2:MachineUserMetadata", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -68475,6 +69245,7 @@ Example: 1.1 is valid, 1.11 is not. "extends": [ "type_users/v2:HumanUserMetadata", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -68491,6 +69262,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "UserV2", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68555,6 +69327,7 @@ Example: 1.1 is valid, 1.11 is not. "extends": [ "type_commons:ResourcePage", ], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68578,6 +69351,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "GetAllWorkQueuesResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68601,6 +69375,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "WorkQueue", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68675,6 +69450,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "WorkQueueCategory", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68766,6 +69542,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "WorkQueueNotFoundError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68786,6 +69563,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "WorkQueueResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -68815,6 +69593,7 @@ Example: 1.1 is valid, 1.11 is not. "name": "WorkQueueStatistics", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -75706,6 +76485,7 @@ exports[`transformApiDefinitionToDb > {"name":"cyclical-1"} 1`] = ` "name": "Transaction", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -75741,6 +76521,7 @@ exports[`transformApiDefinitionToDb > {"name":"cyclical-1"} 1`] = ` "name": "User", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -76210,6 +76991,7 @@ exports[`transformApiDefinitionToDb > {"name":"string"} 1`] = ` "name": "CreateLcfRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -76247,6 +77029,7 @@ exports[`transformApiDefinitionToDb > {"name":"string"} 1`] = ` "name": "LeastCostFulfillment", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -76326,6 +77109,7 @@ First comment includes the carrier, service code, account, cost, and package "name": "Order", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -76391,6 +77175,7 @@ delivered to the customer by. If no limit, set as null. "name": "Package", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -76420,6 +77205,7 @@ delivered to the customer by. If no limit, set as null. "name": "Parcel", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -76462,6 +77248,7 @@ Defaults to 'CUSTOM_PACKAGE' if the user provides a package. "name": "ParcelDimensions", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -76517,6 +77304,7 @@ Defaults to 'CUSTOM_PACKAGE' if the user provides a package. "name": "ParcelWeight", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -76550,6 +77338,7 @@ Defaults to 'CUSTOM_PACKAGE' if the user provides a package. "name": "Service", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -76627,6 +77416,7 @@ Defaults to 'CUSTOM_PACKAGE' if the user provides a package. "name": "ShipTo", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -80810,6 +81600,7 @@ or overwritten with default values.", "name": "ChatMessage", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -80841,6 +81632,7 @@ or overwritten with default values.", "name": "ChatMessageRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -80906,6 +81698,7 @@ or overwritten with default values.", "name": "ConditionalNodeResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -80926,6 +81719,7 @@ or overwritten with default values.", "name": "ConditionalNodeResultData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -80973,6 +81767,7 @@ or overwritten with default values.", "name": "DeploymentRead", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81134,6 +81929,7 @@ or overwritten with default values.", "name": "DocumentDocumentToDocumentIndex", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81185,6 +81981,7 @@ or overwritten with default values.", "name": "DocumentIndexRead", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81310,6 +82107,7 @@ or overwritten with default values.", "name": "DocumentRead", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81474,6 +82272,7 @@ or overwritten with default values.", "name": "EnrichedNormalizedCompletion", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81600,6 +82399,7 @@ or overwritten with default values.", "name": "EvaluationParams", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81625,6 +82425,7 @@ or overwritten with default values.", "name": "EvaluationParamsRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81650,6 +82451,7 @@ or overwritten with default values.", "name": "ExecuteWorkflowStreamErrorResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81700,6 +82502,7 @@ or overwritten with default values.", "name": "GenerateErrorResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81722,6 +82525,7 @@ or overwritten with default values.", "name": "GenerateOptionsRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81748,6 +82552,7 @@ or overwritten with default values.", "name": "GenerateRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81808,6 +82613,7 @@ or overwritten with default values.", "name": "GenerateResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81831,6 +82637,7 @@ or overwritten with default values.", "name": "GenerateResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81866,6 +82673,7 @@ or overwritten with default values.", "name": "GenerateResultData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81889,6 +82697,7 @@ or overwritten with default values.", "name": "GenerateResultError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81911,6 +82720,7 @@ or overwritten with default values.", "name": "GenerateStreamResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81931,6 +82741,7 @@ or overwritten with default values.", "name": "GenerateStreamResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -81977,6 +82788,7 @@ or overwritten with default values.", "name": "GenerateStreamResultData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82188,6 +83000,7 @@ or overwritten with default values.", "name": "MetadataFilterConfigRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82302,6 +83115,7 @@ or overwritten with default values.", "name": "MetadataFilterRuleRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82416,6 +83230,7 @@ or overwritten with default values.", "name": "ModelVersionBuildConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82450,6 +83265,7 @@ or overwritten with default values.", "name": "ModelVersionCompilePromptResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82470,6 +83286,7 @@ or overwritten with default values.", "name": "ModelVersionCompiledPrompt", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82503,6 +83320,7 @@ or overwritten with default values.", "name": "ModelVersionExecConfig", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82575,6 +83393,7 @@ or overwritten with default values.", "name": "ModelVersionExecConfigParameters", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82698,6 +83517,7 @@ or overwritten with default values.", "name": "ModelVersionRead", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82844,6 +83664,7 @@ or overwritten with default values.", "name": "ModelVersionSandboxSnapshot", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82908,6 +83729,7 @@ or overwritten with default values.", "name": "NodeInputCompiledChatHistoryValue", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -82956,6 +83778,7 @@ or overwritten with default values.", "name": "NodeInputCompiledJsonValue", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83009,6 +83832,7 @@ or overwritten with default values.", "name": "NodeInputCompiledSearchResultsValue", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83057,6 +83881,7 @@ or overwritten with default values.", "name": "NodeInputCompiledStringValue", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83111,6 +83936,7 @@ or overwritten with default values.", "extends": [ "type_:NodeInputCompiledStringValue", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -83123,6 +83949,7 @@ or overwritten with default values.", "extends": [ "type_:NodeInputCompiledJsonValue", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -83135,6 +83962,7 @@ or overwritten with default values.", "extends": [ "type_:NodeInputCompiledChatHistoryValue", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -83147,6 +83975,7 @@ or overwritten with default values.", "extends": [ "type_:NodeInputCompiledSearchResultsValue", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -83163,6 +83992,7 @@ or overwritten with default values.", "name": "NormalizedLogProbs", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83200,6 +84030,7 @@ or overwritten with default values.", "name": "NormalizedTokenLogProbs", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83273,6 +84104,7 @@ or overwritten with default values.", "name": "PaginatedSlimDocumentList", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83397,6 +84229,7 @@ or overwritten with default values.", "name": "PromptNodeResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83417,6 +84250,7 @@ or overwritten with default values.", "name": "PromptNodeResultData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83467,6 +84301,7 @@ or overwritten with default values.", "name": "PromptTemplateBlock", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83507,6 +84342,7 @@ or overwritten with default values.", "name": "PromptTemplateBlockData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83541,6 +84377,7 @@ or overwritten with default values.", "name": "PromptTemplateBlockDataRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83575,6 +84412,7 @@ or overwritten with default values.", "name": "PromptTemplateBlockProperties", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83715,6 +84553,7 @@ or overwritten with default values.", "name": "PromptTemplateBlockPropertiesRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83855,6 +84694,7 @@ or overwritten with default values.", "name": "PromptTemplateBlockRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83953,6 +84793,7 @@ or overwritten with default values.", "name": "RegisterPromptErrorResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -83975,6 +84816,7 @@ or overwritten with default values.", "name": "RegisterPromptModelParametersRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84098,6 +84940,7 @@ or overwritten with default values.", "name": "RegisterPromptPrompt", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84131,6 +84974,7 @@ or overwritten with default values.", "name": "RegisterPromptPromptInfoRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84177,6 +85021,7 @@ or overwritten with default values.", "name": "RegisterPromptResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84233,6 +85078,7 @@ or overwritten with default values.", "name": "RegisteredPromptDeployment", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84277,6 +85123,7 @@ or overwritten with default values.", "name": "RegisteredPromptInputVariableRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84325,6 +85172,7 @@ or overwritten with default values.", "name": "RegisteredPromptModelVersion", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84358,6 +85206,7 @@ or overwritten with default values.", "name": "RegisteredPromptSandbox", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84391,6 +85240,7 @@ or overwritten with default values.", "name": "RegisteredPromptSandboxSnapshot", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84413,6 +85263,7 @@ or overwritten with default values.", "name": "SandboxMetricInputParams", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84436,6 +85287,7 @@ or overwritten with default values.", "name": "SandboxMetricInputParamsRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84459,6 +85311,7 @@ or overwritten with default values.", "name": "SandboxScenario", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84516,6 +85369,7 @@ or overwritten with default values.", "name": "ScenarioInput", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84579,6 +85433,7 @@ or overwritten with default values.", "name": "ScenarioInputRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84664,6 +85519,7 @@ or overwritten with default values.", "name": "SearchErrorResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84686,6 +85542,7 @@ or overwritten with default values.", "name": "SearchFiltersRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84726,6 +85583,7 @@ or overwritten with default values.", "name": "SearchNodeResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84746,6 +85604,7 @@ or overwritten with default values.", "name": "SearchNodeResultData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84805,6 +85664,7 @@ or overwritten with default values.", "name": "SearchRequestOptionsRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84866,6 +85726,7 @@ or overwritten with default values.", "name": "SearchResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84889,6 +85750,7 @@ or overwritten with default values.", "name": "SearchResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -84945,6 +85807,7 @@ or overwritten with default values.", "name": "SearchResultDocument", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85012,6 +85875,7 @@ or overwritten with default values.", "name": "SearchResultMergingRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85034,6 +85898,7 @@ or overwritten with default values.", "name": "SearchWeightsRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85067,6 +85932,7 @@ or overwritten with default values.", "name": "SlimDocument", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85220,6 +86086,7 @@ or overwritten with default values.", "name": "SubmitCompletionActualRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85301,6 +86168,7 @@ or overwritten with default values.", "name": "SubmitCompletionActualsErrorResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85330,6 +86198,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowExecutionActualStringRequest", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85342,6 +86211,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowExecutionActualJsonRequest", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85354,6 +86224,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowExecutionActualChatHistoryRequest", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85370,6 +86241,7 @@ or overwritten with default values.", "name": "TemplatingNodeChatHistoryResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85407,6 +86279,7 @@ or overwritten with default values.", "name": "TemplatingNodeJsonResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85449,6 +86322,7 @@ or overwritten with default values.", "name": "TemplatingNodeResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85469,6 +86343,7 @@ or overwritten with default values.", "name": "TemplatingNodeResultData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85496,6 +86371,7 @@ or overwritten with default values.", "extends": [ "type_:TemplatingNodeStringResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85508,6 +86384,7 @@ or overwritten with default values.", "extends": [ "type_:TemplatingNodeJsonResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85520,6 +86397,7 @@ or overwritten with default values.", "extends": [ "type_:TemplatingNodeChatHistoryResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85532,6 +86410,7 @@ or overwritten with default values.", "extends": [ "type_:TemplatingNodeSearchResultsResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85548,6 +86427,7 @@ or overwritten with default values.", "name": "TemplatingNodeSearchResultsResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85585,6 +86465,7 @@ or overwritten with default values.", "name": "TemplatingNodeStringResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85621,6 +86502,7 @@ or overwritten with default values.", "name": "TerminalNodeChatHistoryResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85672,6 +86554,7 @@ or overwritten with default values.", "name": "TerminalNodeJsonResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85728,6 +86611,7 @@ or overwritten with default values.", "name": "TerminalNodeResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85748,6 +86632,7 @@ or overwritten with default values.", "name": "TerminalNodeResultData", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85775,6 +86660,7 @@ or overwritten with default values.", "extends": [ "type_:TerminalNodeStringResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85787,6 +86673,7 @@ or overwritten with default values.", "extends": [ "type_:TerminalNodeJsonResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85799,6 +86686,7 @@ or overwritten with default values.", "extends": [ "type_:TerminalNodeChatHistoryResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85811,6 +86699,7 @@ or overwritten with default values.", "extends": [ "type_:TerminalNodeSearchResultsResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -85827,6 +86716,7 @@ or overwritten with default values.", "name": "TerminalNodeSearchResultsResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85878,6 +86768,7 @@ or overwritten with default values.", "name": "TerminalNodeStringResult", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85928,6 +86819,7 @@ or overwritten with default values.", "name": "TestSuiteTestCase", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -85993,6 +86885,7 @@ or overwritten with default values.", "name": "UploadDocumentErrorResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86015,6 +86908,7 @@ or overwritten with default values.", "name": "UploadDocumentResponse", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86037,6 +86931,7 @@ or overwritten with default values.", "name": "VellumVariable", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86113,6 +87008,7 @@ or overwritten with default values.", "name": "WorkflowEventError", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86144,6 +87040,7 @@ or overwritten with default values.", "name": "WorkflowExecutionActualChatHistoryRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86226,6 +87123,7 @@ or overwritten with default values.", "name": "WorkflowExecutionActualJsonRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86313,6 +87211,7 @@ or overwritten with default values.", "name": "WorkflowExecutionActualStringRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86462,6 +87361,7 @@ or overwritten with default values.", "name": "WorkflowExecutionNodeResultEvent", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86521,6 +87421,7 @@ or overwritten with default values.", "name": "WorkflowExecutionWorkflowResultEvent", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86587,6 +87488,7 @@ or overwritten with default values.", "extends": [ "type_:PromptNodeResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -86599,6 +87501,7 @@ or overwritten with default values.", "extends": [ "type_:SearchNodeResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -86611,6 +87514,7 @@ or overwritten with default values.", "extends": [ "type_:TemplatingNodeResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -86623,6 +87527,7 @@ or overwritten with default values.", "extends": [ "type_:ConditionalNodeResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -86635,6 +87540,7 @@ or overwritten with default values.", "extends": [ "type_:TerminalNodeResult", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -86651,6 +87557,7 @@ or overwritten with default values.", "name": "WorkflowNodeResultEvent", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86791,6 +87698,7 @@ or overwritten with default values.", "name": "WorkflowRequestChatHistoryInputRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86832,6 +87740,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowRequestStringInputRequest", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -86844,6 +87753,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowRequestJsonInputRequest", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -86856,6 +87766,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowRequestChatHistoryInputRequest", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -86872,6 +87783,7 @@ or overwritten with default values.", "name": "WorkflowRequestJsonInputRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86911,6 +87823,7 @@ or overwritten with default values.", "name": "WorkflowRequestStringInputRequest", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -86944,6 +87857,7 @@ or overwritten with default values.", "name": "WorkflowResultEvent", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -87017,6 +87931,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowResultEventOutputDataString", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -87029,6 +87944,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowResultEventOutputDataJson", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -87041,6 +87957,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowResultEventOutputDataChatHistory", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -87053,6 +87970,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowResultEventOutputDataSearchResults", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -87069,6 +87987,7 @@ or overwritten with default values.", "name": "WorkflowResultEventOutputDataChatHistory", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -87154,6 +88073,7 @@ or overwritten with default values.", "name": "WorkflowResultEventOutputDataJson", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -87244,6 +88164,7 @@ or overwritten with default values.", "name": "WorkflowResultEventOutputDataSearchResults", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -87329,6 +88250,7 @@ or overwritten with default values.", "name": "WorkflowResultEventOutputDataString", "shape": { "extends": [], + "extraProperties": undefined, "properties": [ { "availability": undefined, @@ -87420,6 +88342,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowExecutionWorkflowResultEvent", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, @@ -87432,6 +88355,7 @@ or overwritten with default values.", "extends": [ "type_:WorkflowExecutionNodeResultEvent", ], + "extraProperties": undefined, "properties": [], }, "availability": undefined, diff --git a/servers/fdr/src/api/generated/api/resources/api/resources/v1/resources/read/resources/type/types/ObjectType.d.ts b/servers/fdr/src/api/generated/api/resources/api/resources/v1/resources/read/resources/type/types/ObjectType.d.ts index c280793e44..105e2394cf 100644 --- a/servers/fdr/src/api/generated/api/resources/api/resources/v1/resources/read/resources/type/types/ObjectType.d.ts +++ b/servers/fdr/src/api/generated/api/resources/api/resources/v1/resources/read/resources/type/types/ObjectType.d.ts @@ -5,4 +5,5 @@ import * as FernRegistry from "../../../../../../../../../index"; export interface ObjectType { extends: FernRegistry.TypeId[]; properties: FernRegistry.api.v1.read.ObjectProperty[]; + extraProperties: FernRegistry.api.v1.read.TypeReference | undefined; } diff --git a/servers/fdr/src/api/generated/api/resources/api/resources/v1/resources/register/resources/type/types/ObjectType.d.ts b/servers/fdr/src/api/generated/api/resources/api/resources/v1/resources/register/resources/type/types/ObjectType.d.ts index e798753222..6de26b7491 100644 --- a/servers/fdr/src/api/generated/api/resources/api/resources/v1/resources/register/resources/type/types/ObjectType.d.ts +++ b/servers/fdr/src/api/generated/api/resources/api/resources/v1/resources/register/resources/type/types/ObjectType.d.ts @@ -5,4 +5,5 @@ import * as FernRegistry from "../../../../../../../../../index"; export interface ObjectType { extends: FernRegistry.TypeId[]; properties: FernRegistry.api.v1.register.ObjectProperty[]; + extraProperties: FernRegistry.api.v1.register.TypeReference | undefined; }