deb-mistral/mistral/workbook/types.py
Renat Akhmerov b79f1f277b Getting rid of "policies" keyword
* Removed "policies" keyword
* Removed obsolete stubs for trigger specs
* Other minor renamings and refactorings
* Fixed "join" tests: all partial join tests were not thread-safe

Change-Id: I31b00d5d221b3a4bf03d1ab47622692c2b0f3013
2015-04-17 16:55:36 +06:00

146 lines
2.6 KiB
Python

# Copyright 2015 - StackStorm, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
NONEMPTY_STRING = {
"type": "string",
"minLength": 1
}
UNIQUE_STRING_LIST = {
"type": "array",
"items": NONEMPTY_STRING,
"uniqueItems": True,
"minItems": 1
}
POSITIVE_INTEGER = {
"type": "integer",
"minimum": 0
}
POSITIVE_NUMBER = {
"type": "number",
"minimum": 0.0
}
YAQL = {
"type": "string",
"pattern": "^<%.*?%>\\s*$"
}
YAQL_CONDITION = {
"type": "object",
"minProperties": 1,
"patternProperties": {
"^\w+$": YAQL
}
}
ANY = {
"anyOf": [
{"type": "array"},
{"type": "boolean"},
{"type": "integer"},
{"type": "number"},
{"type": "object"},
{"type": "string"},
YAQL
]
}
ANY_NULLABLE = {
"anyOf": [
{"type": "null"},
{"type": "array"},
{"type": "boolean"},
{"type": "integer"},
{"type": "number"},
{"type": "object"},
{"type": "string"},
YAQL
]
}
NONEMPTY_DICT = {
"type": "object",
"minProperties": 1,
"patternProperties": {
"^\w+$": ANY_NULLABLE
}
}
ONE_KEY_DICT = {
"type": "object",
"minProperties": 1,
"maxProperties": 1,
"patternProperties": {
"^\w+$": ANY_NULLABLE
}
}
STRING_OR_YAQL_CONDITION = {
"oneOf": [
NONEMPTY_STRING,
YAQL_CONDITION
]
}
YAQL_OR_POSITIVE_INTEGER = {
"oneOf": [
YAQL,
POSITIVE_INTEGER
]
}
YAQL_OR_BOOLEAN = {
"oneOf": [
YAQL,
{"type": "boolean"}
]
}
UNIQUE_STRING_OR_YAQL_CONDITION_LIST = {
"type": "array",
"items": STRING_OR_YAQL_CONDITION,
"uniqueItems": True,
"minItems": 1
}
VERSION = {
"anyOf": [
NONEMPTY_STRING,
POSITIVE_INTEGER,
POSITIVE_NUMBER
]
}
WORKFLOW_TYPE = {
"enum": ["reverse", "direct"]
}
STRING_OR_ONE_KEY_DICT = {
"oneOf": [
NONEMPTY_STRING,
ONE_KEY_DICT
]
}
UNIQUE_STRING_OR_ONE_KEY_DICT_LIST = {
"type": "array",
"items": STRING_OR_ONE_KEY_DICT,
"uniqueItems": True,
"minItems": 1
}