Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UrlScheme structure normalization/optimization + other minor changes #57

Merged
merged 4 commits into from
Dec 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,302 changes: 416 additions & 886 deletions Release Candidate Messages/exampleUrlScheme.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions Release Candidate Messages/icarAnimalCoreResource.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
],

"type": "object",

"description": "Core schema for representing animal",

"allOf": [
{
Expand Down
2 changes: 2 additions & 0 deletions Release Candidate Messages/icarMilkingVisitEventResource.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
],

"type": "object",

"description": "Event for recording milking visit",

"allOf": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"eventDateTime",
"originLocation"
],


"description": "Event for recording animal arrival",

"type": "object",

"allOf": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"eventDateTime",
"location"
],

"description": "Event for recording animal birth",

"type": "object",

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"animal",
"eventDateTime"
],

"description": "Event for recording animal death",

"type": "object",

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"eventDateTime",
"destinationLocation"
],

"description": "Event for recording animal departure",

"type": "object",

Expand Down
8 changes: 5 additions & 3 deletions Release Candidate Messages/icarTestDayResource.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
{
"required": [
"id",
"animal",
"EventDateTime"
],


"description": "Event for representing test day result",

"type": "object",

"allOf": [
{
"$ref": "icarEventCoreResource.json"
Expand Down