Skip to content

Commit

Permalink
[trivial] Fix typos and add breaking changes to changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
Saurabh Gupta committed May 14, 2018
1 parent 962787a commit b99f7bf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
[Unreleased](https://github.com/adobe/xdm/releases/tag/v0.9.1)

* Renames all `Metric` schemas to `Metric Definition` #254
* Adds new concepts `Organizational Unit` and `Geographical Unit`. Existing links with the `Profile` schema updated. #323
6 changes: 3 additions & 3 deletions schemas/common/geounit.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"meta:extensible": true,
"title": "Geo Unit",
"title": "Geographical Unit",
"description": "The geographical unit of a parent geographical unit.",
"definitions": {
"geounit": {
Expand All @@ -22,14 +22,14 @@
"The ID associated with this geographical unit."
},
"xdm:label": {
"title": "Friendly lable of the geographical unit.",
"title": "Label of the geographical unit.",
"type": "string",
"description": "The user-friendly name for the geographical unit."
},
"xdm:parentGeoUnit": {
"title": "Parent Geographical Unit.",
"$ref": "https://ns.adobe.com/xdm/common/geounit",
"description": "Parent geographical unit of the current geographical unit in the geographical heirarchy."
"description": "Parent geographical unit of the current geographical unit in the geographical hierarchy. For e.g. `geounit` for `France` might have `xdm:parentGeoUnit` as `geounit` `Europe`."
}
},
"required": ["@id"]
Expand Down
14 changes: 7 additions & 7 deletions schemas/common/orgunit.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"meta:extensible": true,
"title": "Org Unit",
"description": "The organisation unit of a parent organisation.",
"title": "Organizational Unit",
"description": "The organizaational unit of a parent organization.",
"definitions": {
"orgunit": {
"properties": {
Expand All @@ -19,17 +19,17 @@
"type": "string",
"format": "uri",
"description":
"The ID associated with this organisation unit."
"The ID associated with this organizational unit."
},
"xdm:label": {
"title": "Friendly lable of the organisation unit.",
"title": "Label of the organizational unit.",
"type": "string",
"description": "The user-friendly name for the organisation unit."
"description": "The user-friendly name for the organizational unit."
},
"xdm:parentOrgUnit": {
"title": "Parent Organisation.",
"title": "Parent Organizational Unit.",
"$ref": "https://ns.adobe.com/xdm/common/orgunit",
"description": "The parent organisation unit of the current organisation unit in the org heirarchy."
"description": "The parent organizational unit of the current organizational unit in the org hierarchy. For e.g. `orgunit` for `Shirts` might have `xdm:parentGeoUnit` as `geounit` `Apparals`."
}
},
"required": ["@id"]
Expand Down

0 comments on commit b99f7bf

Please sign in to comment.