Skip to content

Commit

Permalink
documented internal properties in object attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
albertoabellagarcia committed Oct 8, 2024
1 parent 00d7d4f commit cf06958
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 17 deletions.
5 changes: 0 additions & 5 deletions SMARTAGRIFOOD/AgriFertilize/examples/example.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@
"exampleObjectKey": "exampleObjectValue"
}
],
"accm": [
{
"exampleObjectKey": "exampleObjectValue"
}
],
"check": 75,
"code": "ST123",
"comp": {
Expand Down
42 changes: 30 additions & 12 deletions SMARTAGRIFOOD/AgriFertilize/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,15 @@
"aacm": {
"type": "array",
"items": {
"type": "object"
"type": "object",
"properties": {
"exampleObjectKey": {
"type": "string"
}
}
},
"description": "Property. Array of aacm objects associated with the subtype."
},
"accm": {
"type": "array",
"items": {
"type": "object"
},
"description": "Property. Information about fertilizer type acids."
},
"check": {
"type": "number",
"description": "Property. Check value associated with the subtype."
Expand Down Expand Up @@ -121,7 +119,12 @@
"hecm": {
"type": "array",
"items": {
"type": "object"
"type": "object",
"properties": {
"exampleObjectKey": {
"type": "string"
}
}
},
"description": "Property. Information on heavy metals of the fertilizer type."
},
Expand All @@ -132,7 +135,12 @@
"macm": {
"type": "array",
"items": {
"type": "object"
"type": "object",
"properties": {
"exampleObjectKey": {
"type": "string"
}
}
},
"description": "Property. Information on other macronutrients of the fertilizer type."
},
Expand Down Expand Up @@ -217,7 +225,12 @@
"micm": {
"type": "array",
"items": {
"type": "object"
"type": "object",
"properties": {
"exampleObjectKey": {
"type": "string"
}
}
},
"description": "Property. Array of micm objects associated with the subtype."
},
Expand Down Expand Up @@ -329,7 +342,12 @@
"machine": {
"type": "array",
"items": {
"type": "object"
"type": "object",
"properties": {
"exampleObjectKey": {
"type": "string"
}
}
},
"description": "Property. Information on the machinery assigned to the application of the fertilizer as well as information on its hygiene."
},
Expand Down

0 comments on commit cf06958

Please sign in to comment.