Skip to content

Commit

Permalink
Approved: Proposal 2018-01-30
Browse files Browse the repository at this point in the history
  • Loading branch information
seon kim authored and oneIoTa Admin committed Mar 20, 2018
1 parent a12f2df commit f341a84
Show file tree
Hide file tree
Showing 4 changed files with 175 additions and 0 deletions.
49 changes: 49 additions & 0 deletions ORFID_reader.raml
@@ -0,0 +1,49 @@
#%RAML 0.8
title: OpticalRFIDSmartfactory Reader
version: Version 2018-01-30
documentation:
- title: © 2016 Open Connectivity Foundation, Inc. All rights reserved.
content: |
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE OPEN INTERCONNECT CONSORTIUM, INC. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE OR WARRANTIES OF NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE OPEN INTERCONNECT CONSORTIUM, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
schemas:
- ORFID: !include oic.r.orfid_reader.json

traits:
- interface:
queryParameters:
if:
enum: ["oic.if.r","oic.if.baseline"]

/ORFIDSmartFactoryResURI:
description: |
In OCF interface, optical augmented RFID reader+tag became a single OCF resource. The tagid is an integer showing the currently read optical augmented RFID tag's identity information. The process represents the stage of the product in the product line which has an optical RFID tag on its body. Event is represented by a Boolean value set to "True" and "False" alarming the issue when additional action is requested for the tagged product. Actionrequest represent necessary actions like the isolation of the product, to send the product back to other specific line to modify or fix the issue.
displayName: Optical RFID
is: [ interface ]

get:
description: |
Retrieves the tag information from optical augmented RFID reader in smart factory environment.
responses:
200:
body:
application/json:
schema: ORFID
example: |
{
"rt": ["oic.r.orfid.reader"],
"id": "unique_example_id",
"tagid": 10965742,
"reading" : true
}




66 changes: 66 additions & 0 deletions ORFID_station.raml
@@ -0,0 +1,66 @@
#%RAML 0.8
title: OpticalRFIDSmartfactory Station
version: Version 2018-01-30
documentation:
- title: © 2016 Open Connectivity Foundation, Inc. All rights reserved.
content: |
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE OPEN INTERCONNECT CONSORTIUM, INC. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE OR WARRANTIES OF NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE OPEN INTERCONNECT CONSORTIUM, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
schemas:
- ORFID: !include oic.r.orfid_station.json

traits:
- interface:
queryParameters:
if:
enum: ["oic.if.rw","oic.if.baseline"]

/ORFIDSmartFactoryResURI:
description: |
In OCF interface, optical augmented RFID reader+tag became a single OCF resource. The tagid is an integer showing the currently read optical augmented RFID tag's identity information. The process represents the stage of the product in the product line which has an optical RFID tag on its body. Event is represented by a Boolean value set to "True" and "False" alarming the issue when additional action is requested for the tagged product. Actionrequest represent necessary actions like the isolation of the product, to send the product back to other specific line to modify or fix the issue.
displayName: Optical RFID
is: [ interface ]

get:
description: |
Retrieves the tag information from optical augmented RFID reader in smart factory environment.
responses:
200:
body:
application/json:
schema: ORFID
example: |
{
"rt": ["oic.r.orfid.station"],
"id": "unique_example_id",
"process": 17,
"event": true,
"actionrequest": 2
}
post:
description: |
Sets necessary action in accordance with Tag Information
body:
application/json:
schema: ORFID
example: |
{
"event": false,
"actionrequest": 0
}
responses:
200:
body:
application/json:
schema: ORFID
example: |
{
"event": false,
"actionrequest": 0
}
28 changes: 28 additions & 0 deletions oic.r.orfid_reader.json
@@ -0,0 +1,28 @@
{
"id": "http://openinterconnect.org/schemas/oic.r.oifid.reader.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description" : "Copyright (c) 2018 Open Connectivity Foundation, Inc. All rights reserved.",
"title": "ORFID",
"definitions": {
"oic.r.orfid.reader": {
"properties": {
"tagid" : {
"type" : "integer",
"description" : "the tag read by the reader",
"readOnly" : true
},
"reading" : {
"type" : "boolean",
"description" : "true, the tagid is read e.g. being valid. false, the tagid is invalid",
"readOnly" : true
}
}
}
},
"type": "object",
"allOf": [
{"$ref": "oic.baseResource.json#/definitions/oic.r.baseresource"},
{"$ref": "#/definitions/oic.r.orfid.reader"}
],
"required": ["tagid", "reading"]
}
32 changes: 32 additions & 0 deletions oic.r.orfid_station.json
@@ -0,0 +1,32 @@
{
"id": "http://openinterconnect.org/schemas/oic.r.oifid.reader.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description" : "Copyright (c) 2016 Open Connectivity Foundation, Inc. All rights reserved.",
"title": "ORFID",
"definitions": {
"oic.r.orfid.station": {
"properties": {
"process" : {
"type" : "integer",
"description" : "the process step that is being performed at this station",
"readOnly" : true
},
"event" : {
"type" : "boolean",
"description" : "when True, the action request should be applied to the product identified by the tagid"
},
"actionrequest" : {
"type" : "integer",
"description" : "the action request identifier"
}

}
}
},
"type": "object",
"allOf": [
{"$ref": "oic.baseResource.json#/definitions/oic.r.baseresource"},
{"$ref": "#/definitions/oic.r.orfid.station"}
],
"required": ["event","actionrequest"]
}

0 comments on commit f341a84

Please sign in to comment.