schemaFormat (property)

The format of the schema file.

Syntax

@property (nonatomic,readwrite,assign,getter=schemaFormat,setter=setSchemaFormat:) int schemaFormat;
- (int)schemaFormat;
- (void)setSchemaFormat:(int)newSchemaFormat;

/* Possible Values */
SCHEMA_AUTOMATIC(0),
SCHEMA_BINARY(1),
SCHEMA_BIZ_TALK(2),
SCHEMA_SEF(3),
SCHEMA_BOTS(4),
SCHEMA_ALTOVA(5),
SCHEMA_JSON(6)
public var schemaFormat: X12writerSchemaFormats {
  get {...}
set {...} }
public enum X12writerSchemaFormats : Int32 { case schemaAutomatic = 0 case schemaBinary = 1 case schemaBizTalk = 2 case schemaSEF = 3 case schemaBOTS = 4 case schemaAltova = 5 case schemaJSON = 6 }

Default Value

0

Remarks

Set SchemaFormat before calling the LoadSchema method to specify the loading schema format.

The following schema formats are supported:

0 (schemaAutomatic - default) The schema type is automatically determined based on file extension.
1 (schemaBinary) A binary schema that was previously compiled by calling CompileSchema.
2 (schemaBizTalk) BizTalk (XSD): http://msdn.microsoft.com/en-us/library/aa559426(v=BTS.70).aspx
3 (schemaSEF) TIBCO Standard Exchange Format (SEF): https://docs.tibco.com/products/tibco-foresight-edisim-6-18-0
5 (schemaAltova) Altova: http://www.altova.com/
6 (schemaJSON - recommended) ArcESB JSON: http://www.arcesb.com/

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks X12 2020 iOS Edition - Version 20.0 [Build 8155]