├── COPYING.txt ├── LICENSE.txt ├── README.md ├── catalog ├── category.xml └── product.xml ├── docs ├── core-service-interaction-flows.md ├── core-transport-bindings.md ├── overview.md └── service-specification-language.md ├── index.php ├── inventory ├── aggregation.xml └── source.xml └── xsd └── specification.xsd /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/COPYING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/README.md -------------------------------------------------------------------------------- /catalog/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/catalog/category.xml -------------------------------------------------------------------------------- /catalog/product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/catalog/product.xml -------------------------------------------------------------------------------- /docs/core-service-interaction-flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/docs/core-service-interaction-flows.md -------------------------------------------------------------------------------- /docs/core-transport-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/docs/core-transport-bindings.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/service-specification-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/docs/service-specification-language.md -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/index.php -------------------------------------------------------------------------------- /inventory/aggregation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/inventory/aggregation.xml -------------------------------------------------------------------------------- /inventory/source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/inventory/source.xml -------------------------------------------------------------------------------- /xsd/specification.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alankent/shared-services/HEAD/xsd/specification.xsd --------------------------------------------------------------------------------