Root Schema : SchemasUI
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/GenericRestRs"
},
{
"type":"object",
"properties":{
"items":{
"type":"array",
"items":{
"$ref":"#/components/schemas/SchemaUI"
}
},
"size":{
"type":"integer",
"format":"int32"
}
}
}
]
}
Nested Schema : GenericRestRs
Type: object
Show Source
{
"type":"object",
"properties":{
"links":{
"type":"array",
"items":{
"$ref":"#/components/schemas/SuiteLink"
}
}
}
}
Nested Schema : SchemasUI-allOf[1]
Type: object
Show Source
{
"type":"object",
"properties":{
"items":{
"type":"array",
"items":{
"$ref":"#/components/schemas/SchemaUI"
}
},
"size":{
"type":"integer",
"format":"int32"
}
}
}
Nested Schema : links
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/SuiteLink"
}
}
Nested Schema : SuiteLink
Type: object
Show Source
{
"type":"object",
"properties":{
"rel":{
"type":"string"
},
"href":{
"type":"string"
},
"media-type":{
"type":"string"
},
"method":{
"type":"string"
}
}
}
Nested Schema : items
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/SchemaUI"
}
}
Nested Schema : SchemaUI
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/ViewModel"
},
{
"$ref":"#/components/schemas/GenericRestRs"
},
{
"type":"object",
"properties":{
"segmentDelimiter":{
"type":"string"
},
"elementDelimiter":{
"type":"string"
},
"activeAgr":{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
},
"inActiveAgr":{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
},
"docNode":{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentNode"
}
},
"state":{
"type":"string"
},
"active":{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentUI"
}
},
"inActive":{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentUI"
}
},
"maxSize":{
"$ref":"#/components/schemas/MaxSize"
},
"parameters":{
"type":"string"
},
"chars":{
"type":"integer",
"format":"int32"
},
"encoding":{
"type":"string"
}
}
}
]
}
Nested Schema : ViewModel
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/GenericRestRs"
},
{
"type":"object",
"properties":{
"name":{
"type":"string"
},
"createdBy":{
"type":"string"
},
"updatedBy":{
"type":"string"
},
"createdDate":{
"type":"string"
},
"updatedDate":{
"type":"string"
},
"txName":{
"type":"string"
},
"id":{
"type":"string"
},
"txId":{
"type":"string"
},
"std":{
"type":"string"
},
"version":{
"type":"string"
},
"desc":{
"type":"string"
},
"count":{
"type":"integer",
"format":"int32"
}
}
}
]
}
Nested Schema : ViewModel-allOf[1]
Type: object
Show Source
{
"type":"object",
"properties":{
"name":{
"type":"string"
},
"createdBy":{
"type":"string"
},
"updatedBy":{
"type":"string"
},
"createdDate":{
"type":"string"
},
"updatedDate":{
"type":"string"
},
"txName":{
"type":"string"
},
"id":{
"type":"string"
},
"txId":{
"type":"string"
},
"std":{
"type":"string"
},
"version":{
"type":"string"
},
"desc":{
"type":"string"
},
"count":{
"type":"integer",
"format":"int32"
}
}
}
Nested Schema : SchemaUI-allOf[2]
Type: object
Show Source
{
"type":"object",
"properties":{
"segmentDelimiter":{
"type":"string"
},
"elementDelimiter":{
"type":"string"
},
"activeAgr":{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
},
"inActiveAgr":{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
},
"docNode":{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentNode"
}
},
"state":{
"type":"string"
},
"active":{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentUI"
}
},
"inActive":{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentUI"
}
},
"maxSize":{
"$ref":"#/components/schemas/MaxSize"
},
"parameters":{
"type":"string"
},
"chars":{
"type":"integer",
"format":"int32"
},
"encoding":{
"type":"string"
}
}
}
Nested Schema : active
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentUI"
}
}
Nested Schema : activeAgr
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
}
Nested Schema : docNode
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentNode"
}
}
Nested Schema : inActive
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentUI"
}
}
Nested Schema : inActiveAgr
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
}
Nested Schema : MaxSize
Type: object
Show Source
{
"type":"object",
"properties":{
"purpose":{
"type":"integer",
"format":"int32"
},
"notes":{
"type":"integer",
"format":"int32"
},
"steps":{
"type":"integer",
"format":"int32"
},
"cmnts":{
"type":"integer",
"format":"int32"
},
"desc":{
"type":"integer",
"format":"int32"
},
"txt":{
"type":"integer",
"format":"int32"
},
"ver":{
"type":"number",
"format":"float"
},
"pos":{
"type":"boolean"
}
}
}
Nested Schema : DocumentUI
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/ViewModel"
},
{
"$ref":"#/components/schemas/GenericRestRs"
},
{
"type":"object",
"properties":{
"activeAgr":{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
},
"inActiveAgr":{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
},
"parameters":{
"type":"string"
},
"businessIdentifiers":{
"$ref":"#/components/schemas/BusinessIdentifierUI"
},
"partnerCnt":{
"type":"integer",
"format":"int32"
},
"schema":{
"type":"string"
},
"state":{
"type":"string"
},
"schemaName":{
"type":"string"
},
"active":{
"type":"array",
"items":{
"$ref":"#/components/schemas/IntegrationResourceUI"
}
},
"inActive":{
"type":"array",
"items":{
"$ref":"#/components/schemas/IntegrationResourceUI"
}
}
}
}
]
}
Nested Schema : DocumentUI-allOf[2]
Type: object
Show Source
{
"type":"object",
"properties":{
"activeAgr":{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
},
"inActiveAgr":{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
},
"parameters":{
"type":"string"
},
"businessIdentifiers":{
"$ref":"#/components/schemas/BusinessIdentifierUI"
},
"partnerCnt":{
"type":"integer",
"format":"int32"
},
"schema":{
"type":"string"
},
"state":{
"type":"string"
},
"schemaName":{
"type":"string"
},
"active":{
"type":"array",
"items":{
"$ref":"#/components/schemas/IntegrationResourceUI"
}
},
"inActive":{
"type":"array",
"items":{
"$ref":"#/components/schemas/IntegrationResourceUI"
}
}
}
}
Nested Schema : active
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/IntegrationResourceUI"
}
}
Nested Schema : activeAgr
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
}
Nested Schema : BusinessIdentifierUI
Type: object
Show Source
{
"type":"object",
"properties":{
"bizIdName1":{
"type":"string"
},
"bizIdXpath1":{
"type":"string"
},
"bizIdName2":{
"type":"string"
},
"bizIdXpath2":{
"type":"string"
},
"bizIdName3":{
"type":"string"
},
"bizIdXpath3":{
"type":"string"
}
}
}
Nested Schema : inActive
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/IntegrationResourceUI"
}
}
Nested Schema : inActiveAgr
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/AgreementUI"
}
}
Nested Schema : IntegrationResourceUI
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/ViewModel"
},
{
"$ref":"#/components/schemas/GenericRestRs"
},
{
"type":"object",
"properties":{
"name":{
"type":"string"
},
"id":{
"type":"string"
},
"status":{
"type":"string"
},
"version":{
"type":"string"
}
}
}
]
}
Nested Schema : IntegrationResourceUI-allOf[2]
Type: object
Show Source
{
"type":"object",
"properties":{
"name":{
"type":"string"
},
"id":{
"type":"string"
},
"status":{
"type":"string"
},
"version":{
"type":"string"
}
}
}
Nested Schema : AgreementUI
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/ViewModel"
},
{
"$ref":"#/components/schemas/GenericRestRs"
},
{
"type":"object",
"properties":{
"deployStatus":{
"type":"string"
},
"direction":{
"type":"string"
},
"agrID":{
"type":"string"
},
"tpId":{
"type":"string"
},
"docId":{
"type":"string"
},
"agrName":{
"type":"string"
}
}
}
]
}
Nested Schema : AgreementUI-allOf[2]
Type: object
Show Source
{
"type":"object",
"properties":{
"deployStatus":{
"type":"string"
},
"direction":{
"type":"string"
},
"agrID":{
"type":"string"
},
"tpId":{
"type":"string"
},
"docId":{
"type":"string"
},
"agrName":{
"type":"string"
}
}
}
Nested Schema : DocumentNode
Type: object
Show Source
{
"required":[
"attr",
"children"
],
"type":"object",
"properties":{
"attr":{
"$ref":"#/components/schemas/DocumentModelUI"
},
"children":{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentNode"
}
}
}
}
Nested Schema : Discriminator: objType
Type: object
Discriminator: objType
Discriminator Values
{
"type":"object",
"properties":{
"objId":{
"type":"string"
},
"name":{
"type":"string"
},
"req":{
"type":"string"
},
"purpose":{
"type":"string"
},
"objType":{
"type":"string"
},
"rptCnt":{
"type":"string"
},
"usage":{
"type":"string"
},
"msk":{
"type":"boolean"
},
"posNo":{
"type":"string"
},
"notes":{
"type":"string"
},
"r":{
"type":"boolean"
},
"cmnts":{
"type":"string"
},
"var":{
"type":"integer",
"format":"int32"
}
},
"discriminator":{
"propertyName":"objType",
"mapping":{
"CELMS":"#/components/schemas/ElementUI",
"SEGS":"#/components/schemas/SegmentUI",
"SEG_LOOP":"#/components/schemas/SegLoopUI",
"ELMS":"#/components/schemas/ElementUI",
"COMS":"#/components/schemas/CompositeUI"
}
},
"oneOf":[
{
"$ref":"#/components/schemas/SegmentUI"
},
{
"$ref":"#/components/schemas/SegLoopUI"
},
{
"$ref":"#/components/schemas/ElementUI"
},
{
"$ref":"#/components/schemas/ElementUI"
},
{
"$ref":"#/components/schemas/CompositeUI"
}
]
}
Show Source
{
"type":"object",
"properties":{
"objId":{
"type":"string"
},
"name":{
"type":"string"
},
"req":{
"type":"string"
},
"purpose":{
"type":"string"
},
"objType":{
"type":"string"
},
"rptCnt":{
"type":"string"
},
"usage":{
"type":"string"
},
"msk":{
"type":"boolean"
},
"posNo":{
"type":"string"
},
"notes":{
"type":"string"
},
"r":{
"type":"boolean"
},
"cmnts":{
"type":"string"
},
"var":{
"type":"integer",
"format":"int32"
}
},
"discriminator":{
"propertyName":"objType",
"mapping":{
"CELMS":"#/components/schemas/ElementUI",
"SEGS":"#/components/schemas/SegmentUI",
"SEG_LOOP":"#/components/schemas/SegLoopUI",
"ELMS":"#/components/schemas/ElementUI",
"COMS":"#/components/schemas/CompositeUI"
}
},
"oneOf":[
{
"$ref":"#/components/schemas/SegmentUI"
},
{
"$ref":"#/components/schemas/SegLoopUI"
},
{
"$ref":"#/components/schemas/ElementUI"
},
{
"$ref":"#/components/schemas/ElementUI"
},
{
"$ref":"#/components/schemas/CompositeUI"
}
]
}
Match One Schema
Show Source
{
"type":"object",
"properties":{
"objId":{
"type":"string"
},
"name":{
"type":"string"
},
"req":{
"type":"string"
},
"purpose":{
"type":"string"
},
"objType":{
"type":"string"
},
"rptCnt":{
"type":"string"
},
"usage":{
"type":"string"
},
"msk":{
"type":"boolean"
},
"posNo":{
"type":"string"
},
"notes":{
"type":"string"
},
"r":{
"type":"boolean"
},
"cmnts":{
"type":"string"
},
"var":{
"type":"integer",
"format":"int32"
}
},
"discriminator":{
"propertyName":"objType",
"mapping":{
"CELMS":"#/components/schemas/ElementUI",
"SEGS":"#/components/schemas/SegmentUI",
"SEG_LOOP":"#/components/schemas/SegLoopUI",
"ELMS":"#/components/schemas/ElementUI",
"COMS":"#/components/schemas/CompositeUI"
}
},
"oneOf":[
{
"$ref":"#/components/schemas/SegmentUI"
},
{
"$ref":"#/components/schemas/SegLoopUI"
},
{
"$ref":"#/components/schemas/ElementUI"
},
{
"$ref":"#/components/schemas/ElementUI"
},
{
"$ref":"#/components/schemas/CompositeUI"
}
]
}
Nested Schema : children
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/DocumentNode"
}
}
Nested Schema : SegmentUI
Match All
Show Source
-
object
Discriminator: objType
Discriminator: {
"propertyName":"objType",
"mapping":{
"CELMS":"#/components/schemas/ElementUI",
"SEGS":"#/components/schemas/SegmentUI",
"SEG_LOOP":"#/components/schemas/SegLoopUI",
"ELMS":"#/components/schemas/ElementUI",
"COMS":"#/components/schemas/CompositeUI"
}
}
-
object
SegmentUI-allOf[1]
{
"allOf":[
{
"$ref":"#/components/schemas/DocumentModelUI"
},
{
"type":"object",
"properties":{
"tableArea":{
"type":"string"
},
"synRl":{
"type":"array",
"items":{
"$ref":"#/components/schemas/SyntaxRuleUI"
}
}
}
}
]
}
Nested Schema : SegLoopUI
Match All
Show Source
-
object
Discriminator: objType
Discriminator: {
"propertyName":"objType",
"mapping":{
"CELMS":"#/components/schemas/ElementUI",
"SEGS":"#/components/schemas/SegmentUI",
"SEG_LOOP":"#/components/schemas/SegLoopUI",
"ELMS":"#/components/schemas/ElementUI",
"COMS":"#/components/schemas/CompositeUI"
}
}
-
object
SegLoopUI-allOf[1]
{
"allOf":[
{
"$ref":"#/components/schemas/DocumentModelUI"
},
{
"type":"object",
"properties":{
"tableArea":{
"type":"string"
}
}
}
]
}
Nested Schema : ElementUI
Match All
Show Source
-
object
Discriminator: objType
Discriminator: {
"propertyName":"objType",
"mapping":{
"CELMS":"#/components/schemas/ElementUI",
"SEGS":"#/components/schemas/SegmentUI",
"SEG_LOOP":"#/components/schemas/SegLoopUI",
"ELMS":"#/components/schemas/ElementUI",
"COMS":"#/components/schemas/CompositeUI"
}
}
-
object
ElementUI-allOf[1]
{
"allOf":[
{
"$ref":"#/components/schemas/DocumentModelUI"
},
{
"type":"object",
"properties":{
"type":{
"type":"string"
},
"min":{
"type":"integer",
"format":"int32"
},
"max":{
"type":"integer",
"format":"int32"
},
"elem":{
"type":"string"
},
"part":{
"type":"array",
"items":{
"$ref":"#/components/schemas/CodesPartitionUI"
}
},
"codeId":{
"type":"string"
},
"ln":{
"type":"integer",
"format":"int32"
}
}
}
]
}
Nested Schema : CompositeUI
Match All
Show Source
-
object
Discriminator: objType
Discriminator: {
"propertyName":"objType",
"mapping":{
"CELMS":"#/components/schemas/ElementUI",
"SEGS":"#/components/schemas/SegmentUI",
"SEG_LOOP":"#/components/schemas/SegLoopUI",
"ELMS":"#/components/schemas/ElementUI",
"COMS":"#/components/schemas/CompositeUI"
}
}
-
object
CompositeUI-allOf[1]
{
"allOf":[
{
"$ref":"#/components/schemas/DocumentModelUI"
},
{
"type":"object",
"properties":{
"elem":{
"type":"string"
},
"type":{
"type":"string"
},
"min":{
"type":"integer",
"format":"int32"
},
"max":{
"type":"integer",
"format":"int32"
},
"synRl":{
"type":"array",
"items":{
"$ref":"#/components/schemas/SyntaxRuleUI"
}
}
}
}
]
}
Nested Schema : SegmentUI-allOf[1]
Type: object
Show Source
{
"type":"object",
"properties":{
"tableArea":{
"type":"string"
},
"synRl":{
"type":"array",
"items":{
"$ref":"#/components/schemas/SyntaxRuleUI"
}
}
}
}
Nested Schema : synRl
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/SyntaxRuleUI"
}
}
Nested Schema : SyntaxRuleUI
Type: object
Show Source
{
"type":"object",
"properties":{
"elems":{
"type":"array",
"items":{
"type":"string"
}
},
"rule":{
"type":"string"
},
"r":{
"type":"boolean"
}
}
}
Nested Schema : elems
Type: array
Show Source
{
"type":"array",
"items":{
"type":"string"
}
}
Nested Schema : SegLoopUI-allOf[1]
Type: object
Show Source
{
"type":"object",
"properties":{
"tableArea":{
"type":"string"
}
}
}
Nested Schema : ElementUI-allOf[1]
Type: object
Show Source
{
"type":"object",
"properties":{
"type":{
"type":"string"
},
"min":{
"type":"integer",
"format":"int32"
},
"max":{
"type":"integer",
"format":"int32"
},
"elem":{
"type":"string"
},
"part":{
"type":"array",
"items":{
"$ref":"#/components/schemas/CodesPartitionUI"
}
},
"codeId":{
"type":"string"
},
"ln":{
"type":"integer",
"format":"int32"
}
}
}
Nested Schema : part
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/CodesPartitionUI"
}
}
Nested Schema : CodesPartitionUI
Type: object
Show Source
{
"type":"object",
"properties":{
"codes":{
"type":"array",
"items":{
"$ref":"#/components/schemas/CodeUI"
}
}
}
}
Nested Schema : codes
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/CodeUI"
}
}
Nested Schema : CodeUI
Type: object
Show Source
{
"type":"object",
"properties":{
"c":{
"type":"string"
},
"d":{
"type":"string"
},
"n":{
"type":"string"
},
"r":{
"type":"boolean"
}
}
}
Nested Schema : CompositeUI-allOf[1]
Type: object
Show Source
{
"type":"object",
"properties":{
"elem":{
"type":"string"
},
"type":{
"type":"string"
},
"min":{
"type":"integer",
"format":"int32"
},
"max":{
"type":"integer",
"format":"int32"
},
"synRl":{
"type":"array",
"items":{
"$ref":"#/components/schemas/SyntaxRuleUI"
}
}
}
}
Nested Schema : synRl
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/SyntaxRuleUI"
}
}