Sha256: 1c34f98dcc29089c82c2e30f51eca9d33dee8b86e4ffe1af8bedc6d5b185d441

Contents?: true

Size: 1.11 KB

Versions: 15

Compression:

Stored size: 1.11 KB

Contents

{
  "$id": "https://raw.githubusercontent.com/tcd/eddy/master/data/schema/transaction_set_summary.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Transaction Set Summary",
  "description": "An outline of all required components for an EDI transaction set implementation.",
  "required": [
    "id",
    "functional_group",
    "components"
  ],
  "type": "object",
  "properties": {
    "id": {
      "description": "A short code identifying the Transaction Set.",
      "type": "number"
    },
    "name": {
      "description": "A descriptive name for the Transaction Set.",
      "type": "string"
    },
    "functional_group": {
      "description": "A short string used to group related Transaction Sets.",
      "type": "string"
    },
    "components": {
      "description": "The components that make up the Transaction Set.",
      "type" : "array", "items": { "anyOf": [
        {"$ref": "https://raw.githubusercontent.com/tcd/eddy/master/data/schema/loop_summary.json"},
        {"$ref": "https://raw.githubusercontent.com/tcd/eddy/master/data/schema/segment_summary.json"}
      ]}
    }
  }
}

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
eddy-0.10.0 data/schema/transaction_set_summary.json
eddy-0.9.2 data/schema/transaction_set_summary.json
eddy-0.9.1 data/schema/transaction_set_summary.json
eddy-0.9.0 data/schema/transaction_set_summary.json
eddy-0.8.4 data/schema/transaction_set_summary.json
eddy-0.8.3 data/schema/transaction_set_summary.json
eddy-0.8.2 data/schema/transaction_set_summary.json
eddy-0.8.1 data/schema/transaction_set_summary.json
eddy-0.8.0 data/schema/transaction_set_summary.json
eddy-0.7.0 data/schema/transaction_set_summary.json
eddy-0.6.0 data/schema/transaction_set_summary.json
eddy-0.5.1 data/schema/transaction_set_summary.json
eddy-0.5.0 data/schema/transaction_set_summary.json
eddy-0.4.0 data/schema/transaction_set_summary.json
eddy-0.3.0 data/schema/transaction_set_summary.json