Skip to content
This repository has been archived by the owner on Nov 12, 2020. It is now read-only.

Commit

Permalink
fix: iccid may not include checksum
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Apr 27, 2020
1 parent a5ece27 commit adc9fd1
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions schema.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"type": "object",
"properties": {
"op": {
"type": "string",
"minLength": 5,
"maxLength": 6
},
"ip": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
},
"cell_id": {
"type": "integer",
"minimum": 0
},
"ue_mode": {
"type": "integer",
"minimum": 0,
"maximum": 2
},
"iccid": {
"type": "string",
"pattern": "^89[0-9]{17}([0-9]|F)$"
},
"interval": {
"type": "integer",
"minimum": 1
}
"type": "object",
"properties": {
"op": {
"type": "string",
"minLength": 5,
"maxLength": 6
},
"required": ["op", "ip", "cell_id", "ue_mode", "iccid", "interval"],
"additionalProperties": false
"ip": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
},
"cell_id": {
"type": "integer",
"minimum": 0
},
"ue_mode": {
"type": "integer",
"minimum": 0,
"maximum": 2
},
"iccid": {
"type": "string",
"pattern": "^89[0-9]{17}([0-9]|F)?$"
},
"interval": {
"type": "integer",
"minimum": 1
}
},
"required": ["op", "ip", "cell_id", "ue_mode", "iccid", "interval"],
"additionalProperties": false
}

0 comments on commit adc9fd1

Please sign in to comment.