-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from kaiiam/dev1
Dev1
- Loading branch information
Showing
14 changed files
with
1,401 additions
and
524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# Example data object | ||
--- | ||
id: example:Food001 | ||
name: foo bar | ||
primary_email: foo.bar@example.com | ||
age_in_years: 33 | ||
foods: | ||
- id: FDC:167512 | ||
primary_food_type: FOOD:11109 | ||
primary_food_type_label: Cabbage, raw | ||
food_preparation_state: raw |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,39 @@ | ||
type Food | ||
type Component | ||
{ | ||
id: Uriorcurie! | ||
name: String | ||
description: String | ||
primaryEmail: String | ||
birthDate: Date | ||
ageInYears: Integer | ||
vitalStatus: PersonStatus | ||
id: String! | ||
measuredCompound: String | ||
measuredCompoundValue: Float | ||
measuredCompoundUnit: String | ||
measuredCompoundDenominatorValue: Float | ||
measuredCompoundDenominatorUnit: String | ||
measuredCompoundDataPointsNumber: Integer | ||
measuredCompoundRecordDate: String | ||
measuredCompoundComment: String | ||
measuredCompoundDerivationType: String | ||
laboratorySampleAggregationMinimumMeasuredCompoundValue: Float | ||
laboratorySampleAggregationMaximumMeasuredCompoundValue: Float | ||
laboratorySampleAggregationMedianMeasuredCompoundValue: Float | ||
laboratorySampleAggregationMeasuredCompoundStandardDeviation: Float | ||
analyticalAnalysisMeasurementProtocolDoi: String | ||
analyticalAnalysisMeasurementMethod: AnalyticalMeasurementMethod | ||
} | ||
|
||
type FoodCollection | ||
type Container | ||
{ | ||
foods: [Food] | ||
components: [Component] | ||
} | ||
|
||
type Food | ||
{ | ||
entries: [Food] | ||
id: String! | ||
primaryFoodType: String | ||
primaryFoodTypeLabel: String | ||
foodPreparationState: FoodPreparationState | ||
} | ||
|
||
type NamedThing | ||
interface NamedThing | ||
{ | ||
id: Uriorcurie! | ||
name: String | ||
description: String | ||
id: String! | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.