├── .all-contributorsrc ├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github ├── CLA_INDIVIDUAL.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── labels │ ├── README.md │ ├── common.json │ ├── eslint.json │ └── story-points.json ├── .gitignore ├── .prettierrc ├── .snyk ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ └── swagger-validator.spec.js ├── docs ├── api │ └── archetypes │ │ └── v1 │ │ ├── money │ │ └── js │ │ │ ├── README.md │ │ │ └── docs │ │ │ ├── Currency.md │ │ │ ├── CurrencyApi.md │ │ │ ├── EffectiveDates.md │ │ │ ├── Metric.md │ │ │ ├── Money.md │ │ │ ├── Payment.md │ │ │ ├── PaymentApi.md │ │ │ ├── PaymentCard.md │ │ │ ├── PaymentMethod.md │ │ │ ├── PaymentMethodApi.md │ │ │ └── Quantity.md │ │ ├── order │ │ └── README.md │ │ ├── party-relationship │ │ └── README.md │ │ ├── party │ │ ├── js │ │ │ ├── Address.md │ │ │ ├── Address1.md │ │ │ ├── AddressProperties.md │ │ │ ├── BadRequestError.md │ │ │ ├── Company.md │ │ │ ├── CompanyGroup.md │ │ │ ├── EffectiveDates.md │ │ │ ├── EmailAddress.md │ │ │ ├── Ethnicity.md │ │ │ ├── ForbiddenError.md │ │ │ ├── Gender.md │ │ │ ├── GeographicAddress.md │ │ │ ├── GeographicAddressCountry.md │ │ │ ├── InlineResponse200.md │ │ │ ├── InlineResponse400.md │ │ │ ├── InlineResponse401.md │ │ │ ├── InlineResponse403.md │ │ │ ├── InlineResponse404.md │ │ │ ├── InlineResponse405.md │ │ │ ├── IsoCountryCode.md │ │ │ ├── IsoSex.md │ │ │ ├── MethodNotAllowedError.md │ │ │ ├── Nominative.md │ │ │ ├── NotFoundError.md │ │ │ ├── Option.md │ │ │ ├── Organization.md │ │ │ ├── Organization1.md │ │ │ ├── OrganizationName.md │ │ │ ├── OrganizationName1.md │ │ │ ├── OrganizationUnit.md │ │ │ ├── OrganizationsApi.md │ │ │ ├── PartiesApi.md │ │ │ ├── Party.md │ │ │ ├── PartyIdentifier.md │ │ │ ├── PeopleApi.md │ │ │ ├── PeopleEthnicities.md │ │ │ ├── PeopleGender.md │ │ │ ├── PeopleIsoSex.md │ │ │ ├── Person.md │ │ │ ├── Person1.md │ │ │ ├── PersonName.md │ │ │ ├── PersonName1.md │ │ │ ├── Preference.md │ │ │ ├── PreferenceOption.md │ │ │ ├── PreferenceType.md │ │ │ ├── Preferences.md │ │ │ ├── PreferencesApi.md │ │ │ ├── README.md │ │ │ ├── RegisteredIdentifier.md │ │ │ ├── RegisteredIdentifier1.md │ │ │ ├── TelecomAddress.md │ │ │ ├── Type.md │ │ │ ├── UnauthorizedError.md │ │ │ ├── UniqueIdentifier.md │ │ │ └── UrlAddress.md │ │ └── ruby │ │ │ ├── Address.md │ │ │ ├── Address1.md │ │ │ ├── AddressProperties.md │ │ │ ├── BadRequestError.md │ │ │ ├── Company.md │ │ │ ├── CompanyGroup.md │ │ │ ├── EffectiveDates.md │ │ │ ├── EmailAddress.md │ │ │ ├── Ethnicity.md │ │ │ ├── ForbiddenError.md │ │ │ ├── Gender.md │ │ │ ├── GeographicAddress.md │ │ │ ├── GeographicAddressCountry.md │ │ │ ├── InlineResponse200.md │ │ │ ├── InlineResponse400.md │ │ │ ├── InlineResponse401.md │ │ │ ├── InlineResponse403.md │ │ │ ├── InlineResponse404.md │ │ │ ├── InlineResponse405.md │ │ │ ├── IsoCountryCode.md │ │ │ ├── IsoSex.md │ │ │ ├── MethodNotAllowedError.md │ │ │ ├── Nominative.md │ │ │ ├── NotFoundError.md │ │ │ ├── Option.md │ │ │ ├── Organization.md │ │ │ ├── Organization1.md │ │ │ ├── OrganizationName.md │ │ │ ├── OrganizationName1.md │ │ │ ├── OrganizationUnit.md │ │ │ ├── OrganizationsApi.md │ │ │ ├── PartiesApi.md │ │ │ ├── Party.md │ │ │ ├── PartyIdentifier.md │ │ │ ├── PeopleApi.md │ │ │ ├── PeopleEthnicities.md │ │ │ ├── PeopleGender.md │ │ │ ├── PeopleIsoSex.md │ │ │ ├── Person.md │ │ │ ├── Person1.md │ │ │ ├── PersonName.md │ │ │ ├── PersonName1.md │ │ │ ├── Preference.md │ │ │ ├── PreferenceOption.md │ │ │ ├── PreferenceType.md │ │ │ ├── Preferences.md │ │ │ ├── PreferencesApi.md │ │ │ ├── README.md │ │ │ ├── RegisteredIdentifier.md │ │ │ ├── RegisteredIdentifier1.md │ │ │ ├── TelecomAddress.md │ │ │ ├── Type.md │ │ │ ├── UnauthorizedError.md │ │ │ ├── UniqueIdentifier.md │ │ │ └── UrlAddress.md │ │ ├── product │ │ └── README.md │ │ ├── quantity │ │ ├── js │ │ │ ├── Ampere.md │ │ │ ├── BadRequestError.md │ │ │ ├── Candela.md │ │ │ ├── DerivedUnit.md │ │ │ ├── DerivedUnitTerm.md │ │ │ ├── DerivedUnitTerm1.md │ │ │ ├── ForbiddenError.md │ │ │ ├── InlineResponse400.md │ │ │ ├── InlineResponse401.md │ │ │ ├── InlineResponse403.md │ │ │ ├── InlineResponse404.md │ │ │ ├── InlineResponse405.md │ │ │ ├── Kelvin.md │ │ │ ├── Kilogram.md │ │ │ ├── LaborApi.md │ │ │ ├── Meter.md │ │ │ ├── MethodNotAllowedError.md │ │ │ ├── Metric.md │ │ │ ├── Metric1.md │ │ │ ├── Mole.md │ │ │ ├── NotFoundError.md │ │ │ ├── Quantity.md │ │ │ ├── QuantityRoundingPolicy.md │ │ │ ├── README.md │ │ │ ├── RoundingPolicy.md │ │ │ ├── RoundingStrategy.md │ │ │ ├── SIInternationalSystemOfUnitsApi.md │ │ │ ├── Second.md │ │ │ ├── SiBaseUnit.md │ │ │ ├── SiBaseUnit1.md │ │ │ ├── SiSystemOfUnits.md │ │ │ ├── SiSystemOfUnits1.md │ │ │ ├── SystemOfUnits.md │ │ │ ├── SystemOfUnits1.md │ │ │ ├── SystemOfUnits2.md │ │ │ ├── SystemOfUnits3.md │ │ │ ├── SystemsOfUnitsApi.md │ │ │ ├── UnauthorizedError.md │ │ │ ├── Unit.md │ │ │ ├── Unit1.md │ │ │ └── WorkHour.md │ │ └── ruby │ │ │ ├── Ampere.md │ │ │ ├── BadRequestError.md │ │ │ ├── Candela.md │ │ │ ├── DerivedUnit.md │ │ │ ├── DerivedUnitTerm.md │ │ │ ├── DerivedUnitTerm1.md │ │ │ ├── ForbiddenError.md │ │ │ ├── InlineResponse400.md │ │ │ ├── InlineResponse401.md │ │ │ ├── InlineResponse403.md │ │ │ ├── InlineResponse404.md │ │ │ ├── InlineResponse405.md │ │ │ ├── Kelvin.md │ │ │ ├── Kilogram.md │ │ │ ├── LaborApi.md │ │ │ ├── Meter.md │ │ │ ├── MethodNotAllowedError.md │ │ │ ├── Metric.md │ │ │ ├── Metric1.md │ │ │ ├── Mole.md │ │ │ ├── NotFoundError.md │ │ │ ├── Quantity.md │ │ │ ├── QuantityRoundingPolicy.md │ │ │ ├── README.md │ │ │ ├── RoundingPolicy.md │ │ │ ├── RoundingStrategy.md │ │ │ ├── SIInternationalSystemOfUnitsApi.md │ │ │ ├── Second.md │ │ │ ├── SiBaseUnit.md │ │ │ ├── SiBaseUnit1.md │ │ │ ├── SiSystemOfUnits.md │ │ │ ├── SiSystemOfUnits1.md │ │ │ ├── SystemOfUnits.md │ │ │ ├── SystemOfUnits1.md │ │ │ ├── SystemOfUnits2.md │ │ │ ├── SystemOfUnits3.md │ │ │ ├── SystemsOfUnitsApi.md │ │ │ ├── UnauthorizedError.md │ │ │ ├── Unit.md │ │ │ ├── Unit1.md │ │ │ └── WorkHour.md │ │ └── rule │ │ └── README.md ├── img │ ├── icons8 │ │ ├── bad-decision.png │ │ ├── badge.png │ │ ├── brick.png │ │ ├── contribution-lifecycle-create-issue.png │ │ ├── contribution-lifecycle-pr.png │ │ ├── good-decision.png │ │ ├── icon-package-filled.png │ │ ├── icon-rest-api.png │ │ ├── icon-rest-client.png │ │ ├── icon-user-manual-grey-50.png │ │ ├── img-goal-filled-50.png │ │ ├── img-instructions-25.png │ │ ├── img-instructions.png │ │ ├── judge.png │ │ ├── map-marker.png │ │ ├── pledge-scout-sign.png │ │ ├── quote-left-25.png │ │ └── travis-ci-50.png │ ├── logo-commonalaxy.png │ ├── logo.sample.png │ └── tech-stack │ │ ├── icon-eslint-50.jpeg │ │ ├── icon-jest-50.jpeg │ │ ├── icon-news-feed-50.png │ │ ├── icon-nodejs-50.png │ │ ├── icon-npm-50.png │ │ ├── icon-rss-feed-50.png │ │ ├── icon-standardjs-50.png │ │ ├── icon-swagger-50.png │ │ └── icon-yeoman-50.png └── style-guide │ ├── archetypes-color-palette.pdf │ ├── archetypes-color-palette.png │ ├── archetypes-color-palette.scss │ └── archetypes-color-palette.svg ├── generate-docs.js ├── jest.config.json ├── markdown.config.js ├── npm-shrinkwrap.json ├── package.json ├── schemas ├── .htaccess └── v1 │ ├── date-times │ └── effective-dates.yaml │ ├── documentation.yaml │ ├── locales │ ├── iso-country-code.yaml │ ├── locale.yaml │ └── locales.yaml │ ├── logging-events │ ├── error-responses.yaml │ └── logging-event.yaml │ ├── mediatypes.yaml │ ├── money │ ├── README.md │ ├── currency.definition.yaml │ ├── money.definition.yaml │ ├── money.yaml │ ├── payment-card.definition.yaml │ ├── payment-method.definition.yaml │ └── payment.definition.yaml │ ├── orders │ └── README.md │ ├── parties │ ├── nominative.yaml │ ├── parties.yaml │ └── unique-identifier.yaml │ ├── party-relationships │ └── README.md │ ├── products │ └── README.md │ ├── quantities │ ├── metric.yaml │ ├── quantities.yaml │ ├── quantity.yaml │ ├── rounding-strategy.yaml │ ├── si-system-of-units.yaml │ └── system-of-units.yaml │ ├── rules │ └── README.md │ └── security.yaml └── sonar-project.properties /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/CLA_INDIVIDUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.github/CLA_INDIVIDUAL.md -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.github/labels/README.md -------------------------------------------------------------------------------- /.github/labels/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.github/labels/common.json -------------------------------------------------------------------------------- /.github/labels/eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.github/labels/eslint.json -------------------------------------------------------------------------------- /.github/labels/story-points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.github/labels/story-points.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.snyk -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/swagger-validator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/__tests__/swagger-validator.spec.js -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/README.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/Currency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/Currency.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/CurrencyApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/CurrencyApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/EffectiveDates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/EffectiveDates.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/Metric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/Metric.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/Money.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/Money.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/Payment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/Payment.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/PaymentApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/PaymentApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/PaymentCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/PaymentCard.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/PaymentMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/PaymentMethod.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/PaymentMethodApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/PaymentMethodApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/money/js/docs/Quantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/money/js/docs/Quantity.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/order/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/order/README.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party-relationship/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party-relationship/README.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Address.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Address1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Address1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/AddressProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/AddressProperties.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/BadRequestError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/BadRequestError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Company.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Company.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/CompanyGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/CompanyGroup.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/EffectiveDates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/EffectiveDates.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/EmailAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/EmailAddress.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Ethnicity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Ethnicity.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/ForbiddenError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/ForbiddenError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Gender.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/GeographicAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/GeographicAddress.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/GeographicAddressCountry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/GeographicAddressCountry.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/InlineResponse200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/InlineResponse200.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/InlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/InlineResponse400.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/InlineResponse401.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/InlineResponse401.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/InlineResponse403.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/InlineResponse403.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/InlineResponse404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/InlineResponse404.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/InlineResponse405.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/InlineResponse405.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/IsoCountryCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/IsoCountryCode.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/IsoSex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/IsoSex.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/MethodNotAllowedError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/MethodNotAllowedError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Nominative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Nominative.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/NotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/NotFoundError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Option.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Organization.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Organization1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Organization1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/OrganizationName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/OrganizationName.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/OrganizationName1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/OrganizationName1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/OrganizationUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/OrganizationUnit.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/OrganizationsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/OrganizationsApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PartiesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PartiesApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Party.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Party.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PartyIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PartyIdentifier.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PeopleApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PeopleApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PeopleEthnicities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PeopleEthnicities.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PeopleGender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PeopleGender.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PeopleIsoSex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PeopleIsoSex.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Person.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Person.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Person1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Person1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PersonName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PersonName.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PersonName1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PersonName1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Preference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Preference.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PreferenceOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PreferenceOption.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PreferenceType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PreferenceType.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Preferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Preferences.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/PreferencesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/PreferencesApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/README.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/RegisteredIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/RegisteredIdentifier.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/RegisteredIdentifier1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/RegisteredIdentifier1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/TelecomAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/TelecomAddress.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/Type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/Type.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/UnauthorizedError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/UnauthorizedError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/UniqueIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/UniqueIdentifier.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/js/UrlAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/js/UrlAddress.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Address.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Address1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Address1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/AddressProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/AddressProperties.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/BadRequestError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/BadRequestError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Company.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Company.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/CompanyGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/CompanyGroup.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/EffectiveDates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/EffectiveDates.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/EmailAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/EmailAddress.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Ethnicity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Ethnicity.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/ForbiddenError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/ForbiddenError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Gender.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/GeographicAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/GeographicAddress.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/GeographicAddressCountry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/GeographicAddressCountry.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/InlineResponse200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/InlineResponse200.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/InlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/InlineResponse400.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/InlineResponse401.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/InlineResponse401.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/InlineResponse403.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/InlineResponse403.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/InlineResponse404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/InlineResponse404.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/InlineResponse405.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/InlineResponse405.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/IsoCountryCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/IsoCountryCode.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/IsoSex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/IsoSex.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/MethodNotAllowedError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/MethodNotAllowedError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Nominative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Nominative.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/NotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/NotFoundError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Option.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Organization.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Organization1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Organization1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/OrganizationName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/OrganizationName.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/OrganizationName1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/OrganizationName1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/OrganizationUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/OrganizationUnit.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/OrganizationsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/OrganizationsApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PartiesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PartiesApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Party.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Party.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PartyIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PartyIdentifier.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PeopleApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PeopleApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PeopleEthnicities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PeopleEthnicities.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PeopleGender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PeopleGender.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PeopleIsoSex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PeopleIsoSex.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Person.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Person.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Person1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Person1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PersonName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PersonName.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PersonName1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PersonName1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Preference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Preference.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PreferenceOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PreferenceOption.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PreferenceType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PreferenceType.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Preferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Preferences.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/PreferencesApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/PreferencesApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/README.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/RegisteredIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/RegisteredIdentifier.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/RegisteredIdentifier1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/RegisteredIdentifier1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/TelecomAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/TelecomAddress.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/Type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/Type.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/UnauthorizedError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/UnauthorizedError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/UniqueIdentifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/UniqueIdentifier.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/party/ruby/UrlAddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/party/ruby/UrlAddress.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/product/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/product/README.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Ampere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Ampere.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/BadRequestError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/BadRequestError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Candela.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Candela.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/DerivedUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/DerivedUnit.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/DerivedUnitTerm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/DerivedUnitTerm.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/DerivedUnitTerm1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/DerivedUnitTerm1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/ForbiddenError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/ForbiddenError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/InlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/InlineResponse400.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/InlineResponse401.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/InlineResponse401.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/InlineResponse403.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/InlineResponse403.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/InlineResponse404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/InlineResponse404.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/InlineResponse405.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/InlineResponse405.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Kelvin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Kelvin.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Kilogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Kilogram.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/LaborApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/LaborApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Meter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Meter.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/MethodNotAllowedError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/MethodNotAllowedError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Metric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Metric.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Metric1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Metric1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Mole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Mole.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/NotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/NotFoundError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Quantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Quantity.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/QuantityRoundingPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/QuantityRoundingPolicy.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/README.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/RoundingPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/RoundingPolicy.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/RoundingStrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/RoundingStrategy.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SIInternationalSystemOfUnitsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SIInternationalSystemOfUnitsApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Second.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Second.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SiBaseUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SiBaseUnit.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SiBaseUnit1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SiBaseUnit1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SiSystemOfUnits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SiSystemOfUnits.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SiSystemOfUnits1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SiSystemOfUnits1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SystemOfUnits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SystemOfUnits.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SystemOfUnits1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SystemOfUnits1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SystemOfUnits2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SystemOfUnits2.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SystemOfUnits3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SystemOfUnits3.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/SystemsOfUnitsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/SystemsOfUnitsApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/UnauthorizedError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/UnauthorizedError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Unit.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/Unit1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/Unit1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/js/WorkHour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/js/WorkHour.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Ampere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Ampere.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/BadRequestError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/BadRequestError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Candela.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Candela.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/DerivedUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/DerivedUnit.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/DerivedUnitTerm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/DerivedUnitTerm.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/DerivedUnitTerm1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/DerivedUnitTerm1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/ForbiddenError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/ForbiddenError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/InlineResponse400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/InlineResponse400.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/InlineResponse401.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/InlineResponse401.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/InlineResponse403.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/InlineResponse403.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/InlineResponse404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/InlineResponse404.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/InlineResponse405.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/InlineResponse405.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Kelvin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Kelvin.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Kilogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Kilogram.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/LaborApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/LaborApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Meter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Meter.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/MethodNotAllowedError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/MethodNotAllowedError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Metric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Metric.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Metric1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Metric1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Mole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Mole.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/NotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/NotFoundError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Quantity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Quantity.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/QuantityRoundingPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/QuantityRoundingPolicy.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/README.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/RoundingPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/RoundingPolicy.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/RoundingStrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/RoundingStrategy.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SIInternationalSystemOfUnitsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SIInternationalSystemOfUnitsApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Second.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Second.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SiBaseUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SiBaseUnit.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SiBaseUnit1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SiBaseUnit1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SiSystemOfUnits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SiSystemOfUnits.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SiSystemOfUnits1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SiSystemOfUnits1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SystemOfUnits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SystemOfUnits.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SystemOfUnits1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SystemOfUnits1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SystemOfUnits2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SystemOfUnits2.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SystemOfUnits3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SystemOfUnits3.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/SystemsOfUnitsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/SystemsOfUnitsApi.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/UnauthorizedError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/UnauthorizedError.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Unit.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/Unit1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/Unit1.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/quantity/ruby/WorkHour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/quantity/ruby/WorkHour.md -------------------------------------------------------------------------------- /docs/api/archetypes/v1/rule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/api/archetypes/v1/rule/README.md -------------------------------------------------------------------------------- /docs/img/icons8/bad-decision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/bad-decision.png -------------------------------------------------------------------------------- /docs/img/icons8/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/badge.png -------------------------------------------------------------------------------- /docs/img/icons8/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/brick.png -------------------------------------------------------------------------------- /docs/img/icons8/contribution-lifecycle-create-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/contribution-lifecycle-create-issue.png -------------------------------------------------------------------------------- /docs/img/icons8/contribution-lifecycle-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/contribution-lifecycle-pr.png -------------------------------------------------------------------------------- /docs/img/icons8/good-decision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/good-decision.png -------------------------------------------------------------------------------- /docs/img/icons8/icon-package-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/icon-package-filled.png -------------------------------------------------------------------------------- /docs/img/icons8/icon-rest-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/icon-rest-api.png -------------------------------------------------------------------------------- /docs/img/icons8/icon-rest-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/icon-rest-client.png -------------------------------------------------------------------------------- /docs/img/icons8/icon-user-manual-grey-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/icon-user-manual-grey-50.png -------------------------------------------------------------------------------- /docs/img/icons8/img-goal-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/img-goal-filled-50.png -------------------------------------------------------------------------------- /docs/img/icons8/img-instructions-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/img-instructions-25.png -------------------------------------------------------------------------------- /docs/img/icons8/img-instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/img-instructions.png -------------------------------------------------------------------------------- /docs/img/icons8/judge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/judge.png -------------------------------------------------------------------------------- /docs/img/icons8/map-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/map-marker.png -------------------------------------------------------------------------------- /docs/img/icons8/pledge-scout-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/pledge-scout-sign.png -------------------------------------------------------------------------------- /docs/img/icons8/quote-left-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/quote-left-25.png -------------------------------------------------------------------------------- /docs/img/icons8/travis-ci-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/icons8/travis-ci-50.png -------------------------------------------------------------------------------- /docs/img/logo-commonalaxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/logo-commonalaxy.png -------------------------------------------------------------------------------- /docs/img/logo.sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/logo.sample.png -------------------------------------------------------------------------------- /docs/img/tech-stack/icon-eslint-50.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/tech-stack/icon-eslint-50.jpeg -------------------------------------------------------------------------------- /docs/img/tech-stack/icon-jest-50.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/tech-stack/icon-jest-50.jpeg -------------------------------------------------------------------------------- /docs/img/tech-stack/icon-news-feed-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/tech-stack/icon-news-feed-50.png -------------------------------------------------------------------------------- /docs/img/tech-stack/icon-nodejs-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/tech-stack/icon-nodejs-50.png -------------------------------------------------------------------------------- /docs/img/tech-stack/icon-npm-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/tech-stack/icon-npm-50.png -------------------------------------------------------------------------------- /docs/img/tech-stack/icon-rss-feed-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/tech-stack/icon-rss-feed-50.png -------------------------------------------------------------------------------- /docs/img/tech-stack/icon-standardjs-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/tech-stack/icon-standardjs-50.png -------------------------------------------------------------------------------- /docs/img/tech-stack/icon-swagger-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/tech-stack/icon-swagger-50.png -------------------------------------------------------------------------------- /docs/img/tech-stack/icon-yeoman-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/img/tech-stack/icon-yeoman-50.png -------------------------------------------------------------------------------- /docs/style-guide/archetypes-color-palette.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/style-guide/archetypes-color-palette.pdf -------------------------------------------------------------------------------- /docs/style-guide/archetypes-color-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/style-guide/archetypes-color-palette.png -------------------------------------------------------------------------------- /docs/style-guide/archetypes-color-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/style-guide/archetypes-color-palette.scss -------------------------------------------------------------------------------- /docs/style-guide/archetypes-color-palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/docs/style-guide/archetypes-color-palette.svg -------------------------------------------------------------------------------- /generate-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/generate-docs.js -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/jest.config.json -------------------------------------------------------------------------------- /markdown.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/markdown.config.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/package.json -------------------------------------------------------------------------------- /schemas/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/.htaccess -------------------------------------------------------------------------------- /schemas/v1/date-times/effective-dates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/date-times/effective-dates.yaml -------------------------------------------------------------------------------- /schemas/v1/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/documentation.yaml -------------------------------------------------------------------------------- /schemas/v1/locales/iso-country-code.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/locales/iso-country-code.yaml -------------------------------------------------------------------------------- /schemas/v1/locales/locale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/locales/locale.yaml -------------------------------------------------------------------------------- /schemas/v1/locales/locales.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/locales/locales.yaml -------------------------------------------------------------------------------- /schemas/v1/logging-events/error-responses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/logging-events/error-responses.yaml -------------------------------------------------------------------------------- /schemas/v1/logging-events/logging-event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/logging-events/logging-event.yaml -------------------------------------------------------------------------------- /schemas/v1/mediatypes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/mediatypes.yaml -------------------------------------------------------------------------------- /schemas/v1/money/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/money/README.md -------------------------------------------------------------------------------- /schemas/v1/money/currency.definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/money/currency.definition.yaml -------------------------------------------------------------------------------- /schemas/v1/money/money.definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/money/money.definition.yaml -------------------------------------------------------------------------------- /schemas/v1/money/money.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/money/money.yaml -------------------------------------------------------------------------------- /schemas/v1/money/payment-card.definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/money/payment-card.definition.yaml -------------------------------------------------------------------------------- /schemas/v1/money/payment-method.definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/money/payment-method.definition.yaml -------------------------------------------------------------------------------- /schemas/v1/money/payment.definition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/money/payment.definition.yaml -------------------------------------------------------------------------------- /schemas/v1/orders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/orders/README.md -------------------------------------------------------------------------------- /schemas/v1/parties/nominative.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/parties/nominative.yaml -------------------------------------------------------------------------------- /schemas/v1/parties/parties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/parties/parties.yaml -------------------------------------------------------------------------------- /schemas/v1/parties/unique-identifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/parties/unique-identifier.yaml -------------------------------------------------------------------------------- /schemas/v1/party-relationships/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/party-relationships/README.md -------------------------------------------------------------------------------- /schemas/v1/products/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/products/README.md -------------------------------------------------------------------------------- /schemas/v1/quantities/metric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/quantities/metric.yaml -------------------------------------------------------------------------------- /schemas/v1/quantities/quantities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/quantities/quantities.yaml -------------------------------------------------------------------------------- /schemas/v1/quantities/quantity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/quantities/quantity.yaml -------------------------------------------------------------------------------- /schemas/v1/quantities/rounding-strategy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/quantities/rounding-strategy.yaml -------------------------------------------------------------------------------- /schemas/v1/quantities/si-system-of-units.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/quantities/si-system-of-units.yaml -------------------------------------------------------------------------------- /schemas/v1/quantities/system-of-units.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/quantities/system-of-units.yaml -------------------------------------------------------------------------------- /schemas/v1/rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/rules/README.md -------------------------------------------------------------------------------- /schemas/v1/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/schemas/v1/security.yaml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonality/archetypes/HEAD/sonar-project.properties --------------------------------------------------------------------------------