odcs 0.9.1

Reference implementation of the Open Data Contract Standard (ODCS)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: "1.0.0"
apiVersion: "v3.1.0"
kind: "DataContract"
id: "registry-consumer"
name: "registry_consumer"
status: "active"

schema:
  - name: "orders"
    logicalType: "object"
    properties:
      - name: "customer_id"
        logicalType: "string"
        required: true
    relationships:
      - type: "foreignKey"
        from: "orders.customer_id"
        to: "provider-contract/customers/customer_id"